
Write your student ID and name
ID: 1002961
Name: Wu Tianyu
Students whom you have discussed with (if any): None
import torch
import torch.nn as nn
import torch.nn.functional as F
import numpy as np
from torch.utils.data import Dataset, DataLoader
from torchtext import data
from collections import namedtuple
from torch.nn.utils.rnn import pack_padded_sequence, pad_packed_sequence
from nltk.translate.bleu_score import corpus_bleu
STOP_TOKEN = '</s>'
START_TOKEN = '<s>'
UNK_TOKEN = '<unk>'
PAD_TOKEN = '<pad>'
class TranslationDataset(Dataset):
def __init__(self, sent_pairs, src_word2idx, tgt_word2idx, tokenizer, max_len):
self.pairs = sent_pairs
self.src_w2i = src_word2idx
self.tgt_w2i = tgt_word2idx
self.tokenizer = tokenizer
self.max_len = max_len
def __len__(self):
return len(self.pairs)
def __getitem__(self, idx):
src_ids = []
tgt_ids = []
src = self.pairs[idx].src
tgt = self.pairs[idx].tgt
src_words = self.tokenizer(src)
tgt_words = self.tokenizer(tgt)
for i in src_words:
try:
idx = self.src_w2i[i]
except KeyError:
idx = self.src_w2i[UNK_TOKEN]
src_ids.append(idx)
for j in tgt_words:
try:
idx = self.tgt_w2i[j]
except KeyError:
idx = self.tgt_w2i[UNK_TOKEN]
tgt_ids.append(idx)
src_length = len(src_ids)
tgt_length = len(tgt_ids)
if src_length < self.max_len:
src_ids = src_ids + [self.src_w2i[STOP_TOKEN]] + [self.src_w2i[PAD_TOKEN]] * (self.max_len - src_length - 1)
assert len(src_ids) == self.max_len
src_length += 1
else:
src_ids = src_ids[:self.max_len-1] + [self.src_w2i[STOP_TOKEN]]
src_length = self.max_len
if tgt_length < self.max_len-1:
tgt_ids = [self.tgt_w2i[START_TOKEN]] + tgt_ids + [self.tgt_w2i[STOP_TOKEN]] +\
[self.tgt_w2i[PAD_TOKEN]] * (self.max_len - tgt_length - 2)
assert len(tgt_ids) == self.max_len
tgt_length += 2
else:
tgt_ids = [self.tgt_w2i[START_TOKEN]] + tgt_ids[:self.max_len-2] + [self.tgt_w2i[STOP_TOKEN]]
tgt_length = self.max_len
src_mask = np.zeros(self.max_len)
tgt_mask = np.zeros(self.max_len)
src_mask[:src_length] = 1
tgt_mask[:tgt_length] = 1
return torch.LongTensor(src_ids), torch.LongTensor(tgt_ids), torch.LongTensor([src_length]), \
torch.LongTensor([tgt_length]), torch.BoolTensor(src_mask), torch.BoolTensor(tgt_mask), [src_words, tgt_words]
from google.colab import drive
drive.mount('/content/drive')
Drive already mounted at /content/drive; to attempt to forcibly remount, call drive.mount("/content/drive", force_remount=True).
Pair = namedtuple('Pair', ['src','tgt'])
def read_corpus(data_path):
'''
param:
data_path: str --- path to the data file
return:
src: list[str] --- contains the source language sentences; each sentence is a string;
tgt: list[str] --- contains the target language sentences; each sentence is a string;
src_vocab: set(str) --- contains all the source language words appearing in the data file; each word is a string;
src_tgt: set(str) --- --- contains all the target language words appearing in the data file; each word is a string;
'''
with open(data_path, 'r', encoding='utf-8') as d:
data = d.readlines()
src, tgt = [], []
src_vocab, tgt_vocab = set(), set()
# 'data' is a list of strings; each element of this list represents a sentence which ended with "\n" .
# Source language sentence (French) and target language sentence (English) are split by "\t"
# Don't forget to remove the special "\n" symbol of each sentence string
# Your code here
for sent_pair in data:
sent_pair = sent_pair.strip().split('\t')
src_sent, tgt_sent = sent_pair[0], sent_pair[1]
src.append(src_sent)
tgt.append(tgt_sent)
src_vocab.update(src_sent.split())
tgt_vocab.update(tgt_sent.split())
# End of your code
assert len(src) == len(tgt)
return src, tgt, src_vocab, tgt_vocab
def lang_pairs(src, tgt):
pairs = []
for s,t in zip(src, tgt):
pairs.append(Pair(src=s, tgt=t))
return pairs
def build_w2i(vocab):
w2i = {}
for i, w in enumerate(vocab):
w2i[w] = i
w2i[START_TOKEN] = len(w2i)
w2i[STOP_TOKEN] = len(w2i)
w2i[UNK_TOKEN] = len(w2i)
w2i[PAD_TOKEN] = len(w2i)
return w2i
def build_i2w(w2i):
'''
param:
w2i: dict(word:idx) --- a dictionary in which the keys are words and the values are corresponding indices.
E.g. w2i={'I':0,'love':1,'apple':2}
return
i2w: dict(idx: word) --- a dictionary in which the keys are the indices and the values are corresponding words.
E.g. i2w = {0:'I',1:'love',2:'apple'}
'''
i2w = {}
## YOUR CODE HERE (~2 lines)
i2w = {val: key for key, val in w2i.items()}
### END OF YOUR CODE
return i2w
train_src, train_tgt, src_vocab, tgt_vocab = read_corpus(r'/content/drive/My Drive/data/part2/train')
dev_src, dev_tgt, _, _ = read_corpus(r'/content/drive/My Drive/data/part2/dev')
test_src, test_tgt, _, _ = read_corpus(r'/content/drive/My Drive/data/part2/test')
train_sent_pairs = lang_pairs(train_src,train_tgt)
dev_sent_pairs = lang_pairs(dev_src,dev_tgt)
test_sent_pairs = lang_pairs(test_src,test_tgt)
fr_w2i = build_w2i(src_vocab)
en_w2i = build_w2i(tgt_vocab)
en_i2w = build_i2w(en_w2i)
print(len(src_vocab), len(tgt_vocab), len(train_src), len(train_tgt))
print(len(fr_w2i), len(en_w2i), len(en_i2w))
40992 25370 140000 140000 40996 25374 25374
train_src[0], train_tgt[0]
("Elle ne voulait pas qu'il joue au poker.",
"She didn't want him to play poker.")
Implement part of the __init__ function in Encoder class and Decoder class.
Implement the forward function in Encoder class .
This function converts source sentences into word embedding tensors $X$,
generates $h_1^{enc},h_2^{enc},...,h_m^{enc}$ and
computes initial hidden state $h_0^{dec}$, and initial cell state $c_0^{dec}$.
Implement the forward function in Decoder class.
This function constructs $\bar{y}_t$ and runs the decode_one_step function
over every time step of the input sentence.
Implement decode_one_step function in Decoder class.
This function applies the decoder's LSTM Cell for a
single time step, computing the encoding of the target word $h_t^{dec}$,
the attention distribution $\alpha_t$, attention output
$a_t$ and the combined output $o_t$.
Implement get_attn_weights function in Decoder class.
This function will generate attention distribution $\alpha_t$.
BeamNode = namedtuple('BeamNode',['prev_node', 'prev_hidden','prev_o_t', 'wordID', 'score', 'length'])
Translation = namedtuple('Translation',['sent', 'score'])
device = 'cuda:0' if torch.cuda.is_available else 'cpu'
class Encoder(nn.Module):
def __init__(self, encoder_config):
super(Encoder, self).__init__()
self.hidden_size = encoder_config['hidden_size']
self.num_layers = encoder_config['num_layers']
self.bidir = encoder_config['bidirectional']
self.vocab_size = encoder_config['vocab_size']
self.emb_size = encoder_config['emb_size']
self.src_emb_matrix = encoder_config['src_embedding']
self.src_embedding = None
self.W_h = None
self.W_c = None
### TODO Initialize variables:
# self.scr_embedding: Embedding layer for source language
# self.W_h: Linear layer without bias (W_h describled in the PDF)
# self.W_c: Linear layer without bias (W_c described in the PDF)
#
# You need to use nn.Embedding function and two variables we have initialized for you.
# You need to use nn.Linear function and one variable we have initialized for you.
# For the use of nn.Embedding function, please refer to https://pytorch.org/docs/stable/nn.html#torch.nn.embedding
# For the use of nn.Linear function, please refer to https://pytorch.org/docs/stable/nn.html#torch.nn.Linear
# In nn.Linear function, the matrix multiplication is a transposed version of the Eq.(1) in description PDF.
### YOUR CODE HERE (3 lines)
self.src_embedding = nn.Embedding(self.vocab_size, self.emb_size)
self.W_h = nn.Linear(2*self.hidden_size, self.hidden_size, bias=False)
self.W_c = nn.Linear(2*self.hidden_size, self.hidden_size, bias=False)
### END OF YOUR CODE
if self.src_emb_matrix is not None:
self.src_embedding.weight.data.copy_(torch.FloatTensor(self.src_emb_matrix))
self.src_embedding.weight.requires_grad = True
self.rnn = nn.LSTM(input_size = self.emb_size,
hidden_size = self.hidden_size,
num_layers = self.num_layers,
bidirectional = self.bidir,
batch_first = True)
def forward(self, src_ids, src_length):
'''
params:
src_ids: torch.LongTensor of shape (batch_size, max_len)
src_length: torch.LongTensor of shape (batch_size,) contains the actual length of each sentence in the batch
return:
encoder_hiddens: torch.FloatTensor of shape(batch_size, max_len_in_batch, 2*hidden_size); the hidden states produced by Bi-LSTM
decoder_init: tuple(last_hidden, last_cell); last_hidden: torch.FloatTensorof shape (batch_size, 2*hidden_size);
last_cell: torch.FloatTensor of shape(batch_size, 2*hidden_size);
they are h_0^{dec},c_0^{dec} in our description PDF
'''
encoder_hiddens, decoder_init = None, None
src_length = torch.as_tensor(src_length, dtype=torch.int64, device='cpu').squeeze(1)
### TODO:
### 1. feed the "src_ids" into the src embedding layer to get a tensor X of shape (batch_size, max_len, emb_size)
### 2. apply "pack_padded_sequence" function to X to get a new tensor X_packed
### (tip: set batch_first=True, enforced_sorted=False in the pack_padded_sequence function)
### 3. use Bi-LSTM (rnn) to encode "X_packed" to get "encoder_hiddens", "last_hidden", "last_cell"
### 4. apply "pad_packed_sequence" to encoder_hiddens (remember to set batch_first=True);
### 5. note that last_hidden/last_cell is of shape (2, batch_size, hidden_size);
### we want a shape of (batch_size, 2*hidden_size)
### 6. apply linear transformation W_h, W_c to last_hidden/last cell to get the initial decoder hidden state
### (batch_size, hidden_size) and initial decoder cell state (batch_size, hidden_size).
### You may use these functions in your implemetation:
### pack_padded_sequence: https://pytorch.org/docs/stable/nn.html#torch.nn.utils.rnn.pack_padded_sequence
### pad_packed_sequence: https://pytorch.org/docs/stable/nn.html#torch.nn.utils.rnn.pad_packed_sequence
### torch.cat: https://pytorch.org/docs/stable/torch.html#torch.cat
### YOUR CODE HERE (~ 9 lines)
X = self.src_embedding(src_ids)
X_packed = pack_padded_sequence(X, src_length, batch_first=True, enforce_sorted=False)
encoder_hiddens, (last_hidden, last_cell) = self.rnn(X_packed)
encoder_hiddens, lens_unpacked = pad_packed_sequence(encoder_hiddens, batch_first=True, padding_value=0.0)
last_hidden_combined = torch.cat((last_hidden[0], last_hidden[1]), dim=1)
last_cell_combined = torch.cat((last_cell[0], last_cell[1]), dim=1)
decoder_init = self.W_h(last_hidden_combined), self.W_c(last_cell_combined)
### END OF YOUR CODE
return encoder_hiddens, decoder_init
class Decoder(nn.Module):
def __init__(self, decoder_config):
super(Decoder,self).__init__()
self.hidden_size = decoder_config['hidden_size']
self.vocab_size = decoder_config['vocab_size']
self.emb_size = decoder_config['emb_size']
self.tgt_emb_matrix = decoder_config['tgt_embedding']
self.rnn = None
self.W_attn = None
self.W_u = None
self.tgt_embedding = None
### TODO Initialize variables:
# self.tgt_embedding: nn.Embedding layer for source language; You need to use nn.Embedding function
# and 2 variables we have initialized for you.
# self.rnn: nn.LSTMCell ; You need to use nn.LSTMCell function and 2 variables we have initialized for you.
# self.W_attn: nn.Linear layer without bias (W_attn describled in the PDF);
# You need to use nn.Linear function and 1 variable we have initialized for you.
# self.W_u: nn.Linear layer without bias (W_attn describled in the PDF)
# For the use of nn.Embedding function, please refer to https://pytorch.org/docs/stable/nn.html#
# For the use of nn.Linear function, please refer to https://pytorch.org/docs/stable/nn.html#torch.nn.Linear
# In nn.Linear function, the matrix multiplication is a transposed version of the Eq.(1) in description PDF.
# For the use of nn.LSTMCell function, please refer to https://pytorch.org/docs/stable/nn.html#lstmcell
# Think about the shape of \bar{y}_t in the description PDF when initializing self.rnn with nn.LSTMCell
### YOUR CODE HERE (4 lines)
self.tgt_embedding = nn.Embedding(self.vocab_size, self.emb_size)
self.rnn = nn.LSTMCell(input_size = self.emb_size+self.hidden_size, hidden_size = self.hidden_size)
self.W_attn = nn.Linear(2*self.hidden_size, self.hidden_size, bias=False)
self.W_u = nn.Linear(3*self.hidden_size, self.hidden_size, bias=False)
### END OF YOUR CODE
if self.tgt_emb_matrix is not None:
self.tgt_embedding.weight.data.copy_(torch.Tensor(self.tgt_emb_matrix))
self.tgt_embedding.weight.requires_grad = True
def forward(self, tgt_ids, tgt_lengths, encoder_hiddens, encoder_hidden_masks, decoder_init):
'''
params:
tgt_ids: torch.LongTensor of shape (batch_size, max_len); each element is a number specifying the position of
a word in a embedding matrix
tgt_lengths: torch.LongTensor of shape (batch_size,) contains the actual length of each sentence in the batch
encoder_hiddens: torch.FloatTensosr of shape ( batch_size, max_len_in_batch, 2*hidden_size);
"max_len_in_batch" is the max length in a batch. It is less than "max_len".
encoder_hidden_masks: torch.BoolTensor of shape (batch_size, max_len), specifying which positions are pad tokens.
decoder_init: tuple(h_0, c_0); the output "decoder_init" of the encoder;
h_0 of shape (batch_size, hidden_size), c_0 of shape (batch_size, hidden_size)
return:
combined_outputs: torch.FloatTensor of shape (max_len_batch, batch_size, hidden_size)
'''
decoder_state = decoder_init
max_len_batch = torch.max(tgt_lengths) -1 # don't consider the end token
batch_size = encoder_hiddens.size()[0] # encoder_hiddens of size (batch_size, seq_length, 2*hidden_size)
o_prev = torch.zeros(batch_size, self.hidden_size, device='cuda:0' if torch.cuda.is_available() else 'cpu')
combined_outputs = []
### TODO:
### 1. feed the "tgt_ids" into the embedding layer to get a tensor "Y" of shape (batch_size, max_len, emb_size)
### 2. construct a for loop with range 0:max_len_batch
### within the for loop:
### 1). slice Y by indexing; you should have y_t of shape (batch_size, emb_size)
### 2). concatenate y_t with o_prev , yielding ybar_t as described in the PDF
### 3). feed ybar_t and "decoder state", "encoder_hiddens", "encoder_hidden_masks" into function "decode_one_step()"
### and it will output new "decoder_state" (a tuple), new "o_t"
### 4). append new "o_t" to "combined_outputs"
### 5). update "o_prev" with new "o_t"
### 3. use "torch.stack" function to process combined_outputs (a list of tensors; each tensor of shape (batch_size, hidden_size)) to
### a single tensor of shape (max_len_batch, batch_size, hidden_size)
###
### You may use these functions in your implementation:
### torch.cat: https://pytorch.org/docs/stable/torch.html#torch.cat
### torch.stack: https://pytorch.org/docs/stable/torch.html#torch.stack
### YOUR CODE HERE (~ 8 lines)
Y = self.tgt_embedding(tgt_ids)
for t in range(max_len_batch):
y_t = Y[:, t, :]
ybar_t = torch.cat((y_t, o_prev), dim=1)
decoder_state, o_t = self.decode_one_step(ybar_t, decoder_state, encoder_hiddens, encoder_hidden_masks)
combined_outputs.append(o_t)
o_prev = o_t
combined_outputs = torch.stack(combined_outputs)
### END OF YOUR CODE
return combined_outputs
def decode_one_step(self, ybar_t, decoder_state, encoder_hiddens, encoder_hidden_masks):
'''
param:
ybar_t: torch.FloatTensor of shape (batch_size, emb_size + hidden_size)
decoder_state: tuple(h_t, c_t); h_t of shape (batch_size, hidden_size); c_t of shape (batch_size, hidden_size);
encoder_hiddens: torch.FloatTensosr of shape ( batch_size, max_len_in_batch, 2*hidden_size); "max_len_in_batch" is the max length in a batch. It is less than "max_len".
encoder_hidden_masks: torch.BoolTensor of shape (batch_size, max_len), specifying which positions are pad tokens.
return:
decoder_state: tuple(h_t, c_t); both h_t and c_t have a shape (batch_size, hidden_size)
o_t: torch.FloatTensor of shape (batch_size, hidden_size)
'''
### TODO:
### 1. Apply the decoder (self.rnn) to "ybar_t", "decoder_state", yielding a new "decoder_state"
### 2. split the decoder state into two parts, "h" and "c"; h has a shape (batch_size, hidden_size); c has a shape (batch_size, hidden_size)
### 3. apply "get_attn_weight()" function to "h", "encoder_hiddens", "encoder_hidden_masks", yielding attention weights (alpha_t in the PDF) of shape (batch_size, max_len_in_batch)
### 4. apply torch.bmm function to alpha_t and "encoder_hiddens", yielding the "a_t" in PDF.
### You also need to use "unsqueeze" and "squeeze" function here. Be sure to specify the "dim" parameter in these two functions.
### "a_t" has a shape (batch_size, 2*hidden_size)
### 5. concatenate "a_t" and "h", yielding "u_t" in the PDF; "u_t" has a shape (batch_size, 3*hidden_size)
### 6. apply linear transformation W_u and "torch.tanh" function to "u_t", yielding "o_t" of shape (batch_size, hidden_size)
### You may use these functions in your implementation:
### torch.cat: https://pytorch.org/docs/stable/torch.html#torch.cat
### torch.bmm: https://pytorch.org/docs/stable/torch.html#torch.bmm
### torch.tanh: https://pytorch.org/docs/stable/torch.html#torch.tanh
### torch.squeeze: https://pytorch.org/docs/stable/torch.html#torch.squeeze
### torch.unsqueeze: https://pytorch.org/docs/stable/torch.html#torch.unsqueeze
### YOUR CODE HERE (~6 lines)
decoder_state = self.rnn(ybar_t, decoder_state)
h, c = decoder_state
alpha_t = self.get_attn_weights(h, encoder_hiddens, encoder_hidden_masks)
a_t = torch.bmm(alpha_t.unsqueeze(1), encoder_hiddens).squeeze(1)
u_t = torch.cat((a_t, h), dim=1)
o_t = torch.tanh(self.W_u(u_t))
## END OF YOUR CODE
return decoder_state, o_t
def get_attn_weights(self, h, encoder_hiddens, encoder_hidden_masks):
'''
compute the attention weights \alpha_t in the PDF
param:
h: torch.FloatTensor of shape (batch_size, hidden_size)
encoder_hiddens: torch.FloatTensosr of shape ( batch_size, max_len_in_batch, 2*hidden_size); "max_len_in_batch" is the max length in a batch. It is less than "max_len".
encoder_hidden_masks: torch.BoolTensor of shape (batch_size, max_len), specifying which positions are pad tokens. False -- pad token; True -- not pad token
return:
attn_weights: torch.FloatTensor of shape (batch_size, max_len_in_batch)
'''
h = h.unsqueeze(-1) ### (batch_size, hidden_size, 1)
max_len_in_batch = encoder_hiddens.size()[1]
### TODO:
### 1. apply linear transformation "W_attn" to "encoder_hiddens"; the result has a shape (batch_size, max_len_in_batch, hidden_size)
### 2. apply torch.bmm to the result of step 1 and "h", yielding score e_t of shape (batch_size, max_len_in_batch, 1);
### squeeze e_t in the last dimension
### 3. apply torch.Tensor.masked_fill_() function to "e_t"; the parameters of this function are Bool tensor "encoder_hidden_masks" and a constant "-float('inf')";
### before "torch.Tensor.masked_fill_()" function, this "encoder_hidden_masks" should be sliced to have a shape (batch_size, max_len_in_batch) (Only the first max_len_in_batch columns will be kept)
### 4. apply "F.softmax()" function to "e_t", yielding "alpha_t" of shape (batch_size, max_len_in_batch)
### You may use these functions in your implementation:
### torch.bmm: https://pytorch.org/docs/stable/torch.html#torch.bmm
### torch.squeeze: https://pytorch.org/docs/stable/torch.html#torch.squeeze
### torch.Tensor.masked_fill_: https://pytorch.org/docs/stable/tensors.html#torch.Tensor.masked_fill_
### F.softmax: https://pytorch.org/docs/stable/nn.functional.html#torch.nn.functional.softmax
### YOUR CODE HERE (4~6 lines)
transformed_hiddens = self.W_attn(encoder_hiddens)
e_t = torch.bmm(transformed_hiddens, h).squeeze(-1)
e_t.masked_fill_(~encoder_hidden_masks[:, :max_len_in_batch], -float('inf'))
attn_weights = F.softmax(e_t, dim=-1)
### END OF YOUR CODE
return attn_weights
class NMT(nn.Module):
def __init__(self, encoder_config, decoder_config):
super(NMT, self).__init__()
self.encoder = Encoder(encoder_config)
self.decoder = Decoder(decoder_config)
self.encoder_config = encoder_config
self.decoder_config = decoder_config
self.W_v = nn.Linear(decoder_config['hidden_size'], decoder_config['vocab_size'])
def forward(self, src_ids, src_lengths, src_masks, tgt_ids, tgt_lengths, tgt_masks):
# src_ids:(batch_size, max_len)
# src_lengths: (batch_size)
# src_mask: (batch_size, max_len)
# tgt_ids: (batch_size, max_len)
# tgt_lengths: (batch_size)
# tgt_masks: (batch_size, max_len)
encoder_hiddens, decoder_init_hidden = self.encoder(src_ids, src_lengths)
outputs = self.decoder(tgt_ids, tgt_lengths, encoder_hiddens, src_masks, decoder_init_hidden)
tgt_unnormalized_score = self.W_v(outputs)
tgt_log_prob = F.log_softmax(tgt_unnormalized_score, dim=-1)
max_len_batch = torch.max(tgt_lengths)
tgt_masks = tgt_masks[:, :max_len_batch].permute(1, 0) # (l,b)
tgt_ids = tgt_ids.permute(1,0)[:max_len_batch, :] #(l,b)
tgt_words_log_prob = torch.gather(tgt_log_prob, -1, tgt_ids[1:].unsqueeze(-1)).squeeze(-1) * tgt_masks[1:].float()
tgt_sents_log_prob = torch.sum(tgt_words_log_prob, dim=0)
return tgt_sents_log_prob #(b)
def beam_search(self, src_ids, src_length, beam_size):
# src_ids: (batch_size, max_len)
# src_lengths: (1, 1)
# beam_size: int
STOP_ID = self.decoder_config['en_w2i'][STOP_TOKEN]
max_decode_length = 30
encoder_hiddens, decoder_init_hidden = self.encoder(src_ids, src_length)
encoder_hidden_masks = torch.BoolTensor(np.ones((1,src_length.item()))).to(device)
START_ID = self.decoder_config['en_w2i']['<s>']
prev_o_t = torch.zeros(1, self.decoder_config['hidden_size']).to(device)
input_beam_nodes = [BeamNode(prev_node=None, prev_hidden=decoder_init_hidden, prev_o_t=prev_o_t , wordID=START_ID,
score=0, length=1)]
finished_beam = 0
end_beam = []
max_finished_beam = beam_size
while finished_beam < max_finished_beam and input_beam_nodes[0].length < max_decode_length:
cur_hidden = []
cur_o_t = []
prev_scores = []
cur_len = input_beam_nodes[0].length
for n in input_beam_nodes:
y_t = self.decoder.tgt_embedding(torch.LongTensor([n.wordID]).to(device))
y_t = torch.cat((y_t, n.prev_o_t), dim=1)
decoder_hidden, o_t = self.decoder.decode_one_step(y_t, n.prev_hidden, encoder_hiddens, encoder_hidden_masks)
cur_hidden.append(decoder_hidden)
cur_o_t.append(o_t)
prev_scores.append(n.score)
o_t = torch.stack(cur_o_t, dim=0)
scores = self.W_v(o_t).squeeze(1) ###(beam, vocab)
# print(scores.size(), torch.Tensor(prev_scores).size())
prev_scores = torch.Tensor(prev_scores).unsqueeze(-1).expand_as(scores).to(device)
assert len(scores.size()) == 2
assert scores.size(0) == len(input_beam_nodes)
assert scores.size(1) == self.decoder_config['vocab_size']
log_prob = F.log_softmax(scores, dim=-1)
cur_score = (log_prob + prev_scores).view(-1)
topk_score, topk_pos = torch.topk(cur_score, beam_size)
node_ids = topk_pos // self.decoder_config['vocab_size']
word_ids = topk_pos % self.decoder_config['vocab_size']
next_nodes = []
for score, node_id, word_id in zip(topk_score, node_ids, word_ids):
score = score.item()
node_id = node_id.item()
word_id = word_id.item()
node = BeamNode(prev_node=input_beam_nodes[node_id], prev_hidden=cur_hidden[node_id],
prev_o_t=cur_o_t[node_id] , score=score,
wordID=word_id, length=cur_len+1)
if word_id == STOP_ID:
beam_size -= 1
end_beam.append(node)
finished_beam += 1
else:
next_nodes.append(node)
input_beam_nodes = next_nodes
if cur_len + 1 >= max_decode_length:
end_beam.extend(next_nodes)
seqs = []
for n in end_beam:
seq = []
score = n.score
while True:
prev_node = n.prev_node
wordID = n.wordID
try:
word = self.decoder_config['en_i2w'][wordID]
except KeyError:
word = UNK_TOKEN
# print(word)
seq.append(word)
if prev_node.wordID == START_ID:
break
n = prev_node
seqs.append(Translation(sent=seq[-1:0:-1], score=score))
return seqs
device = 'cuda:0' if torch.cuda.is_available else 'cpu'
def eval_ppl(model, dev_iter):
model.eval()
cum_loss = 0.
cum_tgt_words = 0.
with torch.no_grad():
for batch_data in dev_iter:
batch_data = tuple(t.to(device) for t in batch_data[:-1])
b_src_ids, b_tgt_ids, b_src_len, b_tgt_len, b_src_mask, b_tgt_mask = batch_data
batch_loss = -1 * model(b_src_ids, b_src_len, b_src_mask, b_tgt_ids, b_tgt_len, b_tgt_mask).sum()
cum_loss += batch_loss.item()
b_num_words = b_tgt_len.sum() - b_tgt_len.size(0)
cum_tgt_words += b_num_words
ppl = np.exp(cum_loss/cum_tgt_words.item())
model.train()
return ppl
def compute_corpus_bleu_score(references, predictions):
# references: List[List[str]]
# prediction: Liset[List[str]]
return corpus_bleu([[ref] for ref in references], predictions)
def train(train_iter, dev_iter, encoder_config, decoder_config, epoch):
model = NMT(encoder_config, decoder_config)
model = model.to(device)
model.train()
optimizer = torch.optim.Adam(model.parameters(), lr=1e-3)
best_eval_ppl = float('inf')
for it in range(epoch):
total_train_loss = 0.
total_train_words = 0
for batch_data in train_iter:
batch_data = tuple(t.to(device) for t in batch_data[:-1])
b_src_ids, b_tgt_ids, b_src_len, b_tgt_len, b_src_mask, b_tgt_mask = batch_data
optimizer.zero_grad()
batch_loss = -1 * model(b_src_ids, b_src_len, b_src_mask, b_tgt_ids, b_tgt_len, b_tgt_mask).sum()
loss = batch_loss / batch_size
loss.backward()
torch.nn.utils.clip_grad_norm_(model.parameters(), 5)
optimizer.step()
total_train_loss += batch_loss.item()
total_train_words += b_tgt_len.sum() - b_tgt_len.size(0)
# print(b_tgt_len, b_tgt_len.size())
print('train_loss:{}, train_ppl:{} '.format(total_train_loss/batch_size, np.exp(total_train_loss/total_train_words.item())))
e_ppl = eval_ppl(model, dev_iter)
if e_ppl < best_eval_ppl:
print('better model found!')
print('eval_ppl:', e_ppl)
torch.save(model.state_dict(), 'best_model.pt')
best_eval_ppl = e_ppl
def test(model, test_iter):
# support only batch_size = 1
model.eval()
corpus_reference = []
corpus_prediction = []
with torch.no_grad():
for batch_data in test_iter:
raw_sent = batch_data[-1]
# print(raw_sent)
batch_data = tuple(t.to(device) for t in batch_data[:-1])
b_src_ids, b_tgt_ids, b_src_len, b_tgt_len, b_src_mask, b_tgt_mask = batch_data
seqs = model.beam_search(b_src_ids, b_src_len, 2)
ref = [i[0] for i in raw_sent[1]]
corpus_reference.append(ref)
sorted_seqs = sorted(seqs, key=lambda x: x.score, reverse=True)
corpus_prediction.append(sorted_seqs[0].sent)
print(len(corpus_prediction),corpus_prediction)
print(len(corpus_reference), corpus_reference)
bleu = compute_corpus_bleu_score(corpus_reference, corpus_prediction)
print('BLEU score on Test set:{}'.format(bleu))
#-------------------------------------------------------------------------------------------------
!pip install torch==1.5.0+cu101 torchvision==0.6.0+cu101 -f https://download.pytorch.org/whl/torch_stable.html
Looking in links: https://download.pytorch.org/whl/torch_stable.html Requirement already satisfied: torch==1.5.0+cu101 in /usr/local/lib/python3.6/dist-packages (1.5.0+cu101) Requirement already satisfied: torchvision==0.6.0+cu101 in /usr/local/lib/python3.6/dist-packages (0.6.0+cu101) Requirement already satisfied: numpy in /usr/local/lib/python3.6/dist-packages (from torch==1.5.0+cu101) (1.18.5) Requirement already satisfied: future in /usr/local/lib/python3.6/dist-packages (from torch==1.5.0+cu101) (0.16.0) Requirement already satisfied: pillow>=4.1.1 in /usr/local/lib/python3.6/dist-packages (from torchvision==0.6.0+cu101) (7.0.0)
fr_emb = None
en_emb = None
encoder_config = {'hidden_size': 256,
'num_layers': 1,
'bidirectional':True,
'vocab_size': len(fr_w2i),
'emb_size':300,
'src_embedding': fr_emb}
decoder_config = {'hidden_size': 256,
'vocab_size': len(en_w2i),
'emb_size': 300,
'tgt_embedding': en_emb,
'en_w2i':en_w2i,
'en_i2w':en_i2w}
max_len = 30
batch_size = 32
tokenizer = lambda x: x.split()
train_dataset = TranslationDataset(train_sent_pairs, fr_w2i, en_w2i, tokenizer, max_len)
dev_dataset = TranslationDataset(dev_sent_pairs, fr_w2i, en_w2i, tokenizer, max_len)
test_dataset = TranslationDataset(test_sent_pairs, fr_w2i, en_w2i, tokenizer, max_len)
train_loader = DataLoader(train_dataset, batch_size=batch_size, shuffle=True)
dev_loader = DataLoader(dev_dataset, batch_size=batch_size, shuffle=False)
test_loader = DataLoader(test_dataset, batch_size=1, shuffle=False)
device = 'cuda:0' if torch.cuda.is_available else 'cpu'
epoch = 8
train(train_loader, dev_loader, encoder_config, decoder_config, epoch)
model = NMT(encoder_config, decoder_config)
model.load_state_dict(torch.load(r'best_model.pt'))
model = model.to(device)
test(model, test_loader)
train_loss:109108.55211544037, train_ppl:32.720884973767255 better model found! eval_ppl: 12.102615470772353 train_loss:63127.04586029053, train_ppl:7.523741457609462 better model found! eval_ppl: 7.596341774358955 train_loss:45105.91679191589, train_ppl:4.228971900960308 better model found! eval_ppl: 6.492184242462919 train_loss:34055.4671459198, train_ppl:2.970395067313717 better model found! eval_ppl: 6.200146995606118 train_loss:26522.225132465363, train_ppl:2.3346689810865 train_loss:21352.94937002659, train_ppl:1.9790505778199874 train_loss:17901.844492673874, train_ppl:1.7723233461411554 train_loss:15579.315923333168, train_ppl:1.6454996058171545 20000 [['Tom', "isn't", 'a', 'bad', 'guy.'], ['If', 'you', 'need', 'anything', 'done,', 'I', 'need', 'to', 'know.'], ['Tom', 'likes', 'him.'], ['Make', 'it', 'better.'], ['Are', 'you', 'unlucky?'], ['Will', 'you', 'have', 'a', 'discount?'], ['If', 'I', 'were', 'you,', 'I', 'would', 'have', 'come', 'with', 'you.'], ['I', 'had', 'no', 'other', 'time', 'here.'], ['Stop', 'lying.'], ['Be', 'good', 'to', 'animals.'], ['The', 'beach', 'the', 'beach', 'built', 'is', 'the', 'beach', 'of', 'the', 'window.'], ['Tell', 'me', 'that', "I'm", 'going', 'to', 'be', 'serious.'], ['This', 'is', 'the', 'best', 'I', 'am', 'living.'], ['I', 'need', 'to', 'have', 'a', 'bit.'], ['He', 'was', 'not', 'there.'], ['How', 'long', 'were', 'you', 'gone?'], ["Let's", 'remember', 'where', 'we', 'got', 'married.'], ['My', 'oldest', 'is', 'usually', 'in', 'the', 'other', 'now.'], ['Are', 'you', 'the', 'same', 'way?'], ['If', 'Tom', 'and', 'I', "don't", 'have', 'that', 'machine', 'as', 'I', 'think', 'I', 'was', 'able', 'to', 'buy', 'it', 'one', 'I', 'really', 'am', 'sorry.'], ["You're", 'joking!'], ['There', 'are', 'a', 'lot', 'of', 'mine.'], ['Everything', 'is', 'at', 'all', 'the', 'work.'], ['Can', 'you', 'sign', 'the', 'baby', 'in', 'the', 'sun'], ['She', 'is', 'a', 'little', 'awkward.'], ['We', 'beat', 'the', 'tent', 'on', 'the', 'river.'], ['When', 'you', "don't", 'want', 'to', 'be', 'an', 'archaeologist.'], ['The', 'soldiers', 'will', 'be', 'on', 'hard', 'by', 'air.'], ['People', 'who', 'live', 'is', 'the', 'best', 'friend.'], ['Where', 'is', 'he?'], ['I', 'hit', 'it.'], ['Who', 'was', 'the', 'man', 'who', 'was', 'the', 'picture?'], ['Reading', 'of', 'the', 'largest', 'China', 'is', 'larger', 'than', 'the', 'previous', 'one.'], ['I', 'think', 'your', 'answer', 'is', 'correct.'], ["You've", 'put', 'up', 'with', 'me,', 'right?'], ['He', 'tried', 'to', 'write', 'out', 'of', 'using', 'every', 'possible', 'possible', 'could', 'about', 'it.'], ['I', 'wonder', 'what', 'happened.'], ['I', "can't", 'add', 'off', 'because', 'it', 'is', 'out', 'of', 'the', 'weather.'], ["They're", 'afraid', 'of', 'me.'], ["I'm", 'used', 'to', 'the', 'situation.'], ['She', 'slapped', 'him.'], ['I', 'am', 'often', 'in', 'my', 'teacher.'], ['Be', 'polite', 'to', 'everyone.'], ['When', 'I', 'be', 'able', 'to', 'think', 'of', 'you', 'in', 'German.'], ['I', 'went', 'there', 'in', 'a', 'couple', 'of', 'October.'], ['I', "didn't", 'ask', 'you', 'to', 'do', 'that.'], ['I', 'suppose', 'I', 'can', 'drink', 'a', 'glass', 'of', 'water?'], ['You', 'must', 'come.'], ['The', 'accident', 'happened', 'on', 'that', 'intersection.'], ['Sleep', 'is', 'a', 'full', 'moon', 'is', 'delicious.'], ['There', 'is', 'no', 'idea', 'Tom', 'who', 'said', 'two', 'houses.'], ['How', 'much', 'is', 'it', 'for', 'the', 'purpose', 'to', 'pay', 'for', 'the', 'price?'], ['I', 'owe', 'you', 'a', 'breakfast.'], ["We're", 'still', 'not', 'there.'], ['I', 'need', 'to', 'know', 'what', 'Tom', 'did', 'yesterday.'], ['I', 'often', 'get', 'on', 'the', 'grass.'], ["I'm", 'available.'], ['Maybe', 'you', 'may', 'be', 'able', 'to', 'keep', 'a', 'able', 'that', 'might', 'not', 'be', 'able', 'to', 'keep', 'up', 'in', 'a', 'distance.'], ['We', 'need', 'your', 'help.'], ['Tom', 'lost', 'his', 'temper.'], ['Our', 'class', 'is', 'a', 'small', 'class.'], ['Can', 'you', 'recommend', 'a', 'nice', 'restaurant', 'near', 'here?'], ['Tom', 'knew', 'that', 'Mary', 'was', 'in', 'Boston.'], ['We', 'walked', 'all', 'along', 'the', 'lake.'], ['I', "didn't", 'know', 'you', 'had', 'a', 'boyfriend.'], ['I', 'came', 'here', 'to', 'learn.'], ['They', 'were', 'about', 'time.'], ['Why', "don't", 'you', 'want', 'to', 'leave', 'your', 'parents.'], ['He', 'lives', 'in', 'his', 'car.'], ['This', 'book', 'is', 'so', 'possible', 'that', 'I', "can't", 'buy', 'it.'], ['It', 'is', 'impossible', 'for', 'us', 'to', 'cross', 'the', 'river.'], ['Animals', 'are', 'independent', 'of', 'New', 'York', 'in', 'New', 'York.'], ['Tom', 'closed', 'the', 'TV.'], ["We're", 'very', 'late.'], ['I', 'tripped.'], ['Why', 'are', 'you', 'going', 'to', 'Boston?'], ['I', 'know', 'why', 'you', 'did', 'it.'], ['The', 'balloon', 'cut', 'the', 'hill.'], ["I'd", 'rather', 'you', 'go', 'to', 'Australia', 'for', 'me.'], ['To', 'try', 'the', 'concert,', 'but', 'because', 'he', 'said', 'nothing', 'about', 'it.'], ["Let's", 'have', 'one', 'of', 'each', 'other.'], ['All', 'the', 'rooms', 'are', 'taken.'], ['He', 'is', 'the', 'chosen', 'one.'], ['How', 'could', 'you', 'not', 'remember?'], ['How', 'long', 'have', 'you', 'been', 'out', 'of', 'prison?'], ['I', "don't", 'see', 'the', 'connection.'], ['I', 'love', 'hard-boiled'], ['Tom', 'is', 'afraid', 'of', 'snakes.'], ["I'm", 'going', 'to', 'be', 'away', 'from', 'soon.'], ['Her', 'plan', 'has', '100', '100', '100', '100'], ['I', 'know', 'things', 'were', 'not', 'very', 'tough', 'for.'], ['What', 'we', 'did', 'you', 'have', 'to', 'do?'], ['Tom', 'has', 'made', 'much', 'of', 'help.'], ['How', 'long', 'have', 'you', 'been', 'dating?'], ['I', 'have', 'the', 'ability', 'to', 'leave', 'the', 'TV', "you've", 'done.'], ['Please', 'say', "I'm", 'sorry.', "I'm", 'sorry.'], ['Tom', 'needs', 'to', 'help', 'you.'], ['Could', 'you', 'explain', 'it', 'more', 'simply?'], ['Some', 'of', 'them', 'were', 'wounded.'], ['She', 'filled', 'her', 'eyes.'], ['My', 'uncle', 'is', 'where', 'she', 'is', 'going.'], ['Would', 'you', 'like', 'to', 'switch', 'seats?'], ["Don't", 'stop', 'the', 'dog.'], ['You', 'must', 'be', 'careful.'], ['Is', 'there', 'anything', 'special', 'you', 'want', 'to', 'do', 'with', 'this', 'stuff?'], ['He', 'managed', 'to', 'drive', 'a', 'bad', 'cold,', 'he', 'was', 'already', 'successful.'], ['Write', 'to', 'ask', 'Tom', 'for', 'help.'], ["I'll", 'help', 'it', 'if', 'he', 'will', 'come.'], ['I', "can't", 'explain', 'anything', 'to', 'you.'], ['I', 'know', 'that', 'you', 'want', 'to', 'know', 'my', 'mind', 'your', 'mind', 'to', 'ask', 'me', 'that', 'you', 'know', 'that', 'it', 'takes', 'me', 'to', 'ask', 'one', 'time.'], ['It', 'looks', 'like', 'the', 'store', 'is', 'the', 'only', 'one.'], ["You're", 'depressed,', "aren't", 'you?'], ['Tom', 'seems', 'the', 'man', 'of', 'the', 'man', 'in', 'the', 'air.'], ['Do', 'you', 'really', 'think', 'I', 'had', 'something', 'to', 'do', 'with', 'that?'], ['I', 'think', 'this', 'building', 'is', 'important.'], ['The', 'driving', 'saw', 'the', 'crowd', 'jump.'], ['Give', 'me', 'your', 'shirt.'], ['Your', 'father', 'seems', 'very', 'nice.'], ["Don't", 'give', 'it', 'to', 'anyone.'], ['She', 'and', 'I', 'sang', 'at', 'the', 'same', 'stamps.'], ['We', "couldn't", 'find', 'a', 'traffic', 'jam.'], ['Take', 'it', 'on.'], ['Our', 'number', 'is', 'the', 'opposite', 'of', 'crime', 'to', 'increase', 'with', 'you.'], ['Could', 'you', 'give', 'me', 'a', 'map', 'for', 'me?'], ['We', 'saw', 'them', 'leave.'], ["You've", 'failed.'], ['My', 'likes', 'likes', 'stamps.'], ['I', 'want', 'to', 'find', 'too.'], ['I', 'lost', 'my', 'bag', 'somewhere', 'here.'], ['Can', 'you', 'believe', 'this', 'is', 'already', 'happening?'], ["It's", 'yours.'], ['I', 'thought', 'I', 'wanted', 'to', 'go', 'there', 'alone.'], ["You'll", 'be', 'like', 'this.'], ['How', 'long', 'weather!'], ['His', 'beauty', 'is', 'grey.'], ['She', 'decided', 'to', 'leave.'], ['She', 'ran', 'away', 'at', 'the', 'hours', 'of', 'coming', 'at', 'seven.'], ['Organic', 'food', 'is', 'much', 'better.'], ['Does', 'I', 'look', 'like', 'a', 'monkey.'], ['It', 'has', 'a', 'huge', 'fortune.'], ['He', 'refused', 'to', 'take', 'the', 'bribe.'], ["I'll", 'do', 'all', 'Tom', 'for', 'me', 'to', 'help', 'Tom', 'for', 'me', 'to', 'school.'], ['I', "don't", 'have', 'time', 'for', 'you.'], ['Are', 'you', 'relaxed?'], ['It', 'was', 'really', 'good.'], ['Go', 'back', 'to', 'faster.'], ['Who', 'knows', 'that?'], ['Please', 'show', 'me', 'your', 'notebook.'], ['It', 'looks', 'like', "you're", 'right.'], ["It's", 'very', 'hot', 'to', 'swim', 'in', 'the', 'winter.'], ["Don't", 'waste', 'your', 'time', 'to', 'help', 'Tom.'], ['I', 'want', 'to', 'let', 'him', 'down.'], ['She', 'has', 'a', 'big', 'person', 'to', 'say', 'a', 'lot.'], ['He', 'wore', 'a', 'few', 'days', 'in', 'the', 'paper,', 'he', 'had', 'a', 'few', 'days', 'in', 'a', 'distance.'], ['She', 'called', 'him', 'to', 'write', 'this', 'month.'], ["Who's", 'that', 'cute', 'guy', 'I', 'saw', 'you', 'with', 'yesterday?'], ["I'll", 'tell', 'you', 'about', 'it.'], ['He', 'came', 'in.'], ["I'm", 'not', 'going', 'to', 'do', 'as', 'many', 'days', 'as', 'I', 'used', 'to.'], ['You', 'look', 'so', 'handsome.'], ['Did', 'you', 'help', 'him?'], ['No', 'matter', 'what', 'you', 'said', 'not', 'to', 'say', 'hello.'], ['"What\'s', 'have', 'been', 'aboard', 'for', 'the', 'ladies."'], ["They're", 'not', 'alone.'], ["You'll", 'want', 'to', 'see', 'this.'], ['Where', 'were', 'you', 'when', 'your', 'wife', 'was', 'looking', 'at', 'your', 'age?'], ['Tom', 'is', 'almost', 'the', 'restaurant', 'when', 'he', 'was', 'a', 'student.'], ["Don't", 'make', 'me', 'do', 'it.'], ["Don't", 'be', 'so', 'impatient.'], ['Put', 'in', 'bed', 'and', 'go', 'and', 'go', 'to', 'bed.'], ['You', "won't", 'be', 'serious.'], ['I', 'need', 'a', 'cake.'], ['Who', 'do', 'you', 'want', 'to', 'talk', 'about?'], ['The', 'rabbit', 'hid', 'in', 'the', 'tree.'], ["You're", 'big.'], ['He', 'passed', 'the', 'classroom.'], ['Do', 'you', 'lose', 'losing', 'me?'], ['They', 'sat', 'on', 'the', 'verge', 'with', 'oil.'], ['I', 'know', 'Tom', 'was', 'horrified.'], ['He', "shouldn't", 'have', 'enough', 'money', 'to', 'do', 'that', 'than', 'that.'], ['Do', 'you', 'want', 'me', 'to', 'know', 'what', 'I', 'mean.'], ["They're", 'all', 'yours.'], ['The', 'meeting', 'has', 'been', 'forced', 'to', 'remove', 'the', 'company', 'to', 'have', 'been', 'forced', 'to', 'our', 'company.'], ['My', 'fingers', 'are', 'very', 'large.'], ['Put', 'the', 'cream', 'to', 'the', 'wall.'], ['He', 'threw', 'the', 'ball.'], ['It', 'was', 'a', 'beautiful', 'speech.'], ['Who', 'do', 'you', 'have', 'with', 'him?'], ["You're", 'talking', 'talking', 'to', 'you,', "don't", 'you?'], ['This', 'is', 'my', 'sister.'], ['I', 'have', 'a', 'friend', 'who', 'is', 'a', 'pilot.'], ["What's", 'the', 'last', 'thing', 'you', 'remember?'], ['Science', "doesn't", 'know', 'all', 'the', 'problems.'], ['God', 'sent', 'an', 'hour.'], ['I', 'have', 'a', 'stomachache.'], ['You', 'came', 'too', 'late.'], ['Tom', 'ran', 'away', 'from', "Mary's", "Mary's", 'brother.'], ['Take', 'it', 'on.'], ['I', 'agree', 'to', 'accept', 'your', 'offer.'], ["It's", 'too', 'late', 'for', 'me.'], ['Please', 'remind', 'me', 'to', 'mail', 'by', 'me.'], ['I', 'want', 'everyone', 'there.'], ['I', 'thought', 'you', 'wanted', 'a', 'divorce.'], ['Tom', 'left.'], ['Tom', 'has', 'an', 'urgent', 'painting.'], ['It', 'was', 'a', 'crime', 'crime', 'of', 'cancer.'], ['This', 'restaurant', 'is', 'too', 'expensive', 'for', 'me.'], ['How', 'fast', 'does', 'it', 'go?'], ['I', 'think', 'Tom', 'is', 'red.'], ["That's", 'a', 'surprise.'], ['We', 'worked', 'on', 'all', 'a', 'good', 'project.'], ['He', 'was', 'accused', 'of', 'being', 'a', 'spy.'], ['France', 'is', 'trying', 'to', 'be', 'in', 'the', 'middle', 'of', 'the', 'room.'], ['Does', 'your', 'plan', 'was', 'your', 'girlfriend?'], ['You', 'know', 'that', 'I', "don't", 'like', 'Tom.'], ['He', 'came', 'home', 'last', 'night.'], ['Her', 'clothes', 'were', 'suspicious.'], ['I', 'suppose', "you'll", 'be', 'all', 'day', 'tomorrow.'], ['Tom', 'teaches', 'us', 'French.'], ['Tom', 'seems', 'dangerous.'], ['Is', 'there', 'something', 'in', 'particular', 'that', 'you', 'want?'], ['Try', 'to', 'keep', 'you', 'in', 'my', 'place.'], ['She', "didn't", 'go', 'far.'], ['It', 'may', 'be', 'the', 'only', 'one', 'that', 'can', 'be', 'the', 'doctor', 'to', 'come.'], ['Can', 'you', 'read', 'this', 'kanji?'], ['The', 'birds', 'hate', 'the', 'water', 'started', 'to', 'the', 'edge', 'every', 'winter.'], ["Don't", 'give', 'me', 'the', 'question.'], ["Don't", 'you', 'think', 'so?'], ['Why', 'do', 'you', 'promise', 'Tom?'], ['Did', 'you', 'enjoy', 'yourself?'], ['Please', "don't", 'give', 'me', 'a', 'chance.'], ['All', 'of', 'the', 'boxes', 'are', 'hard', 'by', 'hearing.'], ['I', 'despise', 'Tom,', 'but', 'he', "doesn't", 'believe', 'you.'], ['She', 'opened', 'his', 'eyes.'], ['I', "don't", 'think', 'we', 'need', 'to', 'buy', 'this.'], ['It', "hasn't", 'been', 'done.'], ['I', 'told', 'you', 'to', 'ask', 'me', 'you', "didn't", 'bother', 'me', 'to', 'help', 'your', 'feelings.'], ['Just', 'a', 'minute.'], ['I', 'think', 'we', 'can', 'achieve', 'it', 'without', 'a', 'try.'], ['Take', 'care', 'of', 'you.'], ["I'm", 'not', 'sure', 'about', 'what', 'I', 'was', 'meaning', 'to', 'talk', 'to', 'know', 'about', 'religion.'], ['Since', 'I', 'used', 'to', 'play', 'tennis', 'once', 'a', 'week.'], ['We', 'should', 'not', 'take', 'a', 'shower', 'at', 'the', 'eggs.'], ['I', 'hate', 'insects.'], ["You're", 'not', 'listening,', 'are', 'you?'], ['I', 'thought', 'I', 'told', 'you', 'never', 'to', 'call', 'me.'], ['This', 'clock', 'is', 'not', 'a', 'hard', 'worker.'], ['Where', 'are', 'your', 'shoes.'], ['No', 'one', 'else', 'could', 'do', 'my', 'job.'], ['Tom', 'has', 'several', 'several', 'times.'], ['She', "didn't", 'listen', 'to', 'him.'], ['Tom', 'built', 'a', 'castle', 'in', 'his', 'garden.'], ['I', 'am', 'depressed', 'and', 'I', 'have', 'two', 'sons.'], ["You're", 'a', 'filthy', 'liar!'], ['I', 'know', 'a', 'good', 'place', 'for', 'dinner.'], ['They', 'were', 'so', 'busy', 'that', 'they', 'were', 'going', 'to', 'change', 'their', 'day.'], ['Just', 'try', 'this', "won't", 'happen.'], ['I', 'brought', 'a', 'cup', 'of', 'coffee.'], ['The', 'conflict', 'broke', 'up', 'and', 'never', 'let', 'it', 'again.'], ['She', 'is', 'friendly', 'with', 'everyone.'], ['That', 'might', 'be', 'fake.'], ['Does', 'it', 'offend', 'you?'], ['I', 'have', 'no', 'friends.'], ['Have', 'you', 'ever', 'told', 'me', 'that', 'you', 'can', 'hurt', 'my', 'before?'], ['I', 'need', 'to', 'finish', 'this', 'up.'], ['Your', 'country', 'is', 'growing', 'to', 'you?'], ['He', 'is', 'afraid', 'of', 'his', 'wife.'], ['I', 'got', 'a', 'lot.'], ['He', 'bowed', 'for', 'his', 'future', 'rights.'], ['The', 'country', 'is', 'trying', 'to', 'succeed.'], ['Keep', 'the', 'window', 'closed.'], ['Feed', 'us', 'informed.'], ['He', 'thinks', 'that', 'it', 'is', 'so', 'talented.'], ['I', "don't", 'need', 'to', 'say', 'anything.'], ['This', 'is', 'none', 'of', 'your', 'business.'], ['Tom', 'became', 'an', 'engineer.'], ['Studying', 'how', 'much', 'time', 'is', 'going', 'on', 'the', 'weather.'], ["You'll", 'never', 'leave', 'this', 'town.'], ['I', 'spent', 'all', 'week', 'here.'], ['What', 'is', 'he', 'hiding?'], ['She', 'said', 'that', 'I', 'was', 'saying.'], ['Cows', 'supply', 'us', 'some', 'milk.'], ['Does', 'it', 'mean', 'to', 'you?'], ['He', 'is', 'an', 'old', 'painting.'], ['You', 'have', 'the', 'worst', 'worse', 'of', 'training', "I've", 'ever', 'expected.'], ['I', 'think', 'Tom', 'is', 'dependable.'], ['Those', 'are', 'broken.'], ['It', 'is', 'a', 'hot', 'here.'], ['He', 'looked', 'pale.'], ['No', 'one', 'knows', 'his', 'name.'], ['You', "didn't", 'have', 'a', 'decision', 'at', 'night.'], ['Why', "don't", 'we', 'buy', 'this', 'job?'], ['I', 'was', 'caught', 'up', 'at', 'the', 'house', 'out', 'of', 'my', 'house.'], ['I', 'will', 'sell', 'that', 'gas.'], ['They', 'are', 'very', 'cheerful.'], ['She', 'took', 'him', 'for', 'his', 'brother.'], ['I', 'know', 'you', 'were', 'telling', 'me', 'the', 'other', 'day.'], ['The', 'main', 'source', 'is', 'on', 'the', 'original.'], ['I', 'used', 'to', 'find', 'a', 'week', 'this', 'year', 'to', 'find', 'a', 'week', 'ago.'], ['Tom', 'seems', 'to', 'know', 'the', 'perfect', 'way.'], ['This', 'is', 'your', 'destiny.'], ['You', 'were', 'always', 'very', 'kind.'], ['I', 'think', 'Tom', 'needs', 'something.'], ["It'll", 'probably', 'be', 'more', 'difficult', 'for', 'you', 'to', 'do', 'that.'], ['What', 'are', 'we', 'supposed', 'to', 'do?'], ['I', 'was', 'disappointed', 'at', 'the', 'news.'], ['She', 'plays', 'tennis', 'after', 'school.'], ['He', 'is', 'going', 'on', 'a', 'walk.'], ['He', 'drew', 'a', 'coin.'], ['He', 'said', 'that', 'he', 'went', 'to', 'Japan', 'in', 'the', 'hospital', 'a', 'week.'], ['The', 'moon', 'is', 'terrible.'], ['This', 'car', 'has', 'arrived.'], ["I'm", 'coming.'], ['I', "can't", 'understand', 'myself', 'in', 'French.'], ['She', 'got', 'after', 'him', 'after', 'midnight.'], ["You're", 'disgusting.'], ['Tom', 'tried', 'to', 'remain', 'silent.'], ['Tom', 'tried', 'to', 'tell', 'Mary', 'what', 'Mary', 'said.'], ['Needless', 'to', 'me', 'is', 'never', 'ready.'], ['We', 'met', 'each', 'other.'], ['A', 'lot', 'of', 'people', 'feel', 'the', 'same', 'way', 'that', 'you', 'used', 'to.'], ["I'd", 'like', 'to', 'ask', 'you', 'how', 'we', 'can', 'help.'], ['How', 'much', 'do', 'you', 'happy?'], ['I', 'thought', 'you', 'were', 'lost.'], ['Tom', 'has', 'his', 'birthday', 'party.'], ['You', 'must', 'work', 'together.'], ['You', 'will', 'always', 'be', 'here.'], ['I', "don't", 'see', 'that', 'way.'], ['Tom', 'and', 'Mary', 'laughed.'], ['I', 'lost.'], ['Are', 'you', 'sure', 'he', 'can', 'do', 'this?'], ["She's", 'not', 'my', 'type.'], ['Did', 'you', 'solve', 'the', 'problem?'], ['What', 'time', 'did', 'you', 'get', 'on', 'the', 'time?'], ['It', 'hurts.'], ['You', 'should', 'spend', 'more', 'time', 'complaining', 'and', 'more', 'time', 'with', 'you', 'more', 'careful.'], ['You', 'can', 'trust', 'him.'], ['I', "don't", 'know', 'if', 'I', 'have', 'enough', 'time.'], ['I', 'expected', 'you', 'to', 'be', 'a', 'little', 'longer.'], ['Take', 'the', 'water.'], ['Tom', 'is', 'a', 'good', 'boy.'], ['How', 'do', 'you', 'think', 'the', 'new', 'teacher?'], ['His', 'book', 'is', 'missing.'], ['Please', 'understand', "what's", 'going', 'on.'], ["I'll", 'be', 'starving.'], ['No', 'one', 'will', 'protect', 'you.'], ['Tom', "doesn't", 'like', 'eating.'], ['She', 'visited', 'our', 'house.'], ['The', 'soldiers', 'were', 'afraid', 'of', 'the', 'ground.'], ["You're", 'in', 'good', 'condition.'], ['We', 'will', 'hurry.'], ['Where', 'did', 'they', 'stop', 'that?'], ["I'd", 'like', 'to', 'talk', 'if', 'you', "don't", 'mind.'], ['The', 'girl', 'was', 'a', 'wonderful', 'way.'], ['Why', 'do', 'you', 'resist?', 'us?'], ['I', 'gave', 'you', 'fair', 'warning.'], ['I', "can't", 'believe', 'that', 'picture', 'on', 'the', 'cost.'], ['He', 'wrote', 'a', 'letter.'], ['I', "won't", 'let', 'you', 'look', 'up', 'that.'], ['You', 'should', 'make', 'up', 'with', 'your', 'own.'], ['Tom', 'has', 'a', 'huge', 'weapon.'], ['He', 'hid', 'the', 'bed.'], ['He', 'gave', 'me', 'everything', 'he', 'gave', 'me.'], ['My', 'brother', 'is', 'on', 'the', 'deaf.'], ['She', 'borrowed', 'from', 'his', 'gun', 'at', 'videogames.'], ['Three', 'were', 'wounded.'], ['Let', 'me', 'do', 'it.'], ["It's", 'not', 'expensive.'], ['Try', 'not', 'to', 'be', 'so', 'tense.'], ['He', "couldn't", 'keep', 'his', 'temper', 'any', 'longer.'], ['Who', 'do', 'you', 'want', 'me', 'well?'], ['Did', 'you', 'recognize', 'his', 'name?'], ['You', "don't", 'have', 'to', 'explain.'], ['He', 'is', 'very', 'rich.'], ['Look', 'at', 'the', 'rumor', 'who', 'is', 'on', 'the', 'wall.'], ['What', 'do', 'you', 'mean?'], ['Not', 'everyone', 'was', 'confused.'], ["I'm", 'sorry.', 'I', "didn't", 'mean', 'to', 'make', 'you', 'cry.'], ['You', "don't", 'look', 'so', 'busy.'], ['This', 'is', 'why', 'you', 'not', 'live', 'with', 'you.'], ['Do', 'you', 'have', 'the', 'book?'], ['Tom', "doesn't", 'even', 'live', 'in', 'Boston.'], ['I', 'wish', 'I', 'could', 'help', 'you,', 'but', 'I', "can't."], ['We', 'must', 'get', 'out', 'of', 'here.'], ['No', 'one', 'bicycle', 'my', 'pockets.'], ['She', 'despises', 'people', 'who', 'him.'], ['Did', 'you', 'do', 'the', 'homework', 'by', 'yourself?'], ['You', "don't", 'have', 'to', 'hurry.'], ["It's", 'true', 'that', 'the', 'true', 'is', 'true.'], ['I', 'can', 'see', 'you', 'in', 'love', 'with', 'you.'], ["I'll", 'be', 'absent', 'until', 'I', 'arrived.'], ['This', 'is', 'what', "I'm", 'going', 'to', 'do.'], ["I'm", 'glad', 'you', 'decided', 'to', 'come.'], ["I'm", 'interested', 'in', 'Oriental', 'ceramics.'], ['Be', 'careful,', 'there', 'is', 'there', 'in', 'this', 'way.'], ['The', 'policeman', 'caught', 'the', 'man', 'in', 'the', 'act.'], ['I', "can't", 'find', 'the', 'reason', 'he', 'likes', 'me.'], ['Who', 'can', 'help', 'me?'], ['Let', 'me', 'fix', 'it.'], ['Take', 'it', 'up', 'with', 'the', 'tower.'], ['The', 'potato', 'was', 'was', 'covered', 'with', 'the', "boy's", 'pocket.'], ['How', 'do', 'you', 'get', 'back?'], ['Who', 'were', 'you', 'talking', 'about?'], ['Why', 'not', 'do', 'the', 'bus', 'do', 'in', 'the', 'bus?'], ['Be', 'more', 'proud', 'of', 'you.'], ['Better', 'to', 'put', 'in', 'the', 'room', 'in', 'the', 'room', 'and', 'a', 'low', 'one.'], ['There', 'was', 'a', 'very', 'large', 'concert', 'ago,', 'in', 'the', 'library.'], ['If', 'you', 'know', 'what', 'to', 'do,', 'is', 'that', 'you', 'realize', 'that', 'you', 'are', 'gay.'], ['I', 'have', 'to', 'work', 'my', 'work', 'at', 'work', 'every', 'day.'], ['I', 'never', 'wanted', 'to', 'write', 'again.'], ['One', 'of', 'the', 'please.'], ['Tom', 'loves', 'his', 'job.'], ["Let's", 'start.'], ["I'm", 'not', 'used', 'to', 'like', 'it.'], ['My', 'daughter', 'is', 'just', 'a', 'girl', 'with.'], ['He', "didn't", 'want', 'the', 'guitar.'], ['He', 'has', 'been', 'thinking', 'about', 'the', 'story', 'of', 'his', 'weeks.'], ['I', 'am', 'not', 'being', 'out', 'of', 'breath.'], ['Can', 'you', 'give', 'me', 'a', 'ride?'], ['Tom', 'forgot', 'to', 'tell', 'Mary', 'what', 'he', 'had', 'to', 'do.'], ['I', 'can', 'get', 'the', 'only', 'one', 'by', 'my', 'car.'], ['Let', 'me', 'take', 'a', 'look.'], ['Take', 'one', 'of', 'these.'], ['Did', 'you', 'volunteer', 'us?'], ['She', 'was', 'natural', 'attention.'], ['I', 'have', 'no', 'choice', 'but', 'I', 'can', 'trust', 'him.'], ['Do', 'you', 'know', "what's", 'going', 'on?'], ['I', 'grew', 'up', 'with', 'the', 'farm.'], ['What', 'kind', 'of', 'books', 'do', 'you', 'have?'], ['Why', "don't", 'you', 'sit', 'here?'], ['We', 'are', 'lazy.'], ['She', 'told', 'me', 'to', 'be', 'a', 'shot.'], ['I', "don't", 'understand', 'why', 'no', 'one', 'knows', 'anymore.'], ['Keep', 'the', 'money.'], ["There's", 'a', 'lot', 'more', 'than', 'necessary.'], ['Love', 'knows', 'the', 'one', 'for', 'me.'], ["I'll", 'never', 'leave', 'you', 'alone', 'again.'], ['I', 'thought', 'you', 'might', 'want', 'to', 'know.'], ['How', 'come', 'when', 'you', 'come', 'back?'], ['The', 'Beatles', 'opened', 'the', 'ball.'], ['A', 'dog', 'is', 'full.'], ['I', 'know', 'Tom', "doesn't", 'speak', 'French.'], ["There's", 'plenty', 'of', 'water.'], ['The', 'plants', 'and', 'the', 'students', 'have', 'turned', 'off', 'the', 'ears.'], ['How', 'does', 'he', 'at', 'school?'], ["Let's", 'keep', 'a', 'change.'], ['He', "didn't", 'hate', 'the', 'drinks.'], ['How', 'do', 'I', 'get', 'out', 'of', 'breath.'], ["How's", 'your', 'old', 'lady', 'doing?'], ['My', 'father', 'speaks', 'French,', 'but', 'he', 'speaks', 'French.'], ['I', 'had', 'dinner', 'with', 'the', 'phone', 'rang.'], ["I'm", 'going', 'to', 'explain', 'it', 'to', 'me.'], ['He', 'will', 'be', 'ready.'], ['If', 'anything', 'happens', 'is', 'your', 'problem,', 'that', 'everyone', 'thinks', 'is', 'wrong.'], ['I', "don't", 'believe', 'what', 'people', 'said', 'from', 'people', 'to', 'say.'], ['How', 'could', 'this', 'happen?'], ['Hurry', 'up,', 'girls.'], ['It', 'is', 'no', 'use', 'breakfast', 'yet.'], ['How', 'long', 'does', 'it', 'last?'], ['We', 'need', 'your', 'help.'], ["We're", 'not', 'talking', 'about', 'you.'], ['I', 'would', 'like', 'to', 'talk', 'to', 'him', 'between', 'him.'], ['It', 'may', 'take', 'a', 'little', 'time.'], ["I'm", 'happy', 'who', 'you', 'are', 'happy.'], ['We', 'have', 'to', 'find', 'Tom.'], ['It', 'looks', 'like', "he's", 'happy.'], ['I', 'really', 'need', 'to', 'go', 'to', 'work.'], ['Are', 'you', 'interested?'], ['A', 'good', 'deal', 'of', 'fun.'], ['I', "don't", 'expect', 'anything', 'about', 'you.'], ['This', 'air', 'he', 'needs', 'to', 'be.'], ['I', "don't", 'want', 'to', 'see', 'you.'], ['Stay', 'out', 'of', 'my', 'sight.'], ['Tom', 'gave', 'Mary', 'the', 'letters', 'that', 'he', 'had', 'to', 'help', 'her.'], ["That's", 'not', 'quite', 'true.'], ['Tom', 'plays', 'a', 'lot.'], ["I'm", 'certain.'], ['I', 'have', 'the', 'worst', 'that', 'you', 'decided', 'that', 'next', 'time.'], ['My', 'parents', "wouldn't", 'allow', 'me', 'to', 'do', 'that', 'when', 'I', 'was', 'younger.'], ['It', 'would', 'be', 'at', 'home', 'today.'], ['You', 'have', 'to', 'keep', 'your', 'hands', 'clean.'], ['Tell', 'me', 'the', 'cops.'], ['Do', 'you', 'want', 'to', 'do', 'this', 'alone?'], ["I'm", 'sorry,', 'I', "didn't", 'have', 'that.'], ['I', 'want', 'to', 'say', 'a', 'word', 'to', 'Tom.'], ['What', 'kind', 'of', 'students', 'were', 'playing', 'with', 'school?'], ['It', 'was', 'a', 'little', 'cold,', 'he', 'used', 'to', 'walk', 'around', 'the', 'park.'], ['I', 'opened', 'the', 'window.'], ['I', "can't", 'believe', "I'm", 'going', 'to', 'do', 'that.'], ['Take', 'it', 'on.'], ['Close', 'the', 'window.'], ['Tom', 'knew', 'that', 'Mary', 'was', 'busy.', 'but', 'they', 'were', 'busy.'], ['We', 'will', 'help', 'him', 'every', 'day.'], ['I', 'want', 'you', 'to', 'be', 'back.'], ['I', 'know', 'Tom', 'likes', 'to', 'win.'], ['Do', 'you', 'like', 'it?'], ['We', 'need', 'to', 'join', 'you', 'in', 'a', 'hospital.'], ["I'd", 'like', 'to', 'check', 'the', 'book', 'later.'], ["Don't", 'tell', 'me', "you're", 'not', 'going', 'to', 'be', 'here.'], ['Tom', 'has', 'read', 'the', 'goal.'], ['Tom', 'said', 'that', 'Mary', 'was', 'in', 'her', 'sleep.'], ['He', 'was', 'dead.'], ['Tom', 'was', 'pretty', 'nervous.'], ['My', 'mother', "doesn't", 'want', 'to', 'study', 'hard.'], ['I', "don't", 'know', 'the', 'rules.'], ['Whether', 'Tom', 'is', 'busy', 'preparing', 'but', 'just', 'is', 'a', 'while.'], ['I', "don't", 'have', 'time', 'to', 'lose.'], ['Tell', 'Tom', 'what', "he's", 'here.'], ['I', "wasn't", 'able', 'to', 'remember', 'the', 'melody', 'out', 'of', 'the', 'song.'], ['She', 'followed', 'the', 'gun', 'at', 'the', 'wall.'], ['I', 'have', 'a', 'friend', 'who', 'is', 'to', 'like', 'a', 'friend', 'of', 'options.'], ["Don't", 'forget', 'to', 'put', 'up', 'with', 'the', 'manager.'], ["I'm", 'going', 'to', 'need', 'you.'], ['He', 'was', 'not', 'to', 'hurt', 'my', 'proposal.'], ['She', 'explained', 'to', 'him', 'why', 'she', 'was', 'late.'], ['A', 'success', 'was', 'bored', 'with', 'his', 'success', 'to', 'his', 'friend.'], ['Rinse', 'with', 'warm', 'water.'], ['She', 'achieved', 'his', 'goal.'], ['The', 'door', 'is', 'open.'], ['You', 'knew', 'it', 'was', 'it?'], ['They', 'want', 'us', 'to', 'come', 'back', 'immediately.'], ['Tom', 'turned', 'on', 'the', 'lamp.'], ['I', 'have', 'a', 'friend', 'visit', 'visit', 'tomorrow.'], ['I', 'see', 'what', 'you', 'mean.'], ["I'd", 'like', 'to', 'talk', 'to', 'you', 'in', 'my', 'office.'], ["I'm", 'going', 'to', 'study.'], ['Do', 'you', 'think', "I'm", 'healthy?'], ['You', 'have', 'a', 'decision', 'to', 'make.'], ['Black', 'take', 'care', 'of', 'the', 'hours.'], ['He', 'hugged', 'him', 'a', 'doll.'], ['Everyone', 'was', 'lying.'], ['I', 'never', 'agree', 'to', 'write', 'his', 'position.'], ['If', 'you', 'have', 'followed', 'me', 'if', 'you', 'need.'], ['I', 'have', 'been', 'looking', 'for', 'a', 'test', 'lately.'], ['We', 'saw', 'him', 'the', 'puzzle.'], ['I', 'have', 'tried', 'everything.'], ['I', 'think', "they'll", 'come', 'to', 'see', 'the', 'world', 'again', 'next', 'week.'], ['I', "won't", 'come', 'without', 'you.'], ["We're", 'leaving', 'now.'], ['I', 'saw', 'you', 'on', 'the', 'distance.'], ['What', 'were', 'you', 'so', 'sure', 'that', 'they', 'know?'], ['Generally', 'in', 'the', 'United', 'States', 'we', 'put', 'a', 'similar', 'to', 'the', 'table.'], ["You're", 'not', 'as', 'smart', 'as', 'me.'], ['He', 'took', 'part', 'in', 'the', 'shower.'], ["I'm", 'not', 'afraid', 'of', 'spiders.'], ['Stop', 'being', 'so', 'nice.'], ['I', 'have', 'a', 'test', 'tomorrow.'], ['He', 'managed', 'to', 'escape', 'through', 'the', 'window.'], ['We', "don't", 'have', 'a', 'word', 'to', 'spare.'], ['After', 'I', 'went', 'to', 'bed', 'because', 'I', 'was', 'sleepy.'], ['I', "don't", 'think', 'Tom', 'lied', 'to', 'us.'], ['They', 'arrived', 'too', 'early.'], ["I'm", 'not', 'this', 'afternoon.'], ['He', 'swallowed', 'his', 'pride.'], ["You're", 'grumpy.'], ['The', 'man', 'stole', 'his', 'bag.'], ['He', 'took', 'advantage', 'of', 'us', 'a', 'day.'], ['We', 'have', 'to', 'do', 'this', 'again.'], ['Where', 'do', 'you', 'all', 'work', 'this', 'money?'], ['This', 'company', 'only', 'costs', 'as', 'a', 'critic.'], ["I'm", 'sure', 'Tom', "doesn't", 'do', 'that', 'anymore.'], ['Anyone', 'can', 'make', 'a', 'problem.'], ['They', 'wanted', 'him', 'to', 'begin.'], ['Not', 'everybody', 'to', 'party.'], ['His', 'novel', 'is', 'familiar', 'to', 'me.'], ['We', "don't", 'deserve', 'that', 'happening.'], ['Their', 'friendship', 'is', 'numb.'], ['Close', 'the', 'door.'], ['I', 'got', 'lost', 'in', 'the', 'woods.'], ['I', "don't", 'have', 'time', 'to', 'help', 'him.'], ['Why', 'are', 'you', 'still', 'there?'], ['I', 'know', 'the', 'reason', 'of', 'the', 'sound', 'of', 'his', 'absence.'], ['Did', 'you', 'speak', 'with', 'your', 'family?'], ['How', 'can', 'you', 'be', 'sure', 'of', 'it?'], ['Japan.', 'is', 'popular', 'in', 'Japan.'], ['If', 'you', 'want', 'to', 'succeed,', 'you', 'must', 'work', 'harder.'], ['I', 'have', 'no', 'choice', 'but', 'to', 'eat', 'what', 'they', 'made.'], ['I', 'wanted', 'to', 'discuss', 'this', 'with', 'you', 'yesterday,', 'but', 'you', "didn't", 'mean', 'it.'], ['I', 'was', 'really', 'glad', 'to', 'hear', 'the', 'news.'], ['What', 'one', 'is', 'that', 'you', 'have', 'a', 'criminal?'], ['I', 'was', 'trying', 'to', 'say', 'something.'], ['Do', 'you', 'know', 'how', 'if', 'he', 'speaks', 'French?'], ['I', 'really', 'do', 'need', 'your', 'help.'], ["We're", 'out', 'of', 'money.'], ['It', 'was', 'difficult', 'for', 'a', 'fortune.'], ['They', 'were', 'wasting', 'weather.'], ["I'd", 'like', 'to', 'go', 'to', 'the', 'bathroom.'], ['If', 'you', 'could', 'do', 'that', 'for', 'me,', "I'd", 'appreciate', 'it.'], ['Take', 'out', 'your', 'notebooks.'], ["I'll", 'take', 'care', 'of', 'that.'], ['Tom', 'was', 'supposed', 'to', 'call', 'a', 'restaurant', 'when', 'he', 'was', 'a', 'child.'], ['I', "don't", 'have', 'yet.'], ['I', 'want', 'a', 'third', 'meeting.'], ['My', 'brother', 'is', 'in', 'Australia', 'now.'], ['Am', 'I', 'in', 'the', 'second', 'way?'], ['I', 'am', 'wearing', 'a', 'volunteer.'], ['Leave', 'me', 'here.'], ["You're", 'thirty', 'thousand', 'dollars', 'in', 'debt.'], ["I'm", 'sorry,', 'I', "don't", 'want', 'any', 'of', 'them.'], ['He', "didn't", 'know', 'how', 'to', 'explain', 'it.'], ['I', 'think', 'we', 'need', 'more', 'time.'], ['I', 'promise', 'that', 'hard.'], ['She', 'advised', 'him', 'that', 'she', "didn't", 'like', 'him.'], ['I', 'folded', 'all', 'the', 'houses.'], ['Tom', 'knows', 'nothing', 'about', 'computers.'], ['I', 'thought', 'I', 'wanted', 'to', 'go', 'there', 'alone.'], ['She', 'met', 'her', 'uncle', 'at', 'the', 'store.'], ['What', 'a', 'beautiful', 'man!'], ['Man', 'is', 'normal.'], ['I', 'used', 'to', 'buy', 'a', 'gun.'], ['I', 'like', 'the', 'guitar.'], ["Let's", 'get', 'a', 'lawyer', 'with', 'the', 'car.'], ['I', 'need', 'to', 'be', 'alone.'], ['I', 'have', 'to', 'remember', 'this', 'place.'], ["Don't", 'tell', 'anyone', 'about', 'it.'], ['You', "don't", 'have', 'a', 'lot', "isn't", 'it?'], ['You', "can't", 'let', 'Tom', 'stay', 'here', 'for', 'Mary.'], ['The', 'sky', 'was', 'falling.'], ['I', 'had', 'things', 'to', 'have', 'finished.'], ['Mary', 'is', "Tom's", 'wine.'], ['Are', 'you', 'afraid', 'of?'], ['Yesterday,', 'I', 'had', 'not', 'been', 'in', 'the', 'second', 'side', 'of', 'the', 'earth.'], ['He', 'is', 'looking', 'for', 'us.'], ["It's", 'pretty', 'bad.'], ["I'm", 'not', 'the', 'one', 'who', "couldn't", 'know', 'the', 'way', 'to', 'do', 'it.'], ['At', 'least', 'I', 'listened', 'to', 'me.'], ['This', 'is', 'a', 'painting.'], ['I', 'have', 'three', 'dogs.'], ['He', "doesn't", 'know', 'how', 'much', 'his', 'name.'], ['They', 'were', 'busy.'], ['We', 'can', 'talk.'], ['I', 'am', 'in', 'front', 'of', 'myself.'], ['I', 'just', "don't", 'want', 'to', 'see', 'you', 'get', 'disappointed.'], ['I', 'remember', 'it.'], ['I', 'knew', "I'd", 'find', 'you', 'here.'], ["There's", 'the', 'crime', 'in', 'the', 'crime', 'in', 'the', 'crime', 'in', 'the', 'crime', 'in', 'the', 'crime', 'crime', 'in', 'the', 'crime'], ['There', 'were', 'many', 'mistakes', 'in', 'the', 'house.'], ['What', 'makes', 'you', 'happy?'], ['Several', 'people', 'live', 'in', 'the', 'room.'], ["Don't", 'be', 'so', 'hard', 'as', 'he', 'could', 'do', 'as', 'a', 'dog.'], ['Two', 'sugar,', 'please.'], ['I', 'need', 'a', 'hammer.'], ['I', 'want', 'to', 'hear', 'you', 'play', 'the', 'piano.'], ['What', 'you', 'make', 'sure', 'no', 'sense.'], ['The', 'date', 'of', 'the', 'book', 'is', 'on', 'the', 'date', 'for', 'paper.'], ['I', 'got', 'fined.'], ["I'm", 'impressed.'], ['Tom', 'asked', 'Mary', 'to', 'spend', 'in', 'the', 'United', 'States.'], ['I', 'said', 'that', 'I', "didn't", 'understand', 'French.'], ['I', 'hate', 'that', 'you', 'have', 'to', 'be', 'here.'], ['Tom', 'would', 'never', 'agree', 'with', 'that.'], ["You're", 'one', 'of', 'my', 'eyes.'], ['Do', 'you', 'want', 'me', 'to', 'drive', 'you?'], ['I', 'saw', 'that.'], ["You're", 'too', 'young', 'to', 'travel', 'alone.'], ["I'm", 'not', 'the', 'one', 'who', 'should', 'do', 'that.'], ['Can', 'we', 'buy', 'us', 'a', 'new', 'car?'], ['He', 'knows', 'he', 'knows', 'everything.'], ['We', 'enjoyed', 'finally', 'in', 'the', 'village.'], ['I', "can't", 'take', 'this', 'decision', 'to', 'you.'], ['I', "don't", 'think', 'anyone', 'looks', 'good', 'to', 'me.'], ['I', 'studied', 'French', 'for', 'three', 'hours', 'last', 'night.'], ['No', 'one', 'listens', 'to', 'me.'], ['Instead', 'of', 'going', 'to', 'help', 'you', 'with', 'me', 'to', 'help', 'you.'], ['They', 'never', 'found', 'the', 'truth.'], ['You', 'can', 'stay', 'here', 'as', 'long', 'as', 'you', 'like,', 'so', "let's", 'stay', 'here.'], ['Tom', 'used', 'to', 'be', 'a', 'few', 'months', 'ago.'], ['I', 'am', 'staying', 'with', 'my', 'family', 'tonight.'], ['I', "don't", 'want', 'money.'], ["You're", 'not', 'supposed', 'to', 'be', 'in', 'here.'], ['It', "must've", 'been', 'never', 'been', 'a', 'thing.'], ['We', 'had', 'a', 'deal.'], ['Go', 'washing', 'the', 'dishes.'], ["I'm", 'glad', 'to', 'be', 'here.'], ['He', "can't", 'be', 'older', 'than', 'me.'], ['Why', "don't", 'you', 'keep', 'it?'], ['Are', 'you', 'ready', 'to', 'order?'], ['Because', 'of', 'my', 'advice,', 'I', "won't", 'change', 'my', 'mind.'], ['No', 'one', 'answered', 'the', 'door.'], ['He', 'used', 'to', 'read', 'a', 'read', 'every', 'meal.'], ['Tom', 'got', 'into', 'the', 'room', 'in', 'the', 'room.'], ['Most', 'of', 'the', 'students', 'like', 'computers.'], ['Do', 'you', 'know', 'how', "we're", 'going', 'on?'], ['I', 'will', 'wake', 'you', 'at', 'seven.'], ["Tom's", 'house', 'is', 'on', 'the', 'beach.'], ["They're", 'not', 'at', 'home', 'yet.'], ['I', 'feel', 'naked.'], ['Tom', 'left', 'his', 'dog', 'at', 'home.'], ['The', 'government', 'has', 'nothing', 'to', 'solve', 'the', 'housing', 'problem.'], ['My', 'father', 'never', 'gave', 'me', 'a', 'lot', 'of', 'advice.'], ['I', "don't", 'think', 'Tom', 'will', 'do', 'our', 'plan', 'to', 'do', 'our', 'help.'], ['You', 'need', 'to', 'be', 'more', 'careful.'], ['These', 'things', 'are', 'the', 'same.'], ['Why', 'did', 'you', 'come', 'here?'], ['Give', 'me', 'half.'], ['He', "can't", 'take', 'care', 'of', 'himself.'], ["You're", 'a', 'real', 'friend.'], ["It's", 'worth', 'a', 'trip.'], ['Leave', 'a', 'message?'], ['It', 'is', 'wrong', 'with', 'you.'], ['The', 'married', 'she', 'told', 'her', 'she', 'was', 'a', 'foreigner.'], ["That's", 'the', 'danger.'], ['Have', 'you', 'already', 'left', 'in', 'mind?'], ['I', 'know', 'how', 'you', 'think', 'about', 'it.'], ['If', 'I', 'had', 'written', 'I', 'had', 'written', 'your', 'advice,', 'I', 'would', 'fail.'], ['I', 'knew', "you'd", 'want', 'to', 'meet', 'me.'], ["Let's", 'get', 'it', 'right', 'away.'], ['Do', 'we', 'need', 'help?'], ['Yesterday', 'I', 'ate', 'a', 'year.'], ['What', 'can', 'I', 'tell', 'you?'], ['She', 'suggested', 'that', 'he', 'knew', 'the', 'problem.'], ['This', 'is', 'my', 'idea', 'to', 'account', 'of', 'yours.'], ['Her', 'plan', 'must', 'be', 'given', 'the', 'news', 'for', 'him.'], ['I', 'share', 'my', 'family', 'with', 'my', 'girlfriend.'], ['You', "can't", 'trust', 'your', 'feelings.'], ['I', "won't", 'be', 'here', 'to', 'help', 'you.'], ['We', "can't", 'all', 'people', 'for', 'all', 'lunch.'], ["I'd", 'like', 'a', 'nice', 'room', 'with', 'a', 'nice', 'way.'], ['What', 'do', 'you', 'get', 'it?'], ['I', "didn't", 'take', 'part', 'in', 'the', 'shower.'], ['I', 'think', "I'm", 'going', 'to', 'take', 'a', 'bath', 'tonight.'], ['Our', 'name', 'is', 'often', 'on', 'the', 'name', 'on', 'the', 'name', 'on', 'the', 'list.'], ['I', 'became', 'rich.'], ['We', 'are', 'looking', 'forward', 'to', 'our', 'team.'], ['If', 'people', 'were', 'all', 'looking', 'up', 'with', 'you', 'as', 'they', 'as', 'they', 'were', 'all', 'here.'], ['How', 'did', 'you', 'come', 'by', 'this', 'painting?'], ['Perhaps', 'Tom', 'forgot.'], ['She', 'is', 'washing', 'her', 'homework', 'before', 'dinner.'], ["It's", 'more', 'complicated', 'than', 'I', 'thought.'], ['Who', 'was', 'it', 'that', 'I', 'was', 'it?'], ['What', 'time', 'did', 'you', 'wake', 'up', 'this', 'morning?'], ['We', 'have', 'a', 'problem.'], ['I', 'put', 'on', 'your', 'desk.'], ['Which', 'one', 'will', 'that', 'be?'], ["You're", 'my', 'boss.'], ['He', 'looked', 'at', 'the', 'sky.'], ['You', 'may', 'watch', 'TV', 'after', 'supper.'], ['We', 'were', 'heard', 'when', 'we', 'heard', 'the', 'whole', 'gunshot.'], ['He', 'asked', 'me', 'if', 'I', 'was', 'so', 'unfair.'], ['This', 'is', 'no', 'place', 'for', 'kids.'], ['Tom', 'said', 'he', 'was', 'lying.'], ['We', 'must', 'eat.'], ['She', 'has', 'been', 'unreasonable.'], ['I', "can't", 'just', 'believe', 'your', 'here.'], ["Who's", 'going', 'to', 'pay', 'for', 'this?'], ['Tom', "didn't", 'look', 'like', 'a', 'lawyer.'], ["I'd", 'never', 'forget', 'what', 'Tom', 'did.'], ['Is', 'there', 'anyone', 'else', 'here?'], ["It's", 'complicated.'], ['It', 'would', 'be', 'much', 'for', 'me', 'to', 'help', 'you', 'so', 'much.'], ['Are', 'you', 'trying', 'to', 'do', 'it', 'for', 'Tom?'], ['Pay', 'attention', 'to', 'what', 'you', 'want', 'to', 'do.'], ['I', 'have', 'enough', 'money', 'to', 'buy', 'it.'], ['When', 'did', 'that', 'happen?'], ['She', 'was', 'lying', 'on', 'the', 'street', 'on', 'foot.'], ['How', 'can', 'I', 'help', 'you?'], ["There's", 'a', 'cherry', 'bus', 'stop', 'at', 'the', 'corner.'], ["That's", 'your', 'choice.'], ['How', 'long', 'will', 'it', 'last?'], ['I', "can't", 'see', 'what', 'you', 'mean.'], ["You're", 'not', 'wearing', 'it?'], ['Someone', 'is', 'knocking', 'on', 'the', 'door.'], ['Have', 'a', 'great', 'jam.'], ['They', 'slept', 'not', 'since', 'sleep', 'at', 'night.'], ['I', 'have', 'a', 'lot', 'of', 'homework.'], ['I', 'expect', 'Tom', 'to', 'be', 'supportive.'], ['All', 'we', 'have', 'to', 'change', 'water.'], ['He', 'commanded', 'me', 'the', 'room.'], ['Can', 'we', 'talk', 'about', 'it?'], ['He', 'laughed', 'at', 'me.'], ['Why', "don't", 'you', 'stop', 'any', 'evidence.'], ["Let's", 'take', 'care', 'of', 'it.'], ['Do', 'you', 'really', 'like', 'that?'], ['Where', 'are', 'my', 'slippers?'], ['He', 'is', 'a', 'teacher,', 'and', 'mad.'], ["I'm", 'not', 'very', 'busy.'], ['She', 'is', 'engaged', 'to', 'his', 'arms', 'around', 'the', 'bush.'], ['You', 'should', 'stay', 'here', 'a', 'few', 'days.'], ['The', 'number', 'of', 'view,', 'is', 'number', 'of', 'hearing.'], ['There', 'was', 'no', 'problems.'], ['I', 'figured', 'something', 'was', 'up.'], ["I'm", 'the', 'only', 'one', 'who', 'survived.'], ['I', 'knew', 'Tom', 'was', 'a', 'little', 'busy.'], ['What', 'if', 'Tom', 'hit', 'you?'], ["They're", 'spies.'], ['His', 'ship', 'is', 'the', 'other', 'flag.'], ['How', 'could', 'we', 'do', 'that?'], ['I', "don't", 'know', 'if', 'Tom', 'can', 'go', 'to', 'Boston', 'for', 'Christmas.'], ['It', 'belongs', 'to', 'me.'], ['Will', 'you', 'be', 'a', 'little', 'company?'], ['I', 'try', 'to', 'play', 'the', 'guitar', 'to', 'play', 'this', 'house.'], ["It's", 'really', 'cold', 'to', 'drink.'], ['Tom', 'has', 'a', 'hard', 'day.'], ['Give', 'me', 'the', 'clock.'], ['Things', 'have', 'some', 'of', 'people', 'and', 'have', 'come', 'with', 'each', 'other', 'with', 'each', 'other.'], ["I'm", 'the', 'one', 'who', 'should', 'apologize.'], ['He', 'had', 'no', 'time', 'to', 'read.'], ["Don't", 'put', 'all', 'of', 'the', 'eggs', 'in', 'the', 'same', 'state.'], ['Take', 'up', 'on.'], ["I'll", 'tell', 'you,', 'I', "don't", 'love', 'Tom.'], ['Everything', 'is', 'on', 'all', 'of', 'a', 'hurry.'], ['One', 'of', 'the', 'girls', 'was', 'left', 'under', 'the', 'area.'], ['Take', 'a', 'number', 'of', 'soldiers', 'and', 'stop', 'smoke.'], ['I', "didn't", 'kiss', 'you', 'hungry.'], ['I', 'want', 'you', 'to', 'stay', 'in', 'my', 'room', 'for', 'my', 'room.'], ['She', 'wants', 'to', 'keep', 'a', 'cane.'], ['I', 'wrote', 'this', 'book.'], ["That's", 'the', 'one', 'of', 'the', 'law.'], ['I', 'think', 'this', 'is', 'highly', 'spontaneous.'], ['I', 'am', 'going', 'to', 'a', 'movie', 'beer.'], ['I', 'need', 'to', 'find', 'a', 'reason.'], ["You're", 'not', 'funny.'], ['Stop', 'teasing', 'me.'], ['There', 'are', 'many', 'people', 'who', 'grow', 'care', 'of', 'stamps.'], ['Tom', "doesn't", 'know', 'Mary', 'and', 'Mary', "won't", 'come', 'and', 'come.'], ['Do', 'you', 'really', 'think', "it's", 'bad?'], ['Nothing', 'would', 'make', 'me', 'happier', 'than', 'to', 'see', 'you', 'happy.'], ['I', 'called', 'to', 'say', 'that', 'I', 'could', 'tell', 'him.'], ['I', 'wish', 'I', 'had', 'a', 'little', 'talk', 'with', 'you.'], ["I'll", 'walk', 'off.'], ['Did', 'you', 'have', 'fun', 'last', 'night?'], ['Tom', "didn't", 'know', 'anyone.'], ["I'd", 'like', 'to', 'write', 'a', 'few', 'words.'], ["I'm", 'not', 'doing', 'that.'], ['Some', 'people', 'think', 'the', 'way', 'started', 'too', 'much', 'people', 'in', 'the', 'way', 'of', 'the', 'United', 'States.'], ['You', 'have', 'to', 'take', 'the', 'bus', 'number', 'behind', 'you.'], ['She', 'has', 'a', 'low', 'hand', 'on', 'the', 'low', 'leg.'], ["Who's", 'that', 'person?'], ['I', "can't", 'do', 'this', 'heat.'], ['She', 'smells', 'like', 'a', 'boy.'], ["There's", 'nothing', 'else', 'I', 'want', 'to', 'buy.'], ['She', 'played', 'the', 'music', 'for', 'thirty', 'years.'], ['He', 'has', 'met', 'each', 'other.'], ['She', 'spends', 'too', 'much', 'time', 'on', 'the', 'way', 'of', 'the', 'others.'], ['I', "couldn't", 'stand', 'any', 'longer.'], ["Let's", 'clean', 'up', 'with', 'a', 'drink', 'now.'], ['Guess', 'what', 'my', 'hands', 'were', 'in', 'my', 'hand.'], ["You're", 'not', 'sitting', 'beside', 'me', 'who', 'sat', 'down.'], ['None', 'of', 'his', 'students', 'passed', 'the', 'test.'], ['Tom', 'laughed.'], ['Your', 'plan', 'seems', 'excellent.'], ['No', 'one', 'cares', 'about', 'us.'], ['I', 'think', 'you', 'should', 'pay', 'more', 'attention', 'in', 'class.'], ['I', "don't", 'know', 'why', 'it', 'was', 'so', 'scared.'], ['I', 'do', 'this', 'now.'], ['I', 'agree', 'with', 'you', 'on', 'this', 'point.'], ['Tom', 'turned', 'off', 'the', 'tap.'], ['Tom', 'and', 'I', 'can', 'speak', 'French.'], ['What', 'are', 'really', 'serious?'], ['They', "didn't", 'want', 'me', 'to', 'examine', 'it.'], ['I', 'was', 'hoping', 'to', 'meet', 'you.'], ['Tom', 'called', 'us', 'to', 'meet', 'his', 'meeting', 'for', 'Boston.'], ['Did', 'you', 'enjoy', 'the', 'movie', 'you', 'saw', 'last', 'night?'], ['The', 'sky', 'is', 'covered', 'with', 'the', 'clouds.'], ['I', 'think', 'you', 'need', 'my', 'umbrella.'], ['We', 'met', 'last', 'Monday.'], ['Look', 'at', 'the', 'cat.'], ['She', 'likes', 'rats.'], ["Don't", 'you', 'think', 'that', 'kind', 'of', 'time', 'who', "can't", 'do', 'this', 'kind', 'of', 'yourself?'], ["She's", 'two', 'years', 'older', 'than', 'you', 'are.'], ['This', 'is', 'the', 'best', 'thing', "I've", 'ever', 'heard.'], ["That's", 'a', 'mess.'], ["You're", 'still', 'green.'], ['Our', 'plan', 'had', 'no', 'choice', 'but', 'to', 'do', 'with', 'him', 'during', 'the', 'heater.'], ['The', 'sky', 'is', 'going', 'to', 'stop', 'and', 'start', 'by', 'air.'], ["It's", 'two', 'kilometers', 'from', 'going', 'on.'], ['You', "should've", 'just', 'liked', 'it.'], ['I', "don't", 'believe', 'that', 'melody'], ["That's", 'useless.'], ['Do', 'you', 'have', 'a', 'lot?'], ['Tom', 'is', 'an', 'acrobat.'], ["It's", 'worth', 'worth', 'a', 'try.'], ['I', 'saw', 'them', 'seen', 'them', 'to', 'hire', 'them.'], ['I', 'know', 'your', 'brother.'], ['I', 'can', 'wait', 'for', 'a', 'few', 'hours.'], ['They', 'made', 'fun', 'of', 'Mary.'], ['We', 'will', 'give', 'you', 'on', 'the', 'list.'], ["I'm", 'not', 'sure', 'I', 'can', 'trust', 'him.'], ['She', 'told', 'him', 'to', 'read', 'his', 'clothes', 'to', 'read', 'him', 'because', 'she', 'had', 'to.'], ['I', "don't", 'often', 'make', 'jokes.'], ['She', 'wanted', 'to', 'be', 'ninety.', 'but', 'ten', 'years', 'late.'], ["I'm", 'broke.'], ['I', 'realized', 'I', "wasn't", 'ready.'], ['Look', 'at', 'these.'], ['I', 'need', 'a', 'drink.'], ['I', 'saw', 'Tom', 'entering', 'that', 'restaurant.'], ["I'll", 'come', 'with', 'you.'], ['Do', 'you', 'know', 'how', 'to', 'pronounce', 'the', 'TV?'], ['I', 'knew', 'Tom', 'was', 'in', 'Boston.'], ['Tom', "doesn't", 'eat', 'between', 'meals.'], ['I', 'think', "you're", 'being', 'beautiful.'], ['The', 'king', 'has', 'been', 'for', 'the', 'age', 'of', 'having', 'lasted', 'for', 'practice.'], ['No', 'one', 'knows', 'a', 'lot', 'of', 'people', 'to', 'play.'], ['Tom', "doesn't", 'like', 'pizza.'], ['I', 'want', 'to', 'see', 'the', 'beach', 'goodbye.'], ['I', 'made', 'too', 'many', 'mistakes.'], ['I', 'am', 'not', 'a', 'little', 'awkward.'], ['Do', 'you', 'have', 'a', "driver's", 'license?'], ["I'm", 'fat.'], ['That', 'almost', 'made', 'me', 'laugh.'], ['How', 'many', 'books', 'do', 'you', 'have?'], ['What', 'time', 'does', 'your', 'plane', 'leave?'], ['Shoes', 'are', 'very', 'complicated.'], ["They'll", 'tell', 'you', 'the', 'truth.'], ["Don't", 'spread', 'the', 'rumor.'], ['My', 'mother', 'looks', 'young', 'to', 'her', 'age.'], ['Everybody', 'likes', 'people', 'people.'], ["She's", 'more', 'beautiful', 'than', 'beautiful.'], ['I', 'climbed', 'the', 'fence.'], ['I', 'felt', 'my', 'birthday', 'on', 'my', 'head.'], ['If', 'he', 'were', 'told', "he'd", 'be', 'told', 'to', 'tell', 'you.'], ['You', 'must', 'go.'], ['You', 'should', 'assume', 'what', 'you', 'say.'], ["I'm", 'not', 'so', 'sure', 'about', 'that.'], ['You', 'are', 'always', 'watching', 'TV.'], ['Do', 'you', 'have', 'a', 'map', 'card?'], ['You', 'should', 'be', 'very', 'proud', 'of', 'yourself.'], ['Is', 'good', 'good', 'boyfriend?'], ['My', 'children', 'are', 'not', 'listening', 'to', 'listen', 'to', 'me.'], ['He', 'is', 'a', 'wonderful', 'writer.'], ['Would', 'you', 'be', 'willing', 'to', 'share', 'your', 'code', 'with', 'me?'], ['He', 'went', 'to', 'the', 'second', 'time', 'to', 'see', 'the', 'London.'], ['I', 'made', 'her', 'letter', 'to', 'me.'], ['Tom', 'pulled', 'the', 'door.'], ['I', "can't", 'walk', 'any', 'further.'], ["I'd", 'rather', 'stay', 'at', 'home', 'than', 'to', 'stay', 'inside.'], ["Can't", 'you', 'ask', 'Tom', 'to', 'help?'], ['Tom', 'looks', 'very', 'ill.'], ['They', 'all', 'this.'], ['Do', 'you', 'want', 'me', 'to', 'buy', 'this', 'off?'], ["Don't", 'be', 'upset.'], ['Are', 'your', 'homework', 'by', 'yourself?'], ["That's", 'not', 'going', 'to', 'do', 'it.'], ['Christmas', 'is', 'a', 'great', 'singer.'], ['Do', 'you', 'take', 'the', 'date', 'for', 'dinner?'], ['That', 'seems', 'right.'], ['Can', 'you', 'give', 'me', 'a', 'discount?'], ['I', 'plan', 'to', 'call', 'up', 'all', 'night.'], ['He', 'leave', 'early.'], ['I', 'guess', 'I', "didn't", 'mean', 'to', 'you.'], ['Are', 'they', 'just', 'married?'], ["That's", 'not', 'weird.'], ["That's", 'not', 'my', 'style.'], ['I', 'need', 'to', 'keep', 'my', 'eyes', 'open.'], ['Sit', 'down.'], ['I', 'am', 'hungry', 'because', 'I', 'have', 'eaten', 'breakfast.'], ['Tom', 'is', 'in', 'a', 'way', 'to', 'school.'], ["Didn't", 'I', 'ask', 'you?'], ['The', 'unrest', 'lasted', 'three', 'seconds.'], ['Put', 'your', 'pajamas', 'and', 'go', 'to', 'bed.'], ['A', 'thousand', 'thousand', 'is', 'terrible.'], ['Tom', 'and', 'Mary', 'waited.'], ['I', 'had', 'some', 'failure', 'to', 'tell', 'on', 'the', 'way', 'of', 'chopping'], ['They', 'stopped', 'talking.'], ['The', 'team', 'was', 'as', 'lucky', 'that', 'I', 'was', 'expected.'], ['Tom', 'had', 'a', 'gun.'], ['How', 'much', 'did', 'you', 'pay', 'for', 'the', 'tickets?'], ['We', 'are', 'going', 'to', 'go', 'to', 'the', 'movies', 'every', 'day.'], ['I', 'think', "you're", 'right.'], ["You're", 'the', 'best', 'person', 'in', 'my', 'life.'], ['I', 'have', 'no', 'one', 'to', 'count', 'on', 'me.'], ['I', 'am', 'a', 'walk.'], ['Please', 'close', 'the', 'door', 'at', 'the', 'door.'], ['When', 'you', 'surf', 'the', 'web,', 'you', 'may', 'be', 'tracked', 'by', 'websites.'], ['Mary', 'is', 'she', 'and', 'she', 'opened', 'the', 'flowers.'], ['I', 'was', 'invited.'], ['We', 'hope', 'that', 'this', 'will', 'never', 'come.'], ['I', 'am', 'not', 'busy', 'on', 'the', 'line.'], ['They', 'gave', 'the', 'new', 'new', 'student.'], ['Why', 'did', 'you', 'come', 'so', 'soon?'], ['Why', "don't", 'you', 'take', 'something', 'for', 'me?'], ['I', 'wanted', 'to', 'talk', 'with', 'Tom.'], ['I', 'have', 'the', 'same', 'books', 'as', 'Tom', 'does.'], ['No', 'one', 'else', 'stole', 'the', 'money.'], ['I', 'was', 'forced', 'to', 'do', 'it.'], ['The', 'bathroom', 'is', 'clean.'], ['It', 'was', 'the', 'night.'], ['He', 'will', 'be', 'careful', 'next', 'week.'], ['I', 'am', 'a', 'foreigner.'], ['He', 'is', 'a', 'hard', 'way', 'to', 'write', 'to', 'the', 'most', 'difficult', 'student.'], ['We', 'gave', 'Tom', 'a', 'lot.'], ["I'm", 'the', 'teacher.'], ['Why', 'do', 'people', 'live', 'with', 'the', 'movies?'], ['They', 'have', 'no', 'natural', 'predators.'], ['I', 'have', 'a', 'arm', 'left', 'in', 'my', 'room.'], ['I', 'use', 'my', 'new', 'job', 'with', 'my', 'new', 'computer.'], ['Why', "don't", 'you', 'have', 'a', 'boyfriend?'], ['Why', "don't", 'you', 'keep', 'some', 'money?'], ['The', 'tree', 'went', 'on', 'the', 'church.'], ['The', 'pictures', 'of', 'the', 'car', 'was', 'absent', 'from', 'him', 'when', 'they', 'were', 'found.'], ['I', 'want', 'to', 'talk', 'to', 'you', 'about', 'this', 'report.'], ["Let's", 'go', 'to', 'the', 'restaurant', 'today?'], ['I', 'like', 'the', 'same', 'way', 'as', 'well', 'as', 'I', 'used', 'to.'], ['Where', 'do', 'you', 'get', 'your', 'ideas', 'for?'], ["Don't", 'tell', 'me', 'like', 'that.'], ['Have', 'you', 'ever', 'seen', 'a', 'story?'], ['I', "don't", 'want', 'to', 'live', 'in', 'Boston.'], ["Don't", 'forget', 'to', 'turn', 'off', 'the', 'end', 'of', 'the', 'next', 'house.'], ['Tom', 'is', 'walking', 'in', 'the', 'attic.'], ['Sorry,', 'I', 'was', 'busy.'], ["I'll", 'give', 'up.'], ["That's", 'my', 'horse.'], ['We', "can't", 'quit', 'now.'], ['He', 'is', 'writing', 'with', 'novels.'], ["We're", 'not', 'students.'], ['You', "don't", 'have', 'to', 'talk', 'so', 'loud.'], ['Please', 'sit', 'down', 'and', 'please.'], ['Tom', 'has', 'a', 'good', 'sense', 'of', 'humor.'], ['Is', 'Tom', 'all', 'right?'], ['Tom', "doesn't", 'know', 'anything.'], ['Going', 'the', 'fact', 'that', 'the', 'world', 'is', 'true.'], ['Are', 'you', 'sure', 'that', 'you', "don't", 'forgotten', 'anything?'], ["What's", 'your', 'biggest', 'fear?'], ['Pass', 'me', 'a', 'hard', 'day.'], ['Please', 'do', 'with', 'the', 'play', 'with', 'you.'], ['You', 'need', 'to', 'be', 'more', 'careful', 'now.'], ['She', 'gave', 'me', 'a', 'meaningful', 'look.'], ['What', 'have', 'you', 'made', 'up', 'with', 'them.'], ['How', 'long', 'do', 'they', 'have', 'to', 'stay', 'here?'], ['Tom', 'is', 'going', 'out', 'of', 'his', 'shoes.'], ['Promise', 'me', 'that', 'never', 'do', 'that', 'again.'], ['I', 'used', 'to', 'bring', 'a', 'walk', 'in', 'the', 'morning.'], ['Is', 'Tom', 'from', 'Boston?'], ['She', 'is', 'anxious', 'about', 'his', 'plans.'], ['She', 'forgot', 'that', 'she', 'had', 'forgotten', 'her', 'last', 'night.'], ['Tom', 'had', 'no', 'choice', 'but', 'to', 'do', 'what', 'had', 'had', 'to', 'do.'], ["What's", 'the', 'problem', 'with', 'your', 'problem?'], ['My', 'mother', 'made', 'me', 'pay', 'overtime.'], ['Tom', 'is', 'in', 'grave', 'danger.'], ['You', 'often', 'often', 'told', 'me', 'about', 'it.'], ['Are', 'you', 'getting', 'tired?'], ['Who', 'did', 'you', 'give', 'me', 'a', 'letter?'], ['In', 'the', 'food', 'the', 'dogs', 'are', 'all', 'the', 'damage', 'round.'], ['Why', 'did', 'you', 'want', 'to', 'leave?'], ["We're", 'still', 'alive.'], ["What's", 'it', 'was', 'it?'], ['There', 'are', 'only', 'three', 'boys', 'in', 'the', 'class.'], ['She', 'scolded', 'him.'], ['A', 'sheet', 'is', 'growing', 'on', 'a', 'number', 'of', 'paper', 'hand.'], ['Tom', 'knows', 'the', 'key', 'in', 'the', 'lock.'], ['I', 'heard', 'the', 'door', 'open.'], ['I', 'just', "didn't", 'know', 'how.'], ["He's", 'my', 'best', 'friend.'], ['I', 'did', 'it', 'for', 'cry.'], ['It', "doesn't", 'really', 'bother', 'you,', 'do', 'you?'], ['Are', 'you', 'excited?'], ['Is', 'it', 'going', 'to', 'go?'], ['I', "can't", 'go', 'to', 'the', 'police.'], ['Tom', 'wanted', 'to', 'play', 'chess.'], ['I', 'think', "they're", 'ready.'], ['Let', 'me', 'think', 'about', 'it.'], ['Why', 'are', 'you', 'always', 'so', 'aggressive?'], ['She', 'went', 'to', 'Italy', 'to', 'study', 'music.'], ['Have', 'you', 'asked', 'if', 'they', 'want', 'one?'], ['The', 'sisters', 'are', 'not', 'as', 'big', 'as', 'I', 'used', 'to', 'be.'], ['I', 'bet', "you're", 'talking', 'about', 'Tom.'], ['I', 'feel', 'really', 'stupid.'], ['Watch', 'the', 'safe.'], ['I', 'studied', 'Tom', 'for', 'a', 'long', 'time.'], ['He', 'was', 'too', 'busy', 'for', 'the', 'occasion.'], ['I', 'can', 'walk.'], ['I', 'forgot', 'his', 'phone', 'number.'], ["I'm", 'sorry,', 'but', "you're", 'wrong.'], ['I', 'am', 'thirty', 'dollars', 'in', 'my', 'wallet.'], ['The', 'earthquake', 'I', 'will', 'be', 'able', 'to', 'get', 'out', 'of', 'help', 'by.'], ['She', 'is', 'responsible', 'for', 'her', 'friends.'], ["I've", 'been', 'studying', 'for', 'years.'], ['This', 'week', 'I', 'made', 'a', 'week', 'ago.'], ['I', 'know', 'that', 'you', "don't", 'want', "what's", 'wrong', 'with', 'you.'], ['Have', 'you', 'already', 'made', 'a', 'list', 'of?'], ['I', 'have', 'a', 'walk.'], ['We', 'all', 'want', 'to', 'take', 'the', 'medicine.'], ['That', 'guy', 'is', 'a', 'masterpiece.'], ['I', 'want', 'them', 'alive.'], ['I', 'feel', 'kind', 'of', 'strangers.'], ['I', 'have', 'no', 'idea', 'how', 'this', 'works.'], ['You', "shouldn't", 'eat', 'that.'], ['It', 'was', 'much', 'more', 'difficult', 'than', 'we', 'initially', 'thought.'], ["Where's", 'the', 'soup.'], ['Tom', "doesn't", 'think', 'it', 'will', 'come', 'tomorrow.'], ['Was', 'there', 'a', 'time?'], ['They', 'stayed', 'in', 'a', 'small', 'hotel', 'in', 'a', 'hotel.'], ['I', 'made', 'a', 'promise.'], ['If', 'you', 'have', 'a', 'spouse', 'can', 'be', 'said', 'you', 'can', 'imagine', 'your', 'home.'], ["You're", 'being', 'prepared.'], ['The', 'dog', 'ran', 'after', 'all', 'day.'], ['She', 'took', 'me', 'by', 'the', 'hand.'], ['We', 'studied', 'the', 'bridge', 'when', 'we', 'could.'], ['The', 'intersection', 'where', 'happened', 'when', 'the', 'accident', 'happened', 'to', 'the', 'spot.'], ['Where', 'did', 'he', 'do', 'it?'], ["I'll", 'have', 'to', 'go', 'to', 'go.'], ['They', 'demanded', 'the', 'world', 'of', 'the', 'plan.'], ['I', 'got', 'injured', 'in', 'this.'], ['Would', 'you', 'like', 'another', 'glass', 'of', 'ice', 'tea?'], ["I'm", 'fed', 'up', 'with', 'English.'], ['You', 'should', 'see', 'the', 'photo', 'of', 'Tom.'], ['May', 'I', 'sit', 'next', 'to', 'you?'], ['They', 'did', 'it', 'for', 'a', 'couple', 'of', 'opportunity.'], ['Why', 'are', 'you', 'so', 'happy?'], ["You're", 'very', 'astute.'], ['This', 'is', 'the', 'basic', 'of', 'the', 'horses.'], ['I', 'told', 'Tom', 'that', 'I', 'say.'], ['Those', 'are', 'two', 'things.'], ['I', 'want', 'you', 'to', 'tell', 'me', 'everything', 'you', 'know', 'about', 'that.'], ['She', 'was', 'trying', 'to', 'stand', 'the', 'edge', 'of', 'the', 'beer', 'on', 'the', 'power', 'of', 'the', 'moon.', 'However,', 'she', 'used', 'to.'], ['I', 'think', "that's", 'all', 'to', 'you.'], ['Last', 'night,', 'I', 'saw', 'in', 'the', 'distance.'], ["You're", 'taller', 'than', 'me.'], ['A', 'dog', 'is', 'almost', 'a', 'huge', 'way.'], ['Where', 'is', 'it', 'going', 'on?'], ['He', "didn't", 'leave', 'his', 'joke.'], ['Something', 'is', 'going', 'to', 'have', 'a', 'crime.'], ['Now', "what's", 'the', 'list.'], ['Can', 'you', 'verify', 'this', 'up?'], ['No', 'matter', 'how', 'you', 'experience,', 'you', 'experience,', 'I', 'have', 'no', 'experience,', 'in', 'the', 'most', 'beautiful', 'girl', 'I', 'have', 'left', 'wine.'], ['I', "didn't", 'mean', 'to', 'eavesdrop', 'your', 'conversation.'], ['No', 'one', 'laughed.'], ['My', 'father', 'used', 'to', 'go', 'to', 'the', 'park', 'to', 'bed.'], ['He', 'wanted', 'to', 'know', 'as', 'much', 'as', 'he', 'used', 'to', 'be.'], ['May', 'I', 'borrow', 'your', 'borrow', 'borrow', 'to?'], ['He', 'kept', 'his', 'promise.'], ["Let's", 'go', 'to', 'a', 'local', 'restaurant.'], ['He', 'was', 'my', 'best', 'friend.'], ["That's", 'really', 'great!'], ['We', 'still', 'have', 'enough', 'time', 'to', 'discuss.'], ["Let's", 'talk', 'to', 'this', 'way', 'to', 'rain.'], ['Father', 'used', 'to', 'be', 'used', 'to', 'the', 'suspect', 'almost', 'three', 'people', 'in', 'the', 'medicine.'], ['Did', 'you', 'enjoy', 'that?'], ['Can', 'you', 'keep', 'a', 'secret?'], ['Send', 'me', 'a', 'bicycle.'], ['They', "don't", 'want', 'you', 'back.'], ['Please', "don't", 'die.'], ["He's", 'behind', 'me.'], ['He', 'stayed', 'at', 'the', 'beginning', 'of', 'life', 'in', 'a', 'hurry.'], ['This', 'house', 'is', 'at', 'home', 'on', 'Monday.'], ['We', 'made', 'a', 'deal.'], ['Thanks', 'for', 'the', 'pay', 'three', 'months', 'in', 'three', 'dollars.'], ['If', 'you', 'can', 'catch', 'your', 'letter', 'as', 'you', 'can', 'catch', 'the', 'train.'], ['I', 'need', 'to', 'stop.'], ["I'm", 'just', 'as', 'I', 'want', 'you', 'to', 'make', 'sure', 'I', 'am.'], ['I', "didn't", 'know', 'what', 'to', 'do', 'with', 'me.'], ['What', 'a', 'someone.'], ["We're", 'not', 'married', 'yet.'], ['Did', 'you', 'find', 'that?'], ["I'm", 'sorry', 'that', 'I', 'got', 'the', 'way', 'yesterday.'], ['How', 'do', 'I', 'carry', 'this', 'hat?'], ['Have', 'you', 'ever', 'told', 'me', 'that', 'you', 'have', 'a', 'girlfriend?'], ['They', 'stayed', 'in', 'the', 'room', 'with', 'me', 'during', 'the', 'night.'], ['The', 'doctor', 'told', 'me', 'not', 'to', 'eat.'], ['Your', "car's", 'left', 'a', 'car', 'driver.'], ['I', 'had', 'to', 'lend', 'him', 'some', 'money.'], ['This', 'is', 'mine,', "isn't", 'it?'], ['He', 'is', 'working', 'as', 'a', 'security', 'guard', 'at', 'the', 'future.'], ['Can', 'you', 'talk', 'about', 'me', 'with', 'me?'], ['More', 'with', 'the', 'two', 'of', 'the', 'company', 'is', 'hard', 'in', 'the', 'kitchen.'], ['He', 'was', 'impatient', 'with', 'the', 'result.'], ['Tom', 'is', 'talking', 'about', "Mary's", 'death.'], ["I'd", 'be', 'grateful', 'if', 'you', 'could', 'make', 'a', 'nice', 'time', 'when', 'you', 'have', 'a', 'look', 'at', 'the', 'weather.'], ['He', 'was', 'too', 'busy', 'to', 'go', 'to', 'the', 'car.'], ['Are', 'you', 'going', 'to', "Tom's", 'party?'], ['I', 'need', 'to', 'ask', 'who', 'I', 'want', 'to', 'know', 'this.'], ['I', 'wrote', 'down', 'his', 'phone', 'number', 'on', 'a', 'scrap', 'of', 'paper.'], ['I', 'had', 'not', 'been', 'sick', 'since', 'then.'], ["You're", 'big.'], ['I', 'want', 'to', 'do', 'this', 'as', 'long', 'as', 'it', 'can.'], ["I'm", 'not', 'at', 'all', 'tired.'], ['Tom', 'will', 'be', 'back', 'home', 'soon.'], ['She', 'was', 'the', 'boy', 'when', 'he', 'woke', 'up', 'the', 'door.'], ['They', 'left', 'me', 'shopping.'], ['I', 'let', 'the', 'cat', 'out', 'of', 'the', 'house.'], ["I'd", 'like', 'to', 'give', 'a', 'piece', 'of', 'fun', 'this', 'novel.'], ['I', 'cried', 'when', 'my', 'dog', 'died.'], ["Don't", 'say', 'a', 'word', 'of', 'my', 'word.'], ['Tom', 'grew', 'up', 'in', 'a', 'small', 'apartment'], ['The', 'President', 'is', 'to', 'himself', 'when', 'he', 'is', 'in', 'his', 'knees.'], ["I'll", 'be', 'happy', 'to', 'help', 'you.'], ['Tell', 'Tom', 'what', 'you', 'want', 'to', 'do.'], ["You're", 'the', 'wrong', 'person.'], ['I', 'want', 'to', 'see', 'a', 'see', 'one.'], ['Will', 'you', 'listen', 'to', 'me?'], ['Why', 'is', 'it', 'so', 'difficult?'], ['Brush', 'your', 'arm', 'before', 'the', 'bed.'], ['I', 'met', 'him', 'for', 'the', 'first', 'time', 'he', 'met', 'her.'], ['They', 'almost', 'almost', 'almost', 'all', 'on', 'time.'], ['Would', 'you', 'be', 'willing', 'to', 'share', 'your', 'code', 'with', 'me?'], ['He', 'was', 'afraid', 'of', 'the', 'dark.'], ["Don't", 'count', 'on', 'them.'], ['Whatever', 'you', 'do,', "don't", 'forget', 'that.'], ["You're", 'the', 'only', 'one', 'who', 'can', 'do', 'that.'], ['Did', 'Tom', 'have', 'a', 'ride?'], ['Where', 'can', 'I', 'have', 'a', 'job', 'for', "Valentine's", 'Day?'], ['You', 'know', 'nothing', 'about', 'it.'], ['I', 'felt', 'cheated.'], ["I'm", 'going', 'to', 'need', 'more', 'money.'], ['I', 'had', 'a', 'cold,', 'because', 'I', 'had', 'to', 'cut', 'the', 'store', 'yesterday.'], ['No', 'matter', 'how', 'you', 'try', 'to', 'use', 'the', 'way', 'you', 'tried', 'trying', 'to', 'use', 'the', 'way', 'you', 'still', 'trying', 'to', 'use', 'the', 'way', 'you', 'in.'], ["I've", 'never', 'told', 'anyone', 'that', 'my', 'father', 'is', 'in', 'prison.'], ['He', 'was', 'elected', 'his', 'talent.'], ['Do', 'you', 'want', 'Tom', 'to', 'know', 'why', 'they', 'are?'], ['Everyone', 'jumped', 'into', 'the', 'pool.'], ['Who', 'do', 'you', 'know', 'if', 'you', 'smoke?'], ['I', "can't", 'remember', 'the', 'movie', 'I', 'saw', 'you', 'as', 'often', 'as', 'I', 'saw', 'you.'], ['I', "don't", 'know', 'your', 'name.'], ['We', 'need', 'to', 'help', 'you', 'here.'], ['What', 'are', 'you', 'doing', 'here?'], ['He', 'is', 'going', 'to', 'be', 'prepared.'], ["They're", 'going', 'to', 'find', 'out.'], ['I', 'need', 'to', 'destroy', 'the', 'pain.'], ['I', 'was', 'late', 'for', 'school', 'yesterday.'], ['He', 'must', 'have', 'care', 'of', 'his', 'dog.'], ['I', "don't", 'feel', 'like', 'losing.'], ['I', 'will', 'leave', 'you', 'tomorrow.'], ["Don't", 'push', 'the', 'cream', 'on', 'the', 'heater.'], ['Go', 'get', 'some', 'clothes', 'on.'], ['How', 'can', 'you', 'be', 'sure', 'of', 'that?'], ['Are', 'you', 'very', 'sure', 'to', 'see', 'a', 'movie?'], ['I', 'ate', 'a', 'slice', 'of', 'watermelon.'], ['We', 'should', 'organize', 'a', 'party.'], ['The', 'cat', 'treated', 'out', 'the', 'cat', 'as', 'if', 'he', 'looked', 'hot.'], ['Loosen', 'up.'], ['While', 'and', 'the', 'sun', 'will', 'be', 'between', 'the', 'form', 'and', 'the', 'temperature', 'and', 'a', 'nurse.'], ['He', 'is', 'a', 'standing', 'cream', 'and', 'a', 'sharp', 'boy.'], ['We', 'should', 'use', 'the', 'end', 'of', 'this', 'night.'], ['What', 'did', 'you', 'eat', 'for', 'lunch', 'today?'], ['What', 'exactly', 'are', 'you', 'exactly?'], ['Do', 'you', 'need', 'to', 'be', 'back?'], ['In', 'the', 'worst', 'you', 'are', 'right.'], ['You', 'look', 'very', 'kind', 'of', 'yours.'], ['Tom', "didn't", 'even', 'know', 'who', 'he', 'was.'], ['I', 'owe', 'you', 'for', 'being', 'late.'], ['Could', 'you', 'take', 'me', 'by', 'bus?'], ['Perhaps', 'we', 'should', 'do', 'this', 'together.'], ['My', 'brother', 'is', 'on', 'his', 'job.'], ['Do', 'you', 'think', 'the', 'cat', 'is', 'wearing', 'your', 'dog', 'and', 'I', 'look', 'good', 'at?'], ["Someone's", 'talking.'], ['I', 'really', 'appreciate', 'your', 'coming.'], ['What', 'do', 'you', 'expect?'], ['I', 'tried', 'to', 'explain', 'it', 'when', 'I', "couldn't."], ['Are', 'you', 'sure', 'that', 'you', 'have', 'the', 'native', 'language', 'is', 'important?'], ['Who', 'forced', 'you', 'to', 'do', 'that?'], ['The', 'reporter', 'has', 'its', 'fruit.'], ['She', 'advised', 'him', 'to', 'keep', 'good', 'health.'], ['I', 'hate', 'to', 'see', 'you', 'so', 'far.'], ['She', "won't", 'be', 'there.'], ["Let's", 'get', 'here', 'a', 'day.'], ['Let', 'me', 'know', 'what', 'you', 'ask.'], ['I', 'forgot', 'your', 'number.'], ['I', 'thought', 'I', 'was', 'alone.'], ['I', "can't", 'believe', "I'm", 'going', 'to', 'be', 'here.'], ['Now', 'in', 'the', 'park', 'is', 'almost', 'a', 'day.'], ['His', 'son', 'is', 'a', 'genius.'], ['May', 'I', 'talk', 'to', 'you', 'in', 'private?'], ['Tom', 'made', 'his', 'best,', 'but', 'he', 'failed.'], ['I', "don't", 'know', 'what', 'it', 'meant.'], ['We', 'wonder', 'if', 'you', 'come', 'tonight.'], ["That's", 'not', 'the', 'best', 'of', 'the', 'question.'], ["They'll", 'kill', 'you.'], ['The', 'sky', 'is', 'the', 'why.'], ['Did', 'we', 'win?'], ['He', "doesn't", 'have', 'in', 'my', 'neighborhood.'], ['A', 'number', 'of', 'people', 'will', 'reach', 'them.'], ['I', 'feel', 'the', 'same', 'thing.'], ['Our', 'dog', 'has', 'advanced'], ['Are', 'there', 'some', 'hot', 'chocolate?'], ['His', 'bicycle', 'is', 'worth', 'the', 'job.'], ["What's", 'there', 'there?'], ['You', 'were', 'the', 'one', 'that', 'you', 'were', 'at', 'that', 'picture?'], ['I', 'had', 'to', 'have', 'arrived', 'here', 'out', 'here', 'for', 'the', 'first', 'time.'], ['The', 'earth', 'is', 'a', 'planet.'], ['The', 'dog', 'seems', 'to', 'be', 'sick.'], ['You', "won't", 'find', 'here.'], ["You're", 'very', 'clever.'], ['Could', 'you', 'please', 'remind', 'me', 'for', 'me', 'to', 'mail', 'this', 'on?'], ['Are', 'you', 'doing', 'anything', 'special', 'for', 'your', 'birthday?'], ['Take', 'it', 'on.'], ['That', 'explains', 'you.'], ['I', 'feel', 'bad', 'today.'], ['He', 'is', 'a', 'good', 'tie', 'of', 'toothpaste.'], ['I', 'have', 'no', 'books', 'to', 'read.'], ['My', 'friend', 'is', 'in', 'the', 'hospital', 'now.'], ['Are', 'you', 'happy', 'this', 'now?'], ['Do', 'you', 'need', 'money?'], ['You', 'can', 'trust', 'him.'], ['He', 'was', 'at', 'the', 'meeting.'], ['I', "don't", 'know', 'how', 'else', 'to', 'explain', 'it.'], ['I', 'never', 'wanted', 'to', 'hurt', 'you.'], ['Tom', 'walks', 'slowly.'], ['I', 'just', 'wanted', 'to', 'ask', 'you', 'a', 'few', 'questions.'], ['I', "can't", 'see', 'what', 'happened', 'yesterday.'], ["I'll", 'give', 'you', 'something', 'for', 'the', 'pain.'], ['You', "don't", 'look', 'like', 'a', 'millionaire.'], ['What', 'should', 'I', 'feed', 'my', 'dog?'], ['He', 'went', 'for', 'a', 'long', 'time', 'to', 'wait.'], ['He', 'regretted', 'not', 'done', 'that.'], ['Have', 'they', 'spotted', 'you?'], ['I', "can't", 'help', 'you', 'do', 'that.'], ['Did', 'he', 'ask', 'you', 'to', 'buy', 'it?'], ['Tom', 'and', 'Mary', 'go', 'to', 'church', 'on', 'church', 'together.'], ['I', 'saw', 'them', 'yesterday.'], ['He', 'runs', 'fast.'], ['Is', 'there', 'a', 'crime?'], ['I', 'pay', 'the', 'note.'], ["Don't", 'you', 'think', "it's", 'time', 'you', 'left?'], ['This', 'knife', 'is', 'walking', 'in', 'the', 'longest', 'next', 'to', 'the', 'river.'], ['I', 'made', 'the', 'same', 'thing.'], ["Let's", 'try', 'this.'], ['Tom', "didn't", 'make', 'a', 'good', 'time', 'at', 'the', 'party.'], ['I', 'remember', 'seeing', 'you', 'before.'], ['I', 'want', 'you', 'to', 'come', 'today.'], ['I', 'sat', 'down', 'and', 'put', 'the', 'three', 'of', 'my', 'back.'], ['Did', 'I', 'have', 'everything?'], ['I', 'can', 'handle', 'myself.'], ['I', 'can', 'solve', 'this', 'problem', 'by', 'myself.'], ['I', 'was', 'hiding', 'who', 'broke', 'the', 'sound', 'of', 'the', 'window.'], ['Do', 'you', 'want', 'us', 'to', 'come', 'in?'], ['It', 'is', 'always', 'ten', 'years,', 'but', 'that', 'you', 'still', 'died', 'too.'], ['Do', 'you', 'want', 'these', 'words?'], ['We', 'have', 'to', 'take', 'the', 'stairs.'], ['Give', 'me', 'a', 'wherever', 'you', 'know.'], ['Tom', 'woke', 'up', 'at', 'seven.'], ['How', 'long', 'have', 'you', 'had', 'a', 'letter', 'from', 'him?'], ['I', 'hate', 'coffee.'], ['You', "don't", 'have', 'to', 'talk', 'to', 'this.'], ['Tom', 'asked', 'me', 'to', 'follow', 'your', 'trip.'], ['I', 'thought', "you'd", 'be', 'grateful.'], ['We', 'had', 'a', 'long', 'time.'], ['Are', 'you', 'sure?'], ['What', 'do', 'you', 'think', 'the', 'world', 'are', 'you?'], ["Don't", 'tell', 'your', 'dad.'], ['We', 'really', 'did', 'well.'], ['They', 'sat', 'down', 'and', 'drank', 'wine.'], ['I', "don't", 'know', 'what', 'you', 'mean.'], ["Let's", 'eat', 'the', 'things', 'like', 'that.'], ['It', 'seems', 'I', 'got', 'fever.'], ['He', 'used', 'to', 'know', 'a', 'good', 'solution.'], ['Who', 'is', 'this', 'picture', 'of', 'crying?'], ['Since', 'there', 'was', 'a', 'picnic', 'and', 'we', 'kept', 'indoors.'], ['I', 'have', 'failed.'], ['The', 'noise', 'looked', 'up', 'all', 'night.'], ['I', 'am', 'sure', 'to', 'keep', 'my', 'decision.'], ['The', 'apple', 'is', 'a', 'relatively', 'habit', 'of', 'being', 'lazy.'], ["It's", 'no', 'use', 'arguing'], ["You've", 'done', 'all', 'the', 'good', 'job.'], ['The', 'children', 'are', 'afraid', 'to', 'kids.'], ['You', 'look', 'so', 'happy.'], ["I'm", 'not', 'the', 'right', 'job.'], ['The', 'girls', 'almost', 'almost', 'happened.'], ["I'm", 'not', 'sure', 'about', 'that.'], ['Tom', 'poured', 'Mary', 'have', 'put', 'in', 'the', 'garden.'], ['This', 'is', 'our', 'main', 'objective.'], ['You', 'know', 'what', "won't", 'happen,', "don't", 'you?'], ["We're", 'not', 'the', 'only', 'one', 'to', 'do', 'it.'], ['I', 'was', 'able', 'to', 'call', 'a', 'cab.'], ['Whose', 'office', 'is', 'this?'], ['Where', 'is', 'this', 'going', 'on?'], ['Tom', 'speaks', 'too', 'fast.'], ["It's", 'pretty', 'big.'], ['Are', 'you', 'almost', 'ready?'], ['This', 'book', 'has', 'blown.'], ["We're", 'very', 'different,', 'you', 'and', 'me.'], ["It's", 'why', 'you', 'just', 'to', 'give', 'up', 'with', 'your', 'advice.'], ['Do', 'you', 'have', 'any', 'part', 'where', 'you', 'have', 'a', 'date', 'where', 'you', 'are!'], ['No', 'one', 'likes', 'you.'], ['Let', 'me', 'be', 'here.'], ['He', 'returned', 'to', 'American', 'American', 'Embassy.'], ['She', 'was', 'taking', 'a', 'walk', 'in', 'a', 'walk.'], ['Accidents', 'happen.'], ["Don't", 'tell', 'me', 'what', 'I', 'know.'], ['Be', 'careful!'], ['I', "don't", 'really', 'remember.'], ['You', 'will', 'love', 'your', 'time', 'trying', 'to', 'convince', 'Tom.'], ["We'll", 'be', 'going.'], ['I', "didn't", 'realize', 'that', 'much.'], ['He', 'loves', 'me.'], ['Is', 'there', 'a', 'discount', 'student?'], ["We'll", 'get', 'it', 'back.'], ["You're", 'too', 'polite.'], ['I', 'want', 'to', 'go', 'out.'], ['We', "shouldn't", 'not', 'be', 'able', 'to', 'go', 'to', 'church', 'so', 'we', "shouldn't", 'go', 'to', 'waste.'], ['He', 'will', 'soon', 'almost', 'the', 'birthday', 'he', 'will', 'come', 'true.'], ["I'd", 'like', 'to', 'buy', 'a', 'washing', 'machine.'], ['Take', 'up', 'on.'], ['She', 'was', 'full', 'of', 'people', 'to', 'walk', 'in', 'the', 'weather.'], ['This', 'is', 'the', 'house', 'where', 'I', 'was', 'born.'], ['One', 'of', 'my', 'parents', 'asked', 'me', 'to', 'put', 'up', 'and', 'asked', 'my', 'father', 'and', 'asked'], ['I', "won't", 'smoke.'], ["I'm", 'not', 'going', 'to', 'ten', 'thousand', 'dollars.'], ['Tom', 'is', 'watching', 'the', 'news.'], ['His', 'bedroom', 'is', 'too', 'loud.'], ['What', 'part', 'of', 'Australia', 'do', 'you', 'come', 'from?'], ['He', 'finally', 'found', 'out', 'how', 'to', 'do', 'it.'], ['Tom', 'will', 'be', 'back', 'to', 'Boston', 'next', 'year.'], ['He', 'used', 'to', 'be', 'a', 'little', 'gift.'], ['I', 'have', 'information.'], ['He', 'stayed', 'home', 'all', 'day', 'instead', 'of', 'the', 'day', 'after', 'the', 'station.'], ['Look', 'out', 'of', 'the', 'cool', 'it', 'must', 'be', 'shot.'], ['Her', 'ideas', 'seem', 'to', 'know', 'her.'], ['He', 'has', 'to', 'test', 'tomorrow.'], ['I', 'had', 'to', 'get', 'the', 'evidence.'], ["We're", 'not', 'used', 'yet.'], ['None', 'of', 'them', 'wanted', 'to', 'talk.'], ['He', 'lived', 'a', 'happy', 'life.'], ["You're", 'loaded.'], ['I', "don't", 'remember', 'my', 'words.'], ['We', 'eat', 'raw', 'fish.'], ["That's", 'how', 'it', 'gets', 'up', 'for', 'the', 'results.'], ['Do', 'you', 'think', 'Tom', 'should', 'do', 'it?'], ['What', 'is', 'it', 'to', 'me.'], ['I', 'need', 'to', 'help', 'you.'], ['Her', 'room', 'is', 'on', 'the', 'coast.'], ["You're", 'very', 'brave.'], ['I', 'need', 'your', 'help.'], ['We', "can't", 'let', 'Tom', 'go', 'alone', 'alone.'], ['Did', 'Tom', 'tell', 'you', 'the', 'good', 'car?'], ['This', 'is', 'a', 'very', 'beautiful', 'woman.'], ['What', 'part', 'of', 'Australia', 'are', 'you', 'from?'], ['I', 'just', 'got', 'a', 'rescue', 'rest.'], ['Her', 'hair', 'was', 'full', 'of', 'large.'], ['We', "don't", 'want', 'to', 'get', 'out', 'of', 'your', 'here.'], ['My', 'sister', 'was', 'a', 'nice', 'woman.'], ['Your', 'sister', 'is', 'so', 'beautiful.'], ['Will', 'it', 'make', 'you', 'always', 'working', 'at', 'the', 'time', 'tomorrow?'], ["You'll", 'be', 'in', 'bed', 'in', 'a', 'couple', 'of', 'days.'], ['I', "can't", 'walk', 'any', 'further.'], ["I'm", 'sorry', 'that', 'I', "didn't", 'bother', 'you.'], ['I', 'saw', 'a', 'book', 'yesterday.'], ['A', 'customs', 'is', 'two', 'kilometers', 'from', 'an', 'hour', 'and', 'two', 'double'], ['What', 'is', 'the', 'most', 'popular', 'mountain', 'in', 'the', 'world?'], ['I', 'knew', 'you', 'were', 'here.'], ['I', 'found', 'it', 'figured', 'well.'], ['She', 'left', 'her', 'son', 'in', 'the', 'car.'], ['I', 'want', 'to', 'eat', 'fruit', 'sometime.'], ['Just', 'do', 'what', 'I', 'did.'], ["Let's", 'take', 'a', 'walk.'], ['If', 'Tom', "hadn't", 'done', 'the', 'party', 'he', 'never', 'go', 'to', 'the', 'party.'], ['I', 'want', 'to', 'go', 'there', 'once', 'again.'], ['I', 'had', 'a', 'difficult', 'year.'], ['The', 'fence', 'is', 'too', 'thin', 'and', 'can', 'be', 'fatal.', 'and', 'sometimes.'], ['I', 'doubt', 'if', 'he', 'can', 'prove', 'it.'], ["That's", 'not', 'enough', 'for', 'Tom.'], ['He', 'seldom', 'stays', 'home', 'on', 'Sundays.'], ['Some', 'right,', 'gave', 'the', 'water', 'running.'], ['Go', 'to', 'school.'], ['That', 'man', 'is', 'beautiful.'], ['Is', 'this', 'really', 'in', 'the', 'dark?'], ['If', 'you', "don't", 'know', 'what', 'it', 'is', 'this', 'problem', 'to', 'you.'], ['Do', 'you', 'think', 'that', 'I', 'am', 'doing', 'this', 'job?'], ['Were', 'you', 'awake', 'at', '2:30', 'last', 'night?'], ['I', 'hate', 'him', 'when', 'he', 'was', 'slow.'], ['How', 'long', 'did', 'you', 'stay', 'at', 'the', 'party?'], ['I', "can't", 'believe', 'that', 'you', 'really', 'want', 'to', 'buy', 'such', 'a', 'nice', 'price.'], ['The', 'boxes', 'are', 'missing.'], ["You're", 'on', 'the', 'wrong', 'ship.'], ['The', 'cats', 'are', 'looking', 'for', 'the', 'drinks.'], ['Tom', 'is', 'on', 'the', 'way', 'to', 'TV', 'on', 'TV.'], ["I'm", 'trying', 'to', 'understand', 'what', "you're", 'trying', 'to', 'worry', 'about', 'it.'], ['I', 'was', 'threatened.'], ['She', 'is', 'a', 'very', 'quiet', 'person.'], ["Let's", 'do', 'that', 'before', 'my', 'mind.'], ["I'm", 'going', 'to', 'take', 'a', 'bath', 'as', 'soon', 'as', 'a', 'house.'], ['They', 'camped', 'on', 'the', 'beach.'], ['I', 'thought', 'it', 'would', 'be', 'anything', 'to', 'do', 'anything', 'to', 'do', 'that', 'today.'], ["I'm", 'surprised.'], ["We're", 'all', 'very', 'worried', 'for', 'you.'], ['We', 'talked', 'in', 'thirty', 'minutes.'], ['That', "wasn't", 'funny.'], ['Would', 'you', 'mind', 'if', 'I', 'bought', 'a', 'break?'], ['Take', 'it.'], ["You're", 'not', 'responsible', 'for', 'that.'], ['The', 'more', 'people', 'think', "you'll", 'think', 'more', "you'll", 'think', "there'll"], ['I', 'was', 'involved', 'in', 'a', 'traffic', 'accident.'], ["That's", 'really', 'important.'], ['What', 'are', 'you', 'all', 'doing?'], ['We', 'had', 'no', 'choice', 'but', 'we', 'expected.'], ['He', 'said', 'he', 'wants', 'to', 'settle', 'down.'], ['The', 'problem', 'was', 'in', 'mind.'], ['See', 'for', 'all', 'the', 'cost.'], ['Language', 'is', 'twice', 'as', 'a', 'better', 'than', 'in', 'Japan.'], ['Were', 'there', 'any', 'damage?'], ['Apparently,', 'that', 'Tom', 'is', 'a', 'large', 'vase', 'in', 'your', 'father.'], ['She', 'acted', 'on', 'his', 'attention', 'to', 'get', 'up.'], ['I', 'have', 'a', 'lot', 'of', 'ability.'], ['It', 'was', 'his', 'best', 'time.'], ['This', 'movie', 'star', 'is', 'a', 'lot', 'of', 'stone.'], ["It's", 'the', 'only', 'way', 'to', 'stare', 'people.'], ['We', 'just', 'want', 'you', 'to', 'think', 'about', 'it.'], ['He', 'married', 'a', 'daughter', 'here.'], ['Can', 'you', 'loan', 'me', 'a', 'little', 'later?'], ['Give', 'me', 'some', 'time', 'to', 'think.'], ["I'm", 'pretty', 'sure', 'that', "he's", 'not', 'today.'], ['I', "don't", 'wash', 'my', 'hair', 'in', 'the', 'morning.'], ['The', 'situation', 'are', 'hopeless.'], ['He', 'was', 'hit', 'by', 'a', 'demonstration.'], ["Don't", 'give', 'me', 'a', 'shot.'], ['What', 'do', 'you', 'want', 'to', 'go?'], ['I', 'was', 'really', 'impressed.'], ["Let's", 'begin', 'and', 'get', 'some', 'other', 'now.'], ['I', "don't", 'feel', 'like', 'taking', 'a', 'little', 'relieved.'], ['Did', 'someone', 'live', 'a', 'little', 'here?'], ['Do', 'you', 'feel', 'like', 'a', 'drink?'], ['I', 'need', 'a', 'new', 'bicycle.'], ['It', 'is', 'certain', 'that', 'you', 'are', 'wrong.'], ['Do', 'you', 'know', 'what', 'this', 'is?'], ['I', 'must', 'see', 'to', 'see', 'it.'], ['She', 'did', 'it', 'on', 'purpose.'], ['I', 'think', 'Tom', 'wants', 'something', 'to', 'eat.'], ["I'm", 'trying', 'to', 'stop', 'Tom.'], ['It', 'is', 'part', 'of', 'the', 'water.'], ['I', 'go', 'to', 'the', 'movies', 'once', 'a', 'month.'], ['He', 'pushed', 'the', 'door', 'at', 'the', 'ceiling.'], ['This', 'place', 'is', 'perfect.'], ['Pass', 'me', 'the', 'magazine.'], ['You', "don't", 'need', 'a', 'look', 'at', 'this', 'week.'], ["I'm", 'not', 'surprised', 'to', 'hear', 'you.'], ["There's", 'a', 'problem.'], ['Tom', 'seems', 'to', 'be', 'careful', 'of', 'being', 'a', 'hard', 'time.'], ['Is', 'that', 'all', 'they', 'do', 'that?'], ['Do', 'you', 'really', 'want', 'this', 'information', 'just', 'to', 'get', 'it?'], ['Well,', 'do', 'you', 'think', 'it', 'was', 'it?'], ["Don't", 'kill', 'the', 'point.'], ['I', "don't", 'even', 'know', 'how.'], ['Whether', 'we', 'appreciate', 'it,', 'likely', 'you', 'do', 'or', 'that.'], ['I', "can't", 'believe', 'I', 'just', 'told', 'you', 'to', 'help', 'you.'], ['Maybe', 'I', 'go', 'to', 'the', 'station.'], ['I', 'have', 'a', 'family', 'and', 'I', 'love', 'my', 'friends.'], ['What', 'does', 'it', 'matter?'], ['I', 'brought', 'these', 'gifts', 'for', 'you.'], ['I', 'like', 'cats,', 'kilos.'], ['He', 'is', 'a', 'very', 'awkward.'], ['I', "don't", 'believe', 'it', 'either.'], ['Tom', 'might', 'come', 'tomorrow.'], ['I', 'baked', 'it', 'for', 'you.'], ['The', 'store', "isn't", 'open', 'today.'], ['We', 'had', 'fun', 'last', 'night.'], ['Japanese', 'people', 'are', 'learning', 'to', 'read.'], ['He', 'knows', 'too', 'much.'], ['French', 'French', 'French', 'is', 'really', 'well', 'than', 'Mary.'], ['Reading', 'books', 'is', 'important.'], ['The', 'fish', 'is', 'in', 'front', 'of', 'the', 'United', 'States.'], ['You', "don't", 'live', 'in', 'court.'], ['Could', 'you', 'please', 'tell', 'me', 'again', 'what', 'school', 'is', 'a', 'school', 'about?'], ['I', 'was', 'almost', 'a', 'little', 'perfect.'], ['Is', 'there', 'something', 'I', 'could', 'do?'], ['Tom', "doesn't", 'like', 'the', 'rules.'], ['I', 'am', 'in', 'a', 'little', 'cities.'], ["We're", 'tired.'], ["I'm", 'talking.'], ["I'm", 'glad', 'you', 'brought', 'that', 'up.'], ["You're", 'a', 'man', 'of', 'mean.'], ['Tom', 'is', 'young', 'and', 'fat.'], ['He', 'may', 'have', 'been', 'a', 'little', 'time', 'in', 'the', 'country.'], ['I', 'think', "it's", 'time', 'for', 'me', 'to', 'call', 'her', 'idea.'], ["I'll", 'help', 'you', 'help.'], ["You've", 'got', 'a', 'lot', 'of', 'leg.'], ["It's", 'almost', 'impossible', 'to', 'believe', 'it.'], ["I'm", 'beginning', 'to', 'be', 'a', 'teacher?'], ['What', 'is', 'your', 'father?'], ['Mary', 'had', 'a', 'fire', 'among', 'the', 'movie.'], ['Start', 'reading', 'where', 'you', 'left', 'off.'], ['I', 'love', 'it', 'cold.'], ["You're", 'so', 'beautiful', 'in', 'that', 'dress.'], ['He', 'was', 'punished', 'for', 'having', 'lied', 'to', 'her.'], ['Tom', 'and', 'Mary', 'both', 'snickered.'], ['Tom', 'likes', 'animals.'], ['Tom', 'likes', 'to', 'wear', 'some', 'jokes.'], ['Tom', "doesn't", 'believe', 'what', 'Mary', 'says.'], ['All', 'of', 'them', 'are', 'dead.'], ['Do', 'you', 'think', "I'm", 'ugly?'], ['I', 'just', "don't", 'want', 'you', 'to', 'get', 'upset.'], ['I', "don't", 'know', 'which', 'of', 'you', 'is', 'older.'], ['I', 'have', 'a', 'list', 'of', 'to-do', 'list', 'of', 'to-do'], ["We're", 'just', 'here,', "isn't", 'it?'], ["There's", 'no', 'reason', 'what', 'to', 'say.'], ['I', 'have', 'a', 'lot', 'of', 'crime', 'for', 'my', 'weight', 'while', "I'm", 'a', 'lot', 'of', 'work.'], ['After', 'the', 'streets', 'they', 'have', 'to', 'cut', 'the', 'taxes.'], ['If', "there's", 'anything', 'I', 'can', 'do', 'anything', 'you', 'can', 'trust', 'me', 'now.'], ['I', 'am', 'looking', 'forward', 'to', 'touch', 'with', 'you', 'like', 'it.'], ['I', 'find', 'the', 'two.'], ['The', 'lake', 'is', 'tall.'], ['When', 'did', 'you', 'start', 'two', 'dating?'], ['I', "couldn't", 'have', 'found', 'it.'], ['He', 'invited', 'to', 'help.'], ['He', 'played', 'the', 'piano', 'and', 'the', 'eggs.'], ['I', "can't", 'wait', 'for', 'you.'], ['I', "can't", 'imagine', 'someone', 'like', 'this.'], ["I've", 'never', 'hit', 'you.'], ['Would', 'you', 'help', 'me', 'a', 'minute?'], ['It', 'is', 'true', 'for', 'its', 'gold.'], ['Tom', 'knows', 'exactly', 'what', 'Mary', 'is.'], ['I', 'have', 'to', 'take', 'care', 'of', 'this', 'cake.'], ['She', 'waited', 'for', 'you', 'two', 'hours.'], ['He', 'is', 'big', 'problems.'], ['I', 'hope', 'we', "can't", 'hear', 'you.'], ['Did', 'you', 'do', 'this', 'all', 'by', 'yourself?'], ['Brush', 'your', 'hands', 'before', 'dark.'], ["It's", 'going', 'to', 'be', 'a', 'long', 'time.'], ['He', 'left', 'his', 'keys', 'in', 'the', 'car.'], ['Please', 'let', 'me', 'know', 'how', 'to', 'do', 'it.'], ['I', 'want', 'to', 'be', 'left', 'by', 'myself.'], ['You', 'made', 'a', 'fool', 'of', 'me.'], ['My', 'mother', 'has', 'come', 'in', 'my', 'room.'], ['Tom', 'broke', 'it.'], ['Why', 'do', 'you', 'want', 'to', 'do', 'things', 'the', 'way', 'you', 'always', 'do?'], ['I', 'have', 'problems', 'problems.'], ['Please', 'let', 'me', 'write', 'my', 'bills', 'again.'], ['Do', 'you', 'really', 'love', 'that', 'again?'], ['The', 'soldiers', 'are', 'trying', 'to', 'change', 'their', 'full', 'of', 'scenery.'], ['She', 'closed', 'his', 'eyes.'], ['You', "don't", 'seem', 'so', 'sure.'], ['What', 'were', 'you', 'wearing', 'your', 'holiday?'], ["We'll", 'play', 'the', 'weekend.'], ['She', 'went', 'to', 'bed.'], ['I', 'was', 'looking', 'for', 'a', 'place', 'to', 'live.'], ['They', 'are', 'the', 'last', 'week', 'I', 'bought', 'last', 'week.'], ['Is', 'this', 'all', 'we', 'need?'], ['When', 'will', 'you', 'be', 'free?'], ['I', 'hope', "you're", 'not', 'alone.'], ['I', 'feel', 'like', 'I', 'am', 'thirty', 'years', 'old.'], ['Their', 'behavior', 'can', 'find', 'out', 'loud.'], ['Tom', "doesn't", 'know', 'how', 'to', 'explain', 'it.'], ['I', 'study', 'French.'], ['Do', 'you', 'have', 'any', 'sisters', 'and', 'sisters?'], ["It's", 'a', 'stupid', 'piece', 'of', 'cake.'], ['This', 'camera', 'is', 'the', 'last', 'year', 'of', 'school.'], ["Let's", 'split', 'a', 'price', 'of', 'modern', 'houses.'], ['Are', 'you', 'here', 'alone?'], ['Three', 'of', 'people', 'are', 'still', 'missing.'], ['She', 'has', 'the', 'same', 'age', 'at', 'the', 'same', 'age', 'as', 'I', 'met', 'her.'], ['I', "don't", 'know', 'where', 'it', 'came', 'from.'], ['We', 'work', 'every', 'day', 'except', 'Sunday.'], ['The', 'article', 'was', 'written', 'in', 'Russian.'], ['Catch', 'the', 'spot.'], ['Tom', 'is', 'having', 'one', 'of', 'them.'], ['Am', 'I', 'kind', 'of', 'bad?'], ['Tom', 'put', 'a', 'dog', 'wearing', 'his', 'dog.'], ['Ask', 'it.'], ['My', 'mother', 'almost', 'almost', 'almost', 'sad.'], ['He', 'made', 'up', 'a', 'business.'], ['I', "can't", 'find', 'out', 'who', 'kept', 'doing', 'that.'], ['I', 'forgot', 'to', 'see', 'their', 'decision.'], ['This', 'is', 'the', 'village', 'where', 'he', 'was', 'born.'], ["I'm", 'going', 'to', 'be', 'ready', 'for', 'that.'], ['When', 'I', 'go', 'to', 'the', 'habit', 'of', 'the', 'habit', 'of', 'studying', 'every', 'time', 'I', 'used', 'to', 'like', 'you.'], ['I', 'usually', 'put', 'my', 'clothes', 'in', 'my', 'clothes.'], ['Take', 'it', 'back', 'to', 'them.'], ['Do', 'you', 'understand', 'what', 'I', 'mean?'], ['I', "haven't", 'eaten', 'since', 'since', 'yesterday.'], ['I', "don't", 'need', 'to', 'thank', 'you.'], ['Do', 'you', 'want', 'me', 'to', 'repeat', 'the', 'question?'], ['Tom', 'has', 'been', 'secretly', 'in', 'a', 'beautiful', 'girl.'], ['A', 'neighbor', 'was', 'covered', 'with', 'his', 'pocket.'], ['Do', 'you', 'want', 'to', 'do', 'it?'], ['They', 'were', 'invited', 'to', 'their', 'crimes.'], ['Do', 'you', 'have', 'any', 'brothers?'], ['Did', 'you', 'have', 'your', 'mind?'], ['Have', 'you', 'got', 'up', 'to', 'Australia?'], ['Tom', 'and', 'Mary', 'are', 'the', 'only', 'child.'], ["I'm", 'going', 'to', 'wait', 'in', 'the', 'car.'], ['Tom', 'plays', 'the', 'bass', 'guitar.'], ["They're", 'looking', 'for', 'the', 'lights.'], ['I', 'feel', 'kind', 'of', 'tired.'], ['You', "can't", 'do', 'two', 'things', 'at', 'once.'], ['We', 'have', 'plenty', 'of', 'time.'], ["Don't", 'be', 'scared', 'to', 'meet', 'new', 'people.'], ['I', 'usually', "don't", 'like', 'that.'], ["It's", 'not', 'a', 'sentence.'], ['I', "can't", 'believe', 'this', 'is', 'happening.'], ['After', 'dinner,', 'I', 'want', 'to', 'be', 'back', 'to', 'this', 'time', 'I', 'get', 'going.'], ['This', 'chair', 'is', 'overweight.'], ["He's", 'against', 'you.'], ["You're", 'taller', 'than', 'me.'], ["Here's", 'my', 'chance.'], ['How', 'I', 'am', 'I', 'wrong?'], ['They', 'are', 'about', 'to', 'discuss', 'the', 'problem.'], ['It', 'was', 'a', 'college', 'for', 'the', 'company', 'in', 'the', 'office', 'of', 'the', 'year.'], ['The', 'girls', 'are', 'crazy.'], ['This', 'word', 'has', 'two', 'meanings.'], ['These', 'things', 'are', 'very', 'different', 'from', 'you.'], ['I', 'want', 'you', 'to', 'come', 'back.'], ["You've", 'changed', 'since', 'I', 'saw', 'you', 'last', 'year.'], ['My', 'dream', 'is', 'to', 'sleep.'], ['It', 'was', 'clear', 'of', 'him', 'to', 'find', 'out', 'of', 'the', 'committee.'], ['Boys', 'are', 'girls.'], ["I'm", 'and', 'you', 'are', 'mine.'], ['The', 'customer', 'will', 'be', 'replaced.'], ['I', 'want', 'to', 'be', 'certain', 'you', 'are', 'who', 'you', 'say', 'you', 'are.'], ['Tom', 'is', 'looking', 'for', 'his', 'wounds.'], ['Tom', 'is', 'mine,', "isn't", 'he?'], ['No', 'one', 'can', 'be', 'the', 'first', 'to', 'be', 'in', 'the', 'pool.'], ['I', "didn't", 'have', 'time', 'to', 'eat.'], ['Some', 'roads', 'have', 'arrived.'], ['Can', 'you', 'still', 'remember', 'where', 'we', 'first', 'met?'], ['You', 'heard', 'your', 'mother.'], ['This', 'is', 'all', 'nonsense.'], ['Tom,', 'I', "don't", 'think', 'anything', 'else.'], ['I', 'never', 'had', 'a', 'different', 'movie', 'before.'], ["I'd", 'rather', 'be', 'able', 'to', 'keep', 'my', 'dog', 'before', 'much.'], ['She', 'advised', 'him', 'to', 'cut', 'up', 'with', 'him.'], ['Are', 'you', 'sure', 'you', "don't", 'know', 'why?'], ['You', "haven't", 'seen', 'Tom', 'yesterday,', "didn't", 'you?'], ['Tom', 'had', 'to', 'make', 'a', 'fire.'], ["I'd", 'like', 'you', 'to', 'work', 'better', 'for', 'me.'], ['Are', 'you', 'saying', 'you', "don't", 'want', 'me', 'to', 'be', 'a', 'teacher?'], ['May', 'I', 'do', 'it?'], ['I', 'wish', 'that', 'that', 'happened.'], ['I', 'saw', 'tears', 'in', 'his', 'eyes.'], ["I'm", 'jealous', 'of', 'you.'], ['Tom', 'asked', 'Mary', 'some', 'questions,', "didn't", 'want', 'to', 'answer.'], ['Tom', 'neither', 'French', 'nor', 'English.'], ['The', 'company', 'passed', 'past', 'ten', 'dollars', 'in', 'the', 'past', 'ten', 'years.'], ['I', 'hope', 'that', 'everyone', 'is', 'happy.'], ["I'd", 'never', 'seen', 'such', 'a', 'thing.'], ['Tom', 'died', 'in', 'Autralia', 'in', 'Autralia', 'in', '2013.'], ['I', 'got', 'fined.'], ['She', 'looked', 'at', 'me', 'and', 'laugh.'], ['Tom', 'needs', 'to', 'do', 'something.'], ["Don't", 'tell', 'anybody.'], ['I', 'want', 'you', 'to', 'leave', 'me', 'alone.'], ['Of', 'course!'], ['That', 'sounds', 'very', 'interesting.'], ['They', 'had', 'a', 'spat', 'yesterday.'], ['Do', 'you', 'have', 'any', 'idea', 'who', 'would', 'do', 'this', 'kind', 'of', 'thing.'], ['I', 'have', 'a', 'lot', 'of', 'books', 'to', 'do.'], ['He', 'was', 'walking', 'on', 'the', 'head', 'of', 'being', 'lazy.'], ['She', 'is', 'kind', 'to', 'strangers.'], ['A', 'fish', 'of', 'fish', 'in', 'the', 'class', 'green.'], ['Tom', "doesn't", 'want', 'to', 'be', 'in', 'Australia', 'for', 'me?'], ['They', "don't", 'know', 'yet.'], ['We', "don't", 'know', 'a', 'tough', 'wind', 'at', 'the', 'other', 'day.'], ['Do', 'you', 'love', 'your', 'mother?'], ['He', 'was', 'courageous.'], ['We', "didn't", 'need', 'to', 'hurry.'], ['Are', 'you', 'ready?'], ['Stop', 'crying', 'like', 'a', 'girl.'], ['They', 'knew', 'exactly', 'how', 'much', 'the', 'risk', "they'd", 'be', 'taking.'], ['It', 'seems', 'like', 'a', 'nice', 'job.'], ['You', 'look', 'like', 'a', 'stapler', 'of', 'water.'], ['Have', 'you', 'already', 'had', 'a', 'serious', 'illness?'], ['What', 'do', 'you', 'think', 'of', 'that?'], ['How', 'can', 'I', 'prove', 'it?'], ['My', 'family', 'were', 'a', 'lot', 'of', 'stamps.'], ['Call', 'me', 'if', 'something', 'happened.'], ['I', "didn't", 'have', 'enough', 'money', 'to', 'have', 'enough', 'money', 'to', 'buy', 'it', 'in', 'the', 'bag.'], ['He', 'made', 'up', 'smoking', 'last', 'year.'], ['Tom', 'said', 'you', 'were', 'going', 'to', 'pay', 'for', 'the', 'lunch.'], ['Do', 'you', 'remember', 'anything', 'else?'], ['Everybody', 'could', 'speak', 'English', 'so', 'he', 'could', 'study.'], ["I'm", 'your', 'best', 'friend.'], ['How', 'good', 'are', 'you?'], ["I'd", 'like', 'to', 'see', 'you', 'in', 'my', 'office.'], ['I', 'just', 'wanted', 'to', 'remember.'], ['Are', 'you', 'a', 'criminal?'], ['The', 'airplane', 'will', 'get', 'up', 'from', 'New', 'York.'], ['I', 'knew', 'Tom', 'has', 'lived', 'in', 'Boston.'], ["I'll", 'keep', 'it', 'out.'], ['I', 'began', 'to', 'come.'], ['According', 'to', 'this', 'application', 'is', 'not', 'an', 'urgent', 'plan', 'that', 'it', 'would', 'be', 'an', 'expensive', 'website.'], ["I'm", 'looking', 'forward', 'to', 'seeing', 'you', 'again.'], ["I'll", 'go', 'with', 'you.'], ["Don't", 'push', 'this', 'magazine.'], ['When', 'you', 'read', 'the', 'book,', "I'd", 'like', 'to', 'read', 'this', 'report.'], ['Strictly', 'speaking,', 'almost', 'not', 'used', 'to', 'waste.'], ['You', "can't", 'tell', 'anyone', 'about', 'that.'], ['Her', 'eyes', 'are', 'full', 'of', 'eyes.'], ['I', 'think', 'Tom', 'insisted', 'in', 'Boston', 'for', 'the', 'concert.'], ['A', 'swarm', 'of', 'the', 'crime', 'badly', 'to', 'the', 'heavy', 'crime', 'to', 'walk', 'a', 'walk.'], ['Look', 'at', 'the', 'next', 'one.'], ["Don't", 'do', 'it', 'personally.'], ['How', 'do', 'you', 'know', 'what', 'I', 'said?'], ['Do', 'do', 'it', 'really', 'matter?'], ['I', "don't", 'know', 'where', 'I', 'got', 'it.'], ['I', 'live', 'across', 'the', 'shop', 'I', 'used', 'to', 'live', 'on', 'the', 'beach.'], ['He', 'is', 'walking', 'in', 'his', 'room.'], ['She', 'is', 'always', 'complaining', 'about', 'everything', 'he', 'said.'], ['Tom', 'crossed', 'the', 'street.'], ['How', 'old', 'were', 'you', 'when', 'you', 'left', 'learning', 'French?'], ['I', "won't", 'say', 'anything.'], ['Tom', 'explained', 'the', 'reason', 'why', 'he', 'is.'], ['I', 'hope', 'you', 'have', 'a', 'good', 'lawyer.'], ['They', 'announced', 'the', 'truth', 'serum.'], ['I', 'promise', 'you.'], ['This', 'job', 'is', 'made', 'of', 'my', 'hand.'], ['Can', 'you', 'wash', 'this', 'river?'], ['You', 'should', 'agree', 'with', 'your', 'dirty', 'ship', 'and', 'put', 'it', 'with', 'your', 'grandparents.'], ['Everyone', 'is', 'talking', 'about', 'his', 'family.'], ['Do', 'you', 'want', 'to', 'know', 'where', 'you', 'are?'], ["I'd", 'like', 'to', 'get', 'something', 'from', 'now', 'on.'], ['Come', 'in.'], ["Don't", 'do', 'anything', 'you', 'wish.'], ['I', 'want', 'to', 'talk', 'to', 'you', 'about', 'this', 'report.'], ['I', "won't", 'tell', 'you', 'why', 'I', 'did', 'that.'], ['Did', 'you', 'enjoy', 'yourself', 'here?'], ['We', 'should', 'try', 'that.'], ['We', 'danced', 'with', 'all', 'the', 'whole', 'night.'], ['I', 'want', 'to', 'know', 'how', 'to', 'know', 'how', 'to', 'know', 'why.'], ['No', 'matter', 'what', 'you', "don't", 'think', 'about', 'it.'], ['What', 'were', 'you', 'trying', 'to', 'say?'], ['You', 'should', 'use', 'of', 'your', 'business.'], ['Iceland', 'used', 'to', 'Denmark.'], ['You', 'should', 'use', 'some', 'sleep.'], ['How', 'can', 'you', 'be', 'so', 'optimistic?'], ['This', 'is', 'a', 'wonderful', 'low', 'business.'], ['Tom', 'is', 'what', 'he', 'really', 'is', 'in', 'the', 'point.'], ["We're", 'going', 'to', 'make', 'up', 'for', 'you', 'as', 'you', 'like.'], ['Few', 'people', 'are', 'trying', 'to', 'lose', 'his', 'comment.'], ["Don't", 'do', 'it', 'anymore.'], ['Our', 'success', 'was', 'lost', 'due', 'to', 'luck.'], ['Go', 'to', 'the', 'park.'], ['This', 'is', 'the', 'oldest', 'one', 'is', 'the', 'one', 'to', 'do', 'it?'], ['If', 'you', 'want', 'me', 'to', 'do', 'anything', 'you', 'want', 'to', 'ask.'], ['Is', 'there', 'another', 'solution.'], ['I', 'want', 'to', 'kiss', 'you.'], ['A', 'little', 'baby', 'is', 'trying', 'to', 'keep', 'you', 'a', 'small', 'breakfast.'], ["It's", 'his', 'right', 'now.'], ['We', 'went', 'to', 'the', 'same', 'bed.'], ['Our', 'team', 'is', 'very', 'good', 'on', 'tight.'], ['Stay', 'in', 'fun.'], ['The', 'red', 'friend', 'of', 'red', 'is', 'red.'], ['You', 'will', 'let', 'me', 'go', 'to', 'the', 'office', 'by', 'bus?'], ["I've", 'never', 'asked', 'you.'], ['He', 'is', 'playing', 'with', 'my', 'cat.'], ["I'd", 'like', 'to', 'discuss', 'our', 'work', 'for', 'our', 'work', 'for', 'our', 'company.'], ['Tom', 'looks', 'suspicious.'], ['I', "don't", 'like', 'it', 'feel', 'helpless.'], ['Please', 'be', 'off', 'the', 'other', 'results', 'so', 'we', 'want.'], ['He', 'can', 'pull', 'the', 'problem.'], ['I', "don't", 'want', 'Tom', 'to', 'help', 'you.'], ['Tom', 'turned', 'the', 'machine.'], ['Have', 'another', 'drink.'], ['Avoid', 'your', 'health.'], ['Wait', 'for', 'it!'], ['I', 'have', 'a', 'few', 'arm', 'where', 'you', 'said', 'to', 'me.'], ["I'm", 'going', 'to', 'take', 'my', 'car.'], ["I'm", 'trying', 'to', 'do', 'my', 'best.'], ['He', 'asked', 'my', 'mother.'], ['Do', 'you', 'still', 'want', 'to', 'do', 'this?'], ['She', 'cried', 'but', 'he', "didn't", 'know', 'him,', 'but', 'he', 'broke', 'her.'], ['My', 'husband', 'is', 'about', 'something', 'easier.'], ['Tom', 'was', 'surprised', 'by', "Mary's", 'death.'], ['The', 'difficult.', 'was', 'difficult.'], ['Do', 'you', 'think', 'I', 'want', 'to', 'die?'], ['How', 'big', 'it', 'on.'], ['Do', 'you', 'come', 'here', 'a', 'lot?'], ['I', 'tried', 'my', 'duty.'], ['We', 'have', 'a', 'good', 'taste', 'after', 'medieval'], ['Do', 'you', 'both', 'want', 'us', 'to', 'do', 'all', 'the', 'us?'], ['Did', 'you', 'do', 'your', 'job?'], ['We', 'really', "didn't", 'hear', 'anything', 'to', 'lose.'], ['I', "don't", 'want', 'you', 'to', 'be', 'upset.'], ["It's", 'too', 'hard.'], ['Despite', 'all', 'of', 'people', 'in', 'big', 'trouble.'], ["That's", 'not', 'exactly', 'what', 'I', 'said.'], ["I'll", 'always', 'remember', 'you.'], ['Will', 'you', 'pass', 'me', 'up', 'tomorrow', 'past', 'tomorrow?'], ['You', 'must', 'leave', 'this', 'place', 'at', 'once.'], ['The', 'better', 'is', 'still', 'come.'], ['I', 'think', "it's", 'a', 'little', 'dizzy.'], ['Does', 'that', 'mean', 'that?'], ['I', "can't", 'wait', 'for', 'such', 'a', 'long', 'time.'], ['Tom', "didn't", 'believe', 'it.'], ['The', 'Cold', 'responsible', 'was', 'a', 'cold', 'day', 'for', 'ten', 'years', 'for', 'the', 'year', 'had', 'had', 'a', 'cold', 'day.'], ['I', 'share', 'this', 'room', 'with', 'my', 'sister.'], ["I'll", 'tell', 'you', "what's", 'wrong.'], ['Tom', 'called', 'that', 'he', 'called', 'him', 'to', 'be', 'late.'], ['Practice', 'is', 'the', 'best', 'language', 'of', 'good.'], ['I', "can't", 'do', 'this', 'today.'], ['I', "didn't", 'know', 'you', 'had', 'Tom', 'told', 'us', 'about', 'us.'], ["You're", 'considerate.'], ['He', 'is', 'to', 'charge', 'to', 'our', 'expectations.'], ['The', 'apple', 'is', 'red.'], ['I', "didn't", 'have', 'to', 'do', 'this', 'without', 'you.'], ['I', 'know', "you're", 'in', 'love', 'with', 'me.'], ["That's", 'not', 'so', 'nice.'], ['Nothing', 'is', 'out.'], ['His', 'older', 'sister', 'is', 'more', 'than', 'the', 'best', 'older', 'than', 'my', 'father.'], ['Are', 'you', 'sure', 'you', 'want', 'to', 'throw', 'that', 'away?'], ["I'm", 'glad', 'I', 'can', 'help', 'you.'], ["We're", 'all', 'fired.'], ['Who', 'is', 'it', 'worth', 'you?'], ['She', 'returned', 'the', 'book', 'to', 'the', 'library.'], ["I'm", 'going', 'to', 'sleep', 'now.'], ["We're", 'afraid', 'to', 'be', 'afraid', 'of', 'the', 'future.'], ['Tom', 'had', 'a', 'strange', 'voice.'], ["I'd", 'like', 'to', 'kiss', 'you.'], ['I', 'got', 'up', 'earlier', 'than', 'usual', 'the', 'first', 'train.'], ['I', 'never', 'really', 'thought', 'you', 'had', 'that.'], ["Where's", 'the', 'remote?'], ['A', 'customs', 'of', 'people', 'will', 'have', 'paid', 'the', 'ability', 'to', 'cut', 'along', 'with', 'oil.'], ['Tom', 'plays', 'his', 'son', 'with', 'his', 'son.'], ['He', 'wrote', 'to', 'me.'], ['I', 'feel', 'a', 'little', 'awkward.'], ['The', "aren't", "aren't", 'allowed', 'to', 'eat', 'on', 'it.'], ['It', 'is', 'illegal', 'to', 'park', 'around', 'here.'], ['I', 'was', 'shaken.'], ['We', "don't", 'have', 'enough', 'beer.'], ['Do', 'you', 'think', "I'm", 'crazy?'], ['I', 'just', 'got', 'a', 'window', 'to', 'myself.'], ['We', 'have', 'two', 'children.'], ['He', 'excused', 'himself', 'a', 'diary.'], ['Hurry', 'up', 'tired,', 'go', 'out', 'the', 'train', 'had', 'to', 'go', 'to', 'the', 'car.'], ['Kyoto', 'is', 'a', 'lot', 'of', 'fun', 'beyond', 'world', 'players.'], ["I'm", 'the', 'most', 'popular', 'of', 'class.'], ['Close', 'the', 'box.'], ['Save', 'it', 'if', 'you', 'usually', 'will', 'survive.'], ['I', 'think', "it's", 'cruel', 'to', 'keep', 'a', 'cat', 'indoors.'], ['I', 'am', 'already', 'father.'], ['He', 'told', 'that', 'he', 'has', 'anything', 'to', 'do', 'with', 'the', 'matter.'], ['Tom', 'is', 'in', 'a', 'bad', 'mood.'], ["That's", 'a', 'waste', 'of', 'time.'], ["That's", 'just', 'a', 'formality.'], ["There's", 'no', 'today.'], ['Do', 'you', 'think', 'we', 'can', 'us?'], ['Did', 'you', 'do', 'what', 'I', 'asked?'], ['You', "can't", 'keep', 'this', 'a', 'secret.'], ['Tom', 'told', 'me', 'he', 'was', 'unlucky.'], ['We', 'talked', 'about', 'it', 'quite', 'enough.'], ['Even', 'any', 'students', 'do', 'not', 'want', 'to', 'lower', 'things', 'the', 'world.'], ['Is', 'eating', 'young', 'enough?'], ["I'll", 'tell', 'you', 'afterwards.'], ["You're", 'doing', 'it', 'right.'], ['He', 'never', 'breaks', 'promises.'], ['I', 'was', 'still', 'at', 'once.'], ['Do', 'you', 'have', 'any', 'other', 'questions', 'about', 'the', 'matter?'], ['When', 'I', 'was', 'so', 'hard', 'when', 'I', 'was', 'going', 'to', 'get', 'married.'], ['I', 'know', 'Tom', 'is', 'guilty.'], ['She', 'gave', 'her', 'a', 'new', 'dress', 'on', 'the', 'party.'], ['Tom', 'has', 'the', 'ability', 'to', 'succeed.'], ['He', 'asked', 'me', 'for', 'help.'], ['Are', 'we', 'eating', 'the', 'cops.'], ['Tom', 'is', 'outside.'], ["You're", 'dangerous.'], ["You're", 'very', 'brave.'], ["We're", 'going', 'to', 'end', 'well.'], ["We're", 'enjoying', 'themselves.'], ["It's", 'not', 'going', 'to', 'be', 'all', 'right', 'there.'], ['I', 'think', 'Tom', 'did', 'well.'], ['Americans', 'are', 'growing', 'fruit.'], ['He', 'asked', 'me', 'what', 'I', 'was.'], ['May', 'I', 'ask', 'you', 'a', 'little', 'question?'], ["That's", 'funny.'], ['Smoking', 'is', 'dangerous', 'for', 'your', 'health.'], ["I'd", 'like', 'to', 'be', 'alone', 'now.'], ['Why', 'does', 'Tom', 'want', 'this', 'song?'], ['Were', 'you', 'awake', 'at', '2:30', 'last', 'night?'], ['Did', 'Tom', 'while', 'I', 'was', 'called', 'on', 'Sunday?'], ['Does', 'Tom', 'have', 'room', 'for', 'a', 'clean', 'time?'], ['Leave', 'the', 'house.'], ['Have', 'you', 'seen', 'these', 'boxes'], ['A', 'good', 'look', 'up', 'to', 'this', 'morning.'], ['Why', 'are', 'you', 'trying', 'to', 'me?'], ['Are', 'you', 'talking', 'to', 'Tom?'], ['He', 'left', 'the', 'race.'], ['They', "don't", 'have', 'a', 'good', 'lawyer', 'to', 'look', 'at', 'it.'], ['Did', 'you', 'pay', 'someone', 'for', 'someone', 'about', 'this?'], ['He', "doesn't", 'have', 'business', 'in', 'business.'], ['I', 'figured', 'that', 'you', "weren't", 'coming.'], ['Who', 'was', 'here?'], ['I', 'told', 'you', 'when', 'my', 'parents', 'was', 'my', 'dead', 'friend.'], ['Is', 'that', 'all', 'the', 'time?'], ['He', "can't", 'be', 'older', 'than', 'me.'], ['My', 'dog', 'is', 'hard', 'to', 'pay', 'for', 'the', 'year.'], ['They', 'should', 'find', 'out', 'the', 'conclusion', 'that', 'will', 'be', 'dangerous.'], ["That's", 'my', 'problem,', 'not', 'yours.'], ['The', 'young', 'child', 'opened', 'the', 'lamp', 'and', 'died.'], ["I'll", 'help', 'every', 'day.'], ['Where', 'did', 'you', 'find', 'away', 'at', 'school', 'or', 'at', 'the', 'second', 'bus.'], ['This', 'is', 'the', 'first', 'time', 'that', 'I', 'met', 'a', 'year', 'from', 'first', 'before.'], ['Can', 'you', 'prove', 'it?'], ['He', 'pressed', 'the', 'bottom', 'of', 'the', 'package.'], ['The', 'guy', 'has', 'not', 'smoke.'], ['Do', 'you', 'know', 'anyone', 'who', 'was', 'who', 'was', 'on', 'the', 'top', 'of', 'this', 'tree?'], ['They', "didn't", 'want', 'me', 'to', 'examine', 'it.'], ['Both', 'of', 'them', 'are', 'beautiful.'], ['It', 'might', 'not', 'even', 'that.'], ['Is', 'it', 'all', 'there?'], ['Can', 'I', 'see', 'you', 'when', 'you', 'go', 'to', 'bed', 'tomorrow?'], ['I', "didn't", 'do', 'that', 'on', 'Monday.'], ['That', 'story', 'was', 'stolen.'], ['He', 'is', 'looking', 'at', 'the', 'room.'], ["It's", 'worth', 'it?'], ['I', 'think', "you're", 'a', 'little', 'too', 'careful.'], ['You', 'look', 'fabulous.'], ['He', 'used', 'to', 'smoke', 'his', 'seat', 'in', 'a', 'temperature.'], ['I', 'wonder', 'why', 'Tom', 'had', 'to', 'do', 'that.'], ["You're", 'safe', 'with', 'us.'], ['She', 'wants', 'to', 'become', 'a', 'young'], ["They're", 'gone.'], ['I', 'feel', 'faint.'], ['Thanks', 'for', 'your', 'guests.'], ["Isn't", 'that', 'a', 'nice', 'day,'], ['She', 'has', 'a', 'house', 'all', 'to', 'herself.'], ['He', 'ate', 'all', 'the', 'apple.'], ['Can', 'you', 'please', 'write', 'that', 'down?'], ["I'll", 'call', 'to', 'death.'], ['I', 'hate', 'wasting', 'my', 'time.'], ['I', 'have', 'to', 'be', 'back.'], ['No', 'one', 'knows', 'how', 'to', 'explain', 'it.'], ['She', 'speaks', 'English', 'well.'], ["It's", 'cheaper', 'if', 'you', 'want', 'to', 'buy', 'the', 'dozen.'], ["Don't", 'make', 'me', 'go!'], ['Tom', "doesn't", 'do', 'two', 'more', 'than', 'Mary.'], ['This', 'is', 'dead.'], ['I', 'was', 'a', 'teacher?'], ["Don't", 'worry', 'about', 'others', 'people.'], ['She', 'had', 'to', 'take', 'care', 'of', 'her', 'sister.'], ['I', 'think', 'Tom', 'is', 'gone.'], ['I', 'eat', 'a', 'lot', 'of', 'meat.'], ['My', 'uncle', 'is', 'listening', 'to', 'the', 'teacher.'], ['Father', 'is', 'studying', 'his', 'family.'], ['What', 'are', 'you', 'talking', 'about?'], ['Have', 'they', 'met', 'before?'], ['Did', 'you', 'help', 'you', 'after', 'your', 'school', 'yesterday?'], ['This', 'book', 'has', 'blown.'], ['Will', 'you', 'drink', 'another', 'cup', 'of', 'tea?'], ['He', 'took', 'a', 'rock', 'better', 'in', 'the', 'office', 'before', 'entering', 'the', 'room.'], ['Eat', 'with', 'the', 'dogs', 'are', 'beautiful.'], ['Are', 'you', 'sure', "you're", 'not', 'imagining', 'things?'], ['Hundreds', 'of', 'soldiers', 'were', 'killed.'], ['I', "didn't", 'know', 'what', 'it', 'meant.'], ['This', 'is', 'the', 'middle', 'one', 'in', 'the', 'middle', 'of', 'nowhere.'], ["I've", 'been', 'given', 'a', 'long', 'since', 'I', 'would', 'buy', 'it.'], ['Are', 'you', 'really', 'not', 'going?'], ["I'd", 'rather', 'do', 'this', 'alone.'], ['Can', 'you', 'crank', 'up', 'the', 'body.'], ['The', 'train', 'arrived', 'at', 'the', 'time.'], ['I', 'was', 'impressed.'], ['We', 'lived', 'in', 'ten', 'years', 'in', 'ten', 'years', 'in', 'Tokyo.'], ['Science', 'of', 'us', 'make', 'many', 'things.'], ['She', 'asked', 'me', 'a', 'question.'], ['How', 'do', 'you', 'manage', 'to', 'handle', 'this?'], ['I', 'hate', 'sand.'], ['That', 'house', 'is', 'beautiful.'], ['I', 'was', 'really', 'disappointed', 'at', 'the', 'news.'], ['Keep', 'the', 'handrail.'], ["I'll", 'find', 'the', 'way', 'to', 'find', 'you.'], ['Are', 'you', 'sure', 'you', 'want', 'to', 'put', 'your', 'life', 'in', 'his', 'hands?'], ['How', 'do', 'you', 'come', 'to', 'school?'], ['This', 'is', "Tom's", 'washing', 'dishes.'], ['Do', 'you', 'know', 'what', 'it', 'is?'], ['She', 'made', 'him', 'better', 'than', 'the', 'truth.'], ['Hand', 'for', 'the', 'importance', 'of', 'the', 'importance', 'of', 'being', 'life.'], ['What', "you're", 'telling', 'me', 'the', 'truth.'], ['Tom', 'put', 'on', 'a', 'pair', 'of', 'latex'], ['It', 'was', 'really', 'years', 'when', 'he', 'was', 'really', 'young.'], ['We', 'had', 'a', 'cold,', 'last', 'Monday.'], ['I', 'remember', 'that', 'feeling.'], ['He', 'is', 'attracted', 'to', 'one', 'of', 'the', 'women.'], ['Even', 'hard', 'can', 'be', 'able', 'to', 'get', 'up', 'with', 'the', 'hard', 'forms.'], ['Just', 'follow', 'your', 'heart.'], ['How', 'long', 'have', 'you', 'been', 'like', 'that?'], ['We', 'will', 'have', 'a', 'room', 'in', 'the', 'sea.'], ['Toss', 'your', 'should', 'show', 'you', 'get', 'a', 'shot.'], ['She', 'suggested', 'that', 'I', 'wake', 'him', 'at', 'once.'], ['What', 'would', 'I', 'have', 'to', 'do', 'with', 'a', 'job', 'for', 'coming', 'with', 'me?'], ["Aren't", 'you', 'annoyed', 'by', 'that?'], ["Don't", 'you', 'have', 'friends?'], ["I'm", 'proud', 'of', 'my', 'children.'], ['This', 'carpet', 'is', 'totally', 'useless.'], ['To', 'be', 'until', 'I', 'will', 'be', 'able', 'to', 'walk', 'until', 'tomorrow.'], ['Look,', 'I', 'stayed', 'home', 'right', 'now.', 'I', 'have', 'a', 'day', 'now.'], ["I'm", 'sick', 'of', 'all', 'the', 'time', 'to', 'get', 'up', 'with', 'all', 'day.'], ['You', 'can', 'go', 'to', 'the', 'station', 'by', 'bus.'], ['Did', 'I', 'give', 'you', 'enough', 'time?'], ['I', 'love', 'all', 'of', 'it.'], ['This', 'is', 'a', 'little', 'embarrassing.'], ['I', 'had', 'a', 'stroke', 'until', 'my', 'left', 'train', 'to', 'get', 'to', 'the', 'bus', 'stop.'], ["They're", 'spies.'], ['Can', 'you', 'name', 'his', 'name?'], ["We're", 'in', 'touch', 'with', 'it.'], ['Tom', 'spends', 'the', 'time', 'thinking', 'about', 'the', 'time', 'of', 'time', 'working.'], ['We', 'worry', 'about', 'Tom', 'for', 'everything.'], ['I', 'prefer', 'to', 'travel', 'alone.'], ['Things', 'have', 'not', 'as', 'intended.'], ["I'm", 'in', 'love', 'with', 'me', 'when', 'I', 'am', 'in', 'high', 'school.'], ['I', 'can', 'make', 'you', 'a', 'good', 'lawyer.'], ['The', 'house', 'my', 'parents', 'is', 'comfortable.'], ['I', 'was', 'pleasantly', 'fun.'], ['Look', 'behind', 'you.'], ['The', 'Japanese', 'is', 'full', 'of', 'bad', 'project.'], ["I'm", 'at', "Tom's", 'house.'], ['Have', 'you', 'seen', 'Tom', 'recently?'], ['We', 'are', 'going', 'to', 'take', 'a', 'long', 'time', 'left.'], ['They', 'never', 'know', 'what', 'life', 'is', 'ours.'], ['I', "don't", 'have', 'a', 'lot', 'of', 'time', 'at', 'this', 'time.'], ['This', 'is', 'the', 'son', 'of', 'his', 'son', 'in', 'the', 'family.'], ['Language', 'is', 'filled', 'with', 'water.'], ['The', 'children', 'are', 'at', 'home', 'around', 'the', 'corner.'], ['Do', 'you', 'eat', 'rice', 'every', 'day?'], ['When', 'will', 'you', 'be', 'back?'], ['It', 'was', "must've", 'enough', 'to', 'have', 'taken', 'it.'], ['He', 'is', 'outgoing.'], ['Do', 'you', 'feel', 'lucky?'], ['I', 'was', 'supposed', 'to', 'do', 'that', 'yesterday.'], ['He', 'left.'], ['I', 'reserve', 'a', 'seat.'], ['They', 'swam.'], ["Where's", 'the', 'nearest', 'gas', 'station?'], ['Look', 'at', 'the', 'light', 'before', 'you', 'cross', 'the', 'road.'], ['He', 'sat', 'next', 'to', 'her.'], ['I', 'think', "he's", 'perfect.'], ["We're", 'getting', 'close.'], ['I', 'have', 'to', 'buy', 'a', 'room', 'for', 'two', 'room.'], ['Tom', 'never', 'was', 'late', 'before.'], ['Is', 'it', 'yours?'], ['Tom', 'is', 'volunteering.'], ['I', 'have', 'a', 'lot', 'of', 'Boston.'], ['This', 'is', 'my', 'bicycle.'], ['I', "don't", 'want', 'your', 'apology.'], ['Do', 'you', 'know', 'one', 'word', 'this', 'word?'], ['You', 'said', 'you', 'were', 'happy.'], ["I'm", 'glad', 'that', 'he', 'liked', 'it.'], ["I'm", 'sorry', 'I', 'dragged', 'you', 'into', 'this.'], ['I', 'want', 'to', 'hold', 'off.'], ['Can', 'we', 'have', 'to', 'call', 'me', 'on?'], ['May', 'I', 'be', 'excused?'], ['Two', 'glasses', 'is', 'on', 'the', 'bed.'], ['He', 'threw', 'a', 'stone', 'into', 'the', 'pond.'], ['I', "didn't", 'know', 'that', 'it', 'would', 'not', 'come', 'today.'], ['I', 'love', 'short', 'of', 'tea.'], ["I'm", 'surprised.'], ['I', "don't", 'think', 'about', 'what', 'happened', 'to', 'be', 'happening.'], ['It', 'must', 'me', 'out', 'of', 'my', 'head.'], ["I'd", 'like', 'to', 'leave', 'this', 'car', 'as', 'soon', 'as', 'I', 'can.'], ['It', 'was', 'a', 'cold', 'tree', 'in', 'front', 'of', 'the', 'outside.'], ['Who', 'did', 'you', 'this?'], ['Give', 'me', 'your', 'money.'], ['Why', "didn't", 'you', 'tell', 'me', 'where', 'it', 'before?'], ['Move', 'out', 'with', 'me.'], ['Please', 'smile.'], ['I', 'want', 'to', 'know', "what's", 'going', 'on.'], ['fundamental', 'is', 'on', 'your', 'engine.'], ['Tom', 'ran', 'into', 'the', 'summer.'], ['He', 'is', 'about', 'China.'], ['I', 'saw', 'him', 'a', 'million', 'times.'], ['The', 'house', 'was', 'ablaze.'], ['Do', 'you', 'want', 'me', 'to', 'do', 'it?'], ['Mary', 'is', "Tom's", 'sister.'], ["You're", 'not', 'tired,', 'are', 'you?'], ['I', 'never', 'will.'], ['I', 'am', 'looking', 'for', 'a', 'job', 'on', 'a', 'job.'], ['In', 'the', 'winter,', 'we', 'grew', 'away', 'from', 'the', 'most', 'beautiful', 'year', 'of', 'three.'], ['I', 'think', "that's", 'yours.'], ['I', 'am', 'a', 'little', 'taller', 'than', 'your', 'father.'], ['I', "wasn't", 'very', 'worried.'], ['This', "isn't", 'the', 'end', 'of', 'the', 'world.'], ['What', 'are', 'the', 'bathroom?'], ["That's", 'enough.'], ['She', "couldn't", 'convince', 'him', 'to', 'go', 'back', 'home.'], ["It's", 'almost', 'six', "o'clock."], ['Will', 'you', 'be', 'dinner', 'next', 'to', 'the', 'next', 'time?'], ["You'd", 'better', 'tell', 'the', 'truth.'], ['The', 'light', 'will', 'make', 'the', 'right.'], ['What', 'an', 'idiot!'], ['We', 'all', 'have', 'your', 'idea', 'to', 'be', 'true.'], ['If', 'I', 'were', 'you,', 'I', 'would', 'hate', 'her.'], ['Tom', 'started', 'to', 'get', 'a', 'job.'], ["That's", 'a', 'nice', 'guy.'], ["I'll", 'keep', 'it', 'back.'], ['They', 'invited', 'them', 'to', 'dinner.'], ["Don't", 'tell', 'me', 'what', 'I', "can't", 'do.'], ["I'm", 'proud', 'of', 'what', 'I', 'do.'], ['How', 'could', 'you', 'say', 'such', 'a', 'thing?'], ["You're", 'very', 'understanding.'], ['I', 'had', 'things', 'to', 'do.'], ["I'd", 'like', 'to', 'leave', 'this', 'town', 'and', 'never', 'come', 'in.'], ['I', 'wear', 'glasses.'], ['My', 'schedule', 'is', 'on', 'the', 'weekend.'], ['He', 'was', 'having', 'a', 'long', 'head.'], ['Will', 'you', 'join', 'us?'], ["It's", 'dangerous', 'to', 'swim', 'to', 'swim', 'here.'], ["What's", 'the', 'strangest', 'thing', "you've", 'ever', 'eaten?'], ['The', 'damage', 'failed.'], ['Everybody', 'congratulated', 'me', 'for', 'my', 'brother.'], ['Be', 'careful', 'about', 'what', 'you', 'say.'], ['I', 'had', 'no', 'objection.'], ['I', 'will', 'stay', 'at', 'him', 'for', 'the', 'other', 'day.'], ['Can', 'you', 'give', 'me', 'a', 'minute?'], ['I', "can't", 'stay', 'for', 'dinner.'], ['Loosen', 'up.'], ['I', 'have', 'left', 'left', 'right', 'now.'], ['I', 'feel', 'lucky', 'that', 'was', 'over.'], ['These', 'cars', 'are', 'ours.'], ['Tom', 'left', 'himself', 'for', 'a', 'favor.'], ["What's", 'the', 'purpose', 'of', 'high', 'money', 'you', 'spent?'], ['I', 'made', 'all', 'the', 'job.'], ['I', 'got', 'your', 'room.'], ['She', 'was', 'impatient', 'with', 'her', "children's", 'children.'], ["You'd", 'better', 'tell', 'Tom', 'what', 'I', 'told', 'me', 'to', 'answer', 'your', 'question.'], ['I', 'promise', 'you', "won't", 'be', 'disappointed.'], ['I', 'noticed', 'that', 'my', 'father', 'was', 'going', 'to', 'kill', 'me.'], ['I', 'think', 'that', 'helps.'], ['I', 'think', 'you', 'should', 'go.'], ['I', 'need', 'one.'], ['I', 'thought', 'you', 'wanted', 'this.'], ['She', 'refused', 'to', 'accept', 'my', 'invitation.'], ['What', 'if', 'someone', 'sees', 'us?'], ['I', 'get', 'a', 'situation', 'in', 'the', 'situation.'], ['I', "didn't", 'know', 'you', 'were', 'so', 'ambitious.'], ['His', 'parents', 'did', 'the', 'dress', 'on', 'the', 'list.'], ['When', 'did', 'this', 'happen?'], ['What', 'would', 'you', 'like', 'for', 'dessert?'], ['This', 'is', 'an', 'interesting', 'story.'], ['Tom', 'thinks', 'the', 'answer', 'is', 'no.'], ['Tom', 'is', 'sorry.'], ['I', 'think', 'we', 'should', 'sit', 'down.'], ["I'm", 'looking', 'forward', 'to', 'someone', 'you', 'left', 'someone', 'at', 'home.'], ['Tell', 'them', 'that', "they're", 'wrong.'], ['Tom', 'will', 'care', 'of', 'this', 'point.'], ['Why', 'do', 'you', 'resist?'], ['She', 'demanded', 'to', 'see', 'the', 'manager.'], ['I', "don't", 'want', 'you', 'to', 'do', 'it.'], ['I', 'asked', 'her', 'where', 'I', 'had', 'to', 'park', 'my', 'car.'], ['How', 'about', 'what', 'I', 'want', 'to', 'ask', 'Tom?'], ["You're", 'the', 'last', 'person', 'I', 'expected', 'to', 'meet', 'her.'], ['How', 'often', 'do', 'you', 'see', 'him?'], ['I', 'seem', 'to', 'have', 'a', 'fever.'], ["I'll", 'give', 'you', 'a', 'picture.'], ['Ask', 'someone', 'to', 'sit', 'here.'], ['This', 'house', 'is', 'small.'], ['I', 'remember', 'reading', 'about', 'it.'], ['What', 'a', 'great', 'boy', 'is', 'Tom.'], ["You're", 'on', 'the', 'wrong', 'train.'], ['I', 'hate', 'this', 'music.'], ['We', "don't", 'need', 'to', 'find', 'a', 'good', 'way', 'to', 'find', 'out', 'this', 'way', 'to', 'study.'], ["That's", 'why', 'Tom', 'won.'], ['I', "don't", 'know', 'how', 'to', 'explain', 'it.'], ["I'll", 'never', 'forget', 'it.'], ['I', 'really', "don't", 'have', 'a', 'cold.'], ['It', 'was', 'nice', 'and', 'sleep', 'in', 'a', 'good', 'house.'], ['You', 'should', 'have', 'seen', 'it.'], ['If', "you're", 'tired,', 'rest.'], ['The', 'world', 'was', 'reduced', 'by', 'the', 'whole', 'war.'], ['Do', 'you', 'really', 'think', 'Tom', 'will', 'do', 'that?'], ['You', 'were', 'on', 'the', 'list.'], ['How', 'much', 'time', 'do', 'you', 'get', 'out', 'tonight?'], ['I', 'wish', 'it', 'was', 'out', 'of', 'my', 'mind.'], ["I'm", 'lazy.'], ['I', 'eat', 'alone.'], ["That's", 'absolutely', 'true.'], ['Do', 'you', 'have', 'Japanese', 'newspapers?'], ["I'm", 'pretty', 'sure', 'Tom', "wasn't", 'there.'], ['I', 'borrowed', 'this', 'book', 'from', 'that', 'book.'], ['You', 'should', 'respect', 'your', 'promise.'], ['I', 'read', 'New', 'York', 'Times.'], ['I', 'am', 'afraid', 'of', 'the', 'test.'], ['What', 'made', 'it', 'matter?'], ['Can', 'you', 'understand', 'the', 'meaning', 'of', 'this', 'riddle?'], ['My', 'tie', 'is', 'mine.'], ['I', 'love', 'you.'], ["Let's", 'hope', 'this', 'is', 'OK.'], ['We', 'are', 'around.'], ['I', 'was', 'young', 'and', 'innocent.'], ['You', 'need', 'to', 'take', 'a', 'walk', 'for', 'ten', 'bucks.'], ['How', 'can', 'you', 'fix', 'it?'], ['We', "can't", 'do', 'it.'], ['They', 'were', 'very', 'confused.'], ['The', 'United', 'States', 'is', 'in', 'social', 'literature.'], ['I', 'know', 'you', 'have', 'many', 'things.'], ['I', 'saw', 'you', 'outside.'], ['We', 'forgotten.'], ['I', "don't", 'expect', 'to', 'get', 'to', 'sleep.'], ["Let's", 'discuss', 'the', 'discuss', 'now.'], ['They', 'can', 'handle', 'it.'], ['She', 'is', 'a', 'beautiful', 'speaker.'], ['This', 'is', 'a', 'fork.'], ["You're", 'one', 'of', 'my', 'friends.'], ["You're", 'my', "kid's", 'child.'], ['How', 'often', 'do', 'you', 'listen', 'to', 'him?'], ['Can', 'I', 'protect', 'you', 'on', 'your', 'name?'], ['My', 'wife', 'is', 'a', 'good', 'manager.'], ["That's", 'all', 'I', 'do.'], ['His', 'theory', 'is', 'difficult', 'to', 'understand.'], ['May', 'I', 'come', 'to', 'your', 'office', 'tomorrow?'], ['She', "didn't", 'notice', 'anything', 'at', 'all.'], ['When', 'you', 'remind', 'me', 'of', 'me.'], ['Thanks', 'for', 'your', 'quick', 'reply.'], ['I', 'wish', 'you', 'had', 'fun.'], ['Thanks', 'for', 'the', 'hard', 'of', 'repair.'], ['I', 'will', 'hope', 'she', 'will', 'come.'], ['Look,', 'I', "don't", 'want', 'to', 'lose', 'my', 'job.'], ['Tom', 'wanted', 'to', 'be', 'a', 'writer.'], ['I', "didn't", 'tell', 'Tom', 'why', 'I', 'am.'], ['This', 'is', 'the', 'lady', 'who', 'wants', 'to', 'see', 'you.'], ['I', "can't", 'help', 'you,', 'Tom.'], ['I', "can't", 'eat', 'all', 'this.'], ["Don't", 'eat', 'between', 'meals.'], ['We', 'should', 'use', 'this', 'winter', 'tonight.'], ['This', 'is', 'a', 'matter', 'of', 'more', 'importance.'], ['I', 'am', 'a', 'walk.'], ["It's", 'very', 'cold', 'tonight.'], ["I'm", 'here', 'to', 'come', 'this', 'week.'], ['I', 'love', 'the', 'air.'], ['I', 'need', 'to', 'know', 'your', 'idea', 'to', 'know', 'your', 'age.'], ['Could', 'you', 'tell', 'me', 'how', 'to', 'get', 'to', 'the', 'station?'], ['The', 'nurse', 'shook', 'Tom.'], ['I', "didn't", 'know', 'Tom', "didn't", 'do', 'that.'], ['Are', 'you', 'a', 'glass', 'of', 'options.'], ['If', 'it', 'again,', "I'll", 'give', 'it', 'to', 'telephone', 'him.'], ['He', 'lost', 'sight', 'of', 'all', 'the', 'accident.'], ['Why', "don't", 'you', 'just', 'like', 'another', 'way?'], ['Tom', 'was', 'just', 'awesome.'], ['Tom', 'loves', 'the', 'ocean.'], ['I', "can't", 'remember', 'my', 'name.'], ['I', 'did', 'not', 'do', 'that', 'much', 'done', 'yet.'], ['He', 'is', 'running.'], ['I', 'must', 'choose', 'two', 'two.'], ["I'd", 'love', 'to', 'love', 'you.'], ['All', 'our', 'gear.'], ['He', 'drank', 'the', 'prize.'], ['Tom', 'sang', 'better', 'than', 'Mary.'], ['Do', 'you', 'want', 'to', 'be', 'rich?'], ['She', 'came', 'here.'], ['Are', 'you', 'dressed?'], ["You're", 'not', 'wearing', 'a', 'fool'], ['We', "haven't", 'seen', 'Tom', 'at', 'a', 'time.'], ['We', 'know', 'all', 'about', 'you.'], ['I', "don't", 'know', 'where', 'he', 'left.'], ['I', "don't", 'know', 'what', "I'm", 'going', 'to', 'do', 'with', 'you.'], ['They', 'will', 'be', 'careful', 'next', 'month.'], ['He', 'is', 'not', 'good', 'at', 'remembering', 'names.'], ['I', 'admire', 'your', 'talent.'], ["Aren't", 'you', 'still', 'yet?'], ['We', 'had', 'a', 'party', 'on', 'the', 'party', 'arrived.'], ['Butter', 'are', 'generally', 'in', 'social', 'people.'], ['She', 'had', 'his', 'children', 'to', 'help', 'him.'], ['A', 'big', 'person', 'needs', 'to', 'be', 'a', 'lot', 'too', 'big', 'to', 'be', 'a', 'big', 'young', 'people.'], ['To', 'feed', 'my', 'father', 'without', 'saying', 'a', 'car', 'without', 'his', 'father.'], ['He', 'drank', 'the', 'wine.'], ['She', 'accused', 'me', 'of', 'being', 'a', 'liar.'], ['How', 'much', 'time', 'do', 'you', 'have', 'time', 'for', 'dinner?'], ['Are', 'you', 'really', 'sure', 'of', 'that?'], ['I', 'hope', 'that', "I'm", 'not', 'going', 'to', 'help', 'you', 'early.'], ['The', 'streets', 'were', 'empty.'], ["Let's", 'get', 'the', 'things', 'to', 'be', 'here.'], ['Do', 'you', 'know', 'how', 'much', 'he', 'teaches', 'me?'], ['He', 'has', 'been', 'trying', 'to', 'meet', 'when', 'he', 'grew', 'up', 'with', 'me.'], ['Ten', 'people', 'were', 'in', 'jail.'], ['I', "wasn't", 'going.'], ['I', 'buy', 'this', 'three', 'hundred', 'three', 'times', 'a', 'week.'], ['I', 'suggest', 'you', 'do', 'that', 'in', 'October.'], ['Can', 'your', 'boss', 'from', 'your', "father's", 'family.'], ['I', "can't", 'live', 'without', 'him.'], ["There's", 'no', 'room.'], ['You', "don't", 'need', 'to', 'be', 'here', 'on', 'our', 'time.'], ['He', 'gave', 'the', 'gift', 'of', 'a', 'gift.'], ['I', "can't", 'agree', 'with', 'you', 'on', 'this', 'point.'], ["Didn't", 'your', 'father', "aren't", 'you?'], ['What', 'can', 'I', 'tell', 'Tom?'], ['Do', 'you', 'mean', "you're", 'saying', 'goodbye?'], ['Tom', 'is', 'a', 'very', 'common', 'person.'], ["It's", 'not', 'good', 'at', 'least', 'cities.'], ['I', "can't", 'blame', 'him.'], ['Tom', 'got', 'weak.'], ['Tom', 'knew', 'who', "Mary's", 'boyfriend', 'was', 'a', 'friend.'], ['I', "don't", 'want', 'to', 'go', 'to', 'school.'], ['He', 'introduced', 'to', 'see', 'his', 'future', 'before', 'he', 'is', 'looking', 'for', 'a', 'loan.'], ['None', 'of', 'the', 'girls', 'is', 'not', 'the', 'fun.'], ['They', 'are', 'my', 'friends.'], ['No', 'matter', 'what', 'we', 'can', 'be', 'responsible', 'for', 'us.'], ['Do', 'you', 'think', "I'm", 'a', 'pencil?'], ['He', 'threw', 'a', 'dog.'], ['I', 'was', 'a', 'bit', 'surprised.'], ["I'll", 'show', 'you', 'that', 'I', 'right.'], ['I', 'want', 'you', 'to', 'survive.'], ['I', 'wanted', 'to', 'do', 'this', 'with', 'you.'], ['Take', 'the', 'right.'], ['How', 'old', 'were', 'you', 'when', 'you', 'did', 'that?'], ['I', "don't", 'want', 'to', 'be', 'who', 'who', 'Tom', 'is.'], ['If', "you're", 'wrong,', 'I', 'want', 'you.'], ['How', 'many', 'beers', 'did', 'you', 'drink?'], ["They're", 'wearing', 'the', 'new', 'subway', 'will', 'grow', 'out', 'of', 'the', 'future.'], ['I', 'have', 'red', 'red', 'car.'], ['Tom', 'is', 'more', 'than', 'one', 'than', 'I', 'am.'], ['My', 'aunt', 'and', 'I', 'went', 'to', 'the', 'United', 'States.'], ['You', 'can', 'use', 'my', 'dictionary.'], ['The', 'investigation', 'of', 'the', 'ability', 'to', 'understand', 'the', 'whole', 'thing', 'now', 'is', 'to', 'be', 'the', 'same.'], ['You', "can't", 'know', 'that', 'for', 'sure.'], ['I', "don't", 'know', 'exactly.'], ['It', 'was', 'not', 'a', 'long', 'time.'], ['I', 'know', 'I', 'had', 'it.'], ['I', 'almost', 'forgot', 'milk.'], ['It', 'may', 'not', 'be', 'true.'], ['Since', 'it', 'was', 'already', 'late,', 'I', 'went', 'to', 'sleep.'], ['The', 'problem', 'is', 'the', 'ability', 'to', 'help', 'you', 'with', 'the', 'most', 'interesting', 'problem', 'in', 'the', 'world', 'is', 'trying', 'to', 'be', 'able', 'to', 'do', 'with', 'it.'], ['Thanks', 'for', 'join', 'us.'], ['I', 'asked', 'Tom', 'why', 'he', 'needed', 'some', 'money.'], ['Whose', 'house', 'is', 'this?'], ['Reading', 'is', 'not', 'always', 'better.'], ['There', 'were', 'no', 'room.'], ["It's", 'time', 'for', 'me', 'to', 'go', 'to', 'college.'], ['I', 'did', 'what', 'she', 'asked', 'me', 'to', 'do.'], ['Do', 'you', 'like', 'to', 'go', 'to', 'school?'], ['Are', 'you', 'afraid', 'of', 'the', 'dark?'], ['I', 'bought', 'this', 'yesterday.'], ['Tell', 'me', 'what', 'Tom', 'said.'], ['In', 'the', 'garden', 'is', 'usually', 'for', 'four', 'years.'], ['They', 'gave', 'many', 'books.'], ['She', "didn't", 'want', 'him', 'to', 'come.'], ['My', 'suit', 'is', 'grey.'], ['We', 'all', 'have', 'been', 'stolen.'], ['He', 'married', 'a', 'wife.'], ['He', 'told', 'me', 'when', 'he', 'was', 'crazy.'], ['Tom', 'looks', 'very', 'uneasy.'], ['Everyone', 'in', 'the', 'park', 'was', 'in', 'the', 'park', 'parties.'], ['I', 'need', 'to', 'put', 'my', 'shoes.'], ['Stop', 'treating', 'me', 'like', 'a', 'child.'], ['Tom', 'is', 'something', 'to', 'tell', 'you.'], ['Could', 'you', 'tell', 'me', 'the', 'nearest', 'subway', 'station?'], ['I', "don't", 'have', 'a', 'friend', 'to', 'play', 'with.'], ['Tom', 'may', 'be', 'here', 'a', 'week.'], ['I', 'agree', 'to', 'agree', 'with', 'your', 'opinion.'], ["I'm", 'going', 'to', 'you', 'while', "you're", 'looking', 'for', 'you.'], ['There', "wasn't", 'any', 'eggs', 'in', 'the', 'garden.'], ["You've", 'painted', 'the', 'walls,', "haven't", 'you?'], ["You're", 'embarrassing', 'me', 'at', 'the', 'way', 'I', 'get', 'rid', 'of', 'my', 'eye.'], ["Don't", 'open', 'the', 'dog.'], ["I've", 'already', 'finished', 'in', 'a', 'restaurant.'], ['Nothing', 'is', 'changing.'], ['That', "doesn't", 'probably', 'help', 'all', 'the', 'problems.'], ['I', 'am', 'used', 'to', 'this', 'bicycle.'], ['How', 'many', 'hours', 'the', 'TV', 'TV', 'per', 'day?'], ['She', 'whispered', 'something', 'to', 'him.'], ['I', "can't", 'give', 'you', 'a', 'little', 'trying', 'to', 'explain', 'it.'], ['She', 'speaks', 'French.'], ['Can', 'you', 'always', 'call', 'next', 'Sunday?'], ["Isn't", 'it', 'a', 'very', 'chance?'], ['He', 'hurt', 'me.'], ['I', 'have', 'read', 'these', 'books.'], ['I', 'give', 'you', 'anything', 'you', 'never', 'let', 'me', 'ever', 'ask.'], ['I', 'feel', 'faint.'], ["I'm", 'not', 'too', 'sure.'], ['They', 'waited.'], ['What', 'is', 'the', 'best', 'point.'], ["I'm", 'sure', 'this', 'is', 'a', 'good', 'dream.'], ['I', "don't", 'think', 'you', "don't."], ['The', 'restaurant', 'is', 'nice.'], ["It's", 'a', 'pity', 'that', 'you', "can't", 'come.'], ['If', "they'd", 'taken', "they'd", "they'd", 'have', 'had', 'no', "they'd", "they'd", 'be', 'shot.'], ['Tom', 'used', 'to', 'make', 'up', 'with', 'the', 'way', 'to', 'do', 'the', 'hospital.'], ['Tom', "didn't", 'only', 'sell', 'him', 'for', 'his', 'old', 'car', 'to', 'read.'], ["I'm", 'pleased', 'with', 'their', 'performance.'], ['We', 'want', 'you', 'to', 'leave', 'the', 'team.'], ['I', 'grew', 'up', 'with', 'a', 'cat.'], ['She', 'can', 'swim', 'than', 'I', 'can.'], ['The', 'girl', 'was', 'almost', 'not', 'at', 'home', 'with', 'the', 'subject.'], ["I'm", 'still', 'hungry.'], ['Are', 'you', 'tired', 'of', 'waiting', 'in', 'line?'], ['I', 'tried', 'to', 'cheer', 'him', 'up.'], ['He', 'also', 'speaks', 'as', 'her', 'as', 'in', 'his', 'class.'], ['He', 'avoids', 'his', 'wife', 'clean.'], ['Tom', 'gave', 'Mary.'], ['Who', 'wants', 'you', 'to', 'be', 'the', 'boss?'], ['The', 'room', 'was', 'locked.'], ['Lincoln', 'was', 'ready', 'to', 'say.'], ['I', 'still', 'have', 'a', 'good', 'habit', 'of', 'my', 'business.'], ['Can', 'I', 'use', 'a', 'credit', 'card?'], ['Tom', 'knew', 'something', 'was', 'wrong.'], ['This', "doesn't", "can't", 'be', 'a', 'day.'], ["There's", 'no', 'trouble', 'in', 'this', 'camera.'], ["They're", 'coming', 'to', 'me.'], ["I'm", 'sick', 'of', 'hearing', 'the', 'bad', 'life.'], ["I'm", 'afraid', 'of', 'dying.'], ['Is', 'that', 'a', 'frightening', "isn't", 'he?'], ['I', 'just', "don't", 'want', 'to', 'catch', 'your', 'cold.'], ['Are', 'you', 'leaving', 'soon?'], ['I', 'felt', 'excited.'], ['You', "don't", 'have', 'to', 'explain.'], ['Show', 'us', 'the', 'bill.'], ["They're", 'good', 'from', 'ours.'], ['I', 'feel', 'like', "I'm", 'dreaming.'], ['Your', 'mother', 'is', 'quite', 'common', 'you.'], ['What', 'vegetables', 'do', 'you', 'usually', 'study?'], ['We', "didn't", 'need', 'that.'], ['How', 'long', 'does', 'it', 'take', 'to', 'get', 'to', 'the', 'station?'], ["That's", 'the', 'worst', 'thing', 'you', 'can', 'do!'], ['The', 'ice', 'cream', 'in', 'her', 'hand', 'and', 'hand.'], ['I', "don't", 'know', 'if', 'I', 'am', 'in', 'Boston.'], ['I', 'hope', 'that', 'what', 'you', 'are', 'healthy.'], ["That's", 'not', 'what', 'I', 'meant', 'to', 'say.'], ['That', 'was', 'cool.'], ["You're", 'sleepy.'], ['Tom', "isn't", 'very', 'well.'], ['Did', 'you', 'catch', 'his', 'letter?'], ['You', 'have', 'problems.'], ['I', 'only', 'did', 'my', 'duty.'], ['The', 'Japanese', 'hope', 'they', 'must', 'have', 'made', 'a', 'huge', 'wonder'], ['The', 'two', 'of', 'us', 'split', 'up', 'at', 'night.'], ['Eventually,', 'but', 'he', "doesn't", 'help', 'me.'], ['I', "didn't", 'think', 'about', 'it.'], ['How', 'about', 'running?'], ['Your', 'mother', 'is', 'going', 'to', 'kill', 'me.'], ['Your', 'phone', 'ringing.', 'you.'], ['Can', 'anyone', 'see', 'that', 'house?'], ['Everything', 'is', 'good', 'at', 'now.'], ['We', 'can', 'all', 'walk', 'home.'], ['She', 'stared', 'at', 'her', 'with', 'me.'], ['I', 'know', "you're", 'richer', 'than', 'me.'], ['Please', 'have', 'your', 'idea.'], ['Her', 'novel', 'was', 'translated', 'into', 'Japanese.'], ['Take', 'this', 'work', 'as', 'quickly', 'as', 'an', 'effort', 'to', 'do', 'this', 'weekend.'], ['You', 'have', 'to', 'pay', 'this', 'opportunity.'], ['I', 'want', 'you', 'to', 'see', 'the', 'car.'], ["We're", 'all', 'busy.'], ['Let', 'Tom', 'tell', 'Tom', 'how', 'you', 'believe', 'Mary', 'and', 'are', 'looking', 'for.'], ['This', 'is', 'the', 'reason', 'why', 'I', "wasn't", 'yesterday.'], ["I'm", 'free', 'every', 'Monday.'], ['I', 'knew', 'I', "shouldn't", 'have', 'done', 'it.'], ['She', 'will', 'soon', 'catch', 'her', 'soon.'], ['I', "don't", 'want', 'to', 'escape', 'anymore.'], ['Mary', 'is', 'a', 'girl', 'girl.'], ['Would', 'you', 'like', 'another', 'cup', 'of', 'coffee?'], ['You', 'gotta', 'get', 'more', 'organized.'], ['How', 'many', 'people', 'do', 'you', 'think', 'of', 'a', 'bold'], ['This', 'room', 'is', 'having', 'written', 'in', 'handy.'], ['A', 'lot', 'of', 'rain', 'could', 'stop', 'him', 'to', 'be', 'able', 'to', 'walk', 'out.'], ['Please', 'beat', 'the', 'phone.'], ['Tom', 'knew', 'how', 'to', 'talk', 'to', 'Mary.'], ["Don't", 'push', 'me.'], ['Go', 'come', 'back.'], ['Are', 'you', 'ready', 'to', 'do', 'that?'], ['I', "didn't", 'feel', 'but', 'I', 'am', 'sorry', 'for', 'myself.'], ['I', 'used', 'to', 'write', 'the', 'name', 'of', 'his', 'native', 'name,', 'but', 'he', 'is.'], ['I', 'need', 'to', 'thank', 'you', 'for', 'being', 'paid', 'attention', 'to', 'bed.'], ["I'm", 'innocent.'], ['My', 'father', 'likes', 'coffee', 'loud.'], ['We', 'miss', 'the', 'bell', 'when', 'the', 'bell', 'rang.'], ["I'm", 'doing', 'that.'], ['I', 'suppose', 'it', 'was', 'a', 'little', 'right.'], ['Who', 'do', 'not', 'give', 'it', 'for?'], ['No', 'one', 'has', 'been', 'told', 'that', 'he', 'was', 'injured.'], ['Tell', 'me', 'how', 'you', 'solved', 'the', 'problem.'], ['The', 'nurse', 'gave', 'you', 'a', 'sedative.'], ['She', 'praised', 'each', 'other.'], ["That's", 'a', 'nice', 'dress', 'you', 'had', 'a', 'good', 'one.'], ['I', 'know', 'Tom', 'knows.'], ["I'm", 'afraid', 'to', 'go.'], ['I', 'realize', 'that', 'you', "don't", 'like', 'the', 'way', 'you', 'but', 'I', "don't", 'want', 'the', 'way', 'you', 'just', 'wanted', 'me', 'to', 'do', 'with', 'me.'], ['Come', 'at', 'a', 'party', 'was', 'a', 'college', 'party'], ['He', 'painted', 'the', 'air', 'blue.'], ['You', 'are', 'twice', 'as', 'strong', 'as', 'me.'], ['You', "don't", 'have', 'to', 'tell', 'me', 'this.'], ['Why', 'did', 'you', 'come', 'here', 'today?'], ['Please', 'make', 'yourself', 'at', 'home.'], ["We're", 'eating', 'for', 'the', 'perfect', 'reason', 'for', 'us.'], ['How', 'do', 'you', 'get', 'me?'], ['Did', 'you', 'take', 'the', 'weight?'], ["I'm", 'not', 'making', 'a', 'mistake.'], ['I', 'made', 'you', 'cookies.'], ['I', 'just', 'wanted', 'to', 'talk', 'to', 'you.'], ['It', 'was', 'so', 'cold', 'that', 'we', 'did', 'fire.'], ['We', 'ran', 'into', 'a', 'small', 'tree.'], ['I', 'cut', 'it.'], ['We', 'already', 'gave', 'you', 'this', 'before.'], ['Why', 'did', 'they', 'find', 'out?'], ['The', 'game', 'was', 'killed.'], ["I'm", 'the', 'one', 'that', 'you', 'are', 'right.'], ['I', 'was', 'surprised', 'by', 'what', 'I', 'learned.'], ['I', 'got', 'up', 'early', 'this', 'morning.'], ['This', 'is', 'no', 'one', 'who', 'can', 'do', 'anything', 'about.'], ['Why', "didn't", 'you', 'see', 'the', 'police?'], ["I'll", 'get', 'you.'], ['How', 'much', 'money', 'do', 'you', 'have?'], ["Don't", 'judge', 'a', 'book', 'for', 'sale.'], ['He', 'asked', 'her', 'out', 'on', 'a', 'date.'], ['I', 'promise', 'you', "I'll", 'do', 'that', 'again.'], ['Do', 'you', 'have', 'kids?'], ['That', 'gift', 'gift', 'is', 'a', 'gift', 'of', 'my', 'apartment.'], ['Tom', 'watched', 'TV', 'TV', 'yesterday.'], ['Do', 'you', 'know', 'where', 'they', 'come', 'from?'], ["What's", 'the', 'building?'], ['I', 'feel', 'very', 'guilty.'], ['We', 'really', 'have', 'a', 'lot', 'to', 'do.'], ['She', 'brought', 'him', 'for', 'a', 'moment', 'with', 'my', 'parents.'], ["I'd", 'love', 'to', 'sing', 'for', 'you.'], ['I', 'wonder', 'if', "there's", 'a', 'connection.'], ['Which', 'one', 'will', 'it', 'choose?'], ["We're", 'not', 'listening.'], ['I', 'like', 'such', 'an', 'old,', 'but', 'that', 'I', 'would', 'be', 'an', 'honest', 'with', 'her', 'new', 'policy.'], ['He', 'is', 'able', 'to', 'speak', 'English', 'fluently.'], ["What's", 'the', 'big', 'meaning', 'of', 'this', 'building?'], ['Did', 'they', 'have', 'something', 'something?'], ['Of', 'course,', 'I', 'am', 'going', 'to', 'do', 'it.'], ["You're", 'the', 'only', 'one', 'who', 'can', 'help', 'me.'], ['I', 'never', 'felt', 'this', 'meeting', 'to', 'be', 'seen.'], ["I'll", 'walk', 'this', 'morning.'], ['Even', 'though', 'I', 'try,', 'I', "couldn't", 'help', 'me.'], ["I'd", 'like', 'to', 'see', 'before', 'you', 'come', 'over', 'before', 'time.'], ['You', 'still', 'have', 'my', 'word.'], ['We', 'met', 'him', 'at', 'the', 'truth.'], ["It's", 'been', 'a', 'week', 'when', "we're", 'met.'], ['I', 'am', 'going', 'to', 'buy', 'an', 'interesting', 'job', 'to', 'the', 'meeting', 'another', 'new', 'one.'], ['Since', "you're", 'tired,', 'rest.'], ['"How', 'goes', 'time', 'for', 'the', 'time', '"I', 'think', "it's", 'going', 'on?'], ['He', 'speaks', 'French.'], ['He', 'risked', 'his', 'life', 'to', 'save', 'him.'], ['Stop', 'playing', 'hard', 'to', 'get.'], ['I', 'live', 'about', 'a', 'mile', 'from', 'here.'], ['He', 'did', 'the', 'right', 'thing.'], ['I', 'want', 'to', 'buy', 'you', 'a', 'drink.'], ['I', "wouldn't", 'do', 'that', 'without', 'you.'], ["You'll", 'find', 'it', 'to', 'find', 'out', 'what', 'happened', 'to', 'carry', 'this', 'morning.'], ['Please', 'feel', 'a', 'head', 'low.'], ['What', 'time', 'is', 'it', 'time', 'tomorrow', 'next', 'night?'], ['I', 'am', 'not', 'happy', 'with', 'this', 'matter.'], ['I', 'thought', 'it', 'would', 'be', 'more', 'careful', 'today.'], ['Do', 'you', 'think', 'you', 'have', 'made', 'a', 'choice?'], ['Did', 'you', 'have', 'a', 'good', 'time', 'yesterday?'], ['She', 'left', 'her', 'son', 'in', 'his', 'mother.'], ['Keep', 'your', 'hands', 'clean.'], ['He', "doesn't", 'want', 'either.'], ['I', "can't", 'give', 'you', 'anything.'], ['I', 'knew', 'you', 'were', 'serious.'], ['Tom', 'has', 'no', 'intention', 'of', 'having', 'his', 'word.'], ['Where', 'did', 'you', 'learn', 'that?'], ['Why', 'are', 'you', 'being', 'so', 'negative?'], ["That's", 'why', "I'm", 'late.'], ['The', 'prices', 'have', 'written', 'up', 'with', 'a', 'long', 'trip.'], ['I', 'am', 'divorced.'], ['You', 'just', 'have', 'what', 'you', 'put', 'in.'], ['Make', 'good', 'for', 'Tom.'], ['How', 'is', 'your', 'family', 'name', 'written?'], ["That's", 'what', 'you', 'want.'], ['It', 'is', 'going', 'to', 'be', 'nice', 'to', 'happen.'], ['What', 'do', 'you', 'think', 'this', 'is', 'this?'], ["You've", 'underestimated', "Tom's", 'name.'], ['Tom', 'has', 'lost', 'cancer.'], ['He', 'is', 'just', 'not', 'at', 'any', 'further.'], ['My', 'sister', 'is', 'going', 'to', 'get', 'married.'], ["I'm", 'not', 'ready', 'yet.'], ["That's", 'really', 'impressive.'], ['What', 'is', 'the', 'most', 'popular', 'mountain', 'in', 'the', 'world?'], ['I', 'may', 'be', 'at', 'home', 'right', 'now.'], ['Where', 'do', 'you', 'remember?'], ['Do', 'you', 'have', 'any', 'change?'], ['I', 'appreciate', 'your', 'restraint.'], ['I', 'know', 'a', 'better', 'way', 'to', 'do', 'it.'], ['I', 'really', 'need', 'to', 'be', 'alone', 'right', 'now.'], ['Soccer', 'is', 'the', 'most', 'popular', 'sport.'], ["You've", 'been', 'made.'], ['No', 'one', 'told', 'us', 'anything.'], ['He', 'claims', 'that', 'Tom', "doesn't", 'have', 'any', 'problems.'], ['We', 'must', 'help', 'them.'], ['I', "don't", 'know', 'who', 'you', 'are.'], ['How', 'do', 'you', 'see', 'a', 'house', 'in', 'this', 'river?'], ['I', 'never', "should've", 'come', 'here.'], ["You're", 'very', 'brave.'], ['Maybe', 'he', 'will', 'keep', 'you.'], ['What', 'were', 'you', 'going', 'to', 'do', 'this', 'summer?'], ['Try', 'not', 'to', 'survive.'], ['The', 'police', 'finally', 'meet', 'Tom.'], ['Will', 'you', 'tell', 'me', 'the', 'truth?'], ['He', 'usually', 'eats', 'his', 'family.'], ['I', 'really', "didn't", 'have', 'time.'], ['He', 'often', 'read', 'many', 'mistakes', 'in', 'reading', 'novels.'], ['Are', 'you', 'going', 'to', 'eat', 'those', 'eggs?'], ['Stay', 'away', 'from', 'that', 'thing', 'on.'], ['I', 'think', "it's", 'out', 'of', 'hearing.'], ['This', 'restaurant', 'is', 'almost', 'ten', 'years.'], ['You', 'will', 'soon', 'be', 'at', 'her.'], ['Take', 'the', 'mine.'], ['I', 'am', 'ashamed', 'of', 'them.'], ['Just', 'give', 'me', 'what', 'I', 'want.'], ['This', 'should', 'take', 'thirty', 'minutes.'], ['Read', 'the', 'child', 'as', 'possible.'], ['The', 'fact', 'the', 'true', 'will', 'be', 'shot.'], ["Don't", 'think', 'about', 'it', 'too', 'much.'], ['He', 'looks', 'like', 'a', 'leg.'], ['What', 'does', 'that', 'most', 'of', 'what', 'happened', 'at', 'the', 'first', 'time', 'it', 'happens', 'to', 'happen?'], ['I', "can't", 'tell', 'you', 'how', 'happy', 'I', 'am', 'that', "you've", 'come', 'to', 'visit', 'us.'], ["That's", 'not', 'enough.'], ['They', "don't", 'eat', 'meat.'], ["Where's", 'the', 'matter?'], ["I'm", 'not', 'that', 'lucky.'], ['Tom', 'looked', 'at', 'each', 'other.'], ['Close', 'your', 'eyes.'], ['Are', 'they', 'in', 'Paris?'], ['You', 'look', 'like', "you're", 'busy.'], ["We're", 'psychic.'], ["Don't", 'tell', 'me', "you're", 'not', 'girlfriend.'], ['My', 'life', 'is', 'the', 'one', 'for', 'you.'], ['He', 'turned', 'his', 'seat', 'on', 'his', 'behavior.'], ['I', 'have', 'to', 'teach', 'that', 'girl.'], ["We're", 'all', 'in', 'agreement.'], ['This', 'number', 'is', 'wrong', 'with', 'you.'], ['I', 'wonder', 'who', 'she', 'is.'], ['Where', 'is', 'the', 'elevator?'], ['That', "hasn't", 'happened.'], ['I', 'listen', 'to', 'music.'], ['She', 'has', 'a', 'pretty', 'good', 'figure.'], ['Is', 'there', 'some', 'time', 'on', 'the', 'beer?'], ['Tom', 'is', 'going', 'to', 'be', 'well', 'in', 'bed', 'at', 'all.'], ['Will', 'you', 'try', 'this', 'river?'], ['Please', 'bring', 'them.'], ['The', 'are', 'are', 'illiterate.'], ['He', 'was', 'a', 'good', 'friend.'], ['That', 'makes', 'no', 'sense', 'whatsoever.'], ['How', 'far', 'is', 'it', 'from', 'here', 'to', 'the', 'world?'], ["Let's", 'buy', 'a', 'new', 'car.'], ['Tom', "didn't", 'say', 'a', 'thing.'], ['I', 'must', 'find', 'this.'], ['Do', 'you', 'believe', 'in', 'God?'], ['You', 'should', 'not', 'go', 'there', 'alone.'], ['I', 'open', 'the', 'gym.'], ['How', 'long', 'does', 'it', 'take', 'to', 'take', 'this', 'time', 'to', 'take', 'a', 'movie?'], ['I', 'guess', 'we', 'were', 'happy.'], ['Can', 'you', 'spell', 'my', 'afternoon?'], ['I', 'am', 'going', 'to', 'school', 'every', 'trip', 'to', 'school.'], ['I', 'never', 'want', 'us', 'to', 'come', 'out.'], ['Meet', 'me', 'at', 'the', 'station', 'at', 'the', 'station.'], ['My', 'life', 'is', 'in', 'danger.'], ['Why', 'did', 'he', 'do', 'something', 'like', 'that?'], ['Are', 'you', 'flirting', 'with', 'him?'], ['She', 'is', 'close', 'to', 'close', 'close', 'to', 'the', 'door.'], ['He', 'had', 'a', 'long', 'sleep', 'in', 'oil.'], ['This', 'is', 'the', 'season', 'of', 'the', 'customers.'], ['I', 'think', 'Tom', 'is', 'a', 'good', 'coach.'], ['He', "couldn't", 'believe', 'his', 'feelings.'], ['They', 'wanted', 'to', 'know', 'what', 'had', 'really', 'happened.'], ['He', 'usually', 'does', 'not', 'want', 'to', 'start', 'on', 'the', 'way', 'to', 'music.'], ['Tom', 'bought', 'a', 'lawyer.'], ["You're", 'the', 'most', 'important', 'person', 'I', 'ever', 'met', 'her.'], ['It', "didn't", 'happen', 'that', 'way.'], ['I', 'thought', 'I', 'told', 'you', 'to', 'stay', 'in', 'the', 'car.'], ['Although', 'they', 'knew', 'they', 'had', 'been', 'absent.'], ['I', 'need', 'to', 'know', 'that', 'Tom', 'is', 'in', 'a', 'restaurant', 'restaurant', 'for', 'the', 'hour.'], ["Don't", 'look', 'so', 'shocked.'], ['Lightning', 'disappeared', 'into', 'the', 'crowd.'], ['I', 'like', 'the', 'TV.'], ['Are', 'you', 'telling', 'you', "can't", 'do', 'it?'], ['A', 'few', 'months', 'ago,', 'there', 'has', 'a', 'simple', 'issue.'], ['I', 'need', 'air.'], ['The', 'cake', 'is', 'the', 'cake', 'that', 'he', 'is', 'an', 'artist.'], ['There', 'is', 'a', 'large', 'line', 'on', 'the', 'door.'], ['Please', 'come', 'over', 'my', 'room.'], ['Please', 'sing.'], ["It's", 'dark.'], ['Why', 'did', 'you', 'come', 'here', 'today?'], ['He', 'lost', 'his', 'way', 'in', 'the', 'forest.'], ['Could', 'you', 'do', 'this', 'for', 'my', 'car?'], ['I', 'was', 'told', 'to', 'have', 'told', 'them', 'to', 'get', 'out', 'of', 'the', 'money.'], ['Would', 'you', 'forgive', 'me?'], ['Tom', 'has', 'his', 'paper', 'on', 'a', 'trip.'], ['The', 'guards', "didn't", 'believe', 'it.'], ['I', 'have', 'no', 'idea.'], ['What', 'were', 'you', 'doing', 'at', 'that', 'time?'], ["I'm", 'used', 'to', 'working', 'all', 'night.'], ["That's", 'where', "you're", 'wrong.'], ['I', 'want', 'the', 'way', 'of', 'all.'], ["That's", 'not', 'funny.'], ['You', 'must', 'be', 'in', 'good', 'physical', 'condition.'], ['That', "shouldn't", 'be', 'a', 'problem.'], ["I'm", 'not', 'very', 'angry', 'at', 'you,', 'but', 'very', 'disappointed.'], ['How', 'old', 'were', 'you', 'when', 'you', 'got', 'married?'], ['Tom', 'let', 'us', 'go.'], ['I', 'live', 'in', 'the', 'small', 'room.'], ['I', 'was', 'looking', 'for', 'his', 'success', 'and', 'a', 'good', 'body', 'and', 'his', 'head.'], ['Beef,', 'and', 'if', 'you', 'have', 'to', 'come.'], ['Our', 'number', 'is', 'full', 'of', 'people', 'and', 'left', 'answers.'], ['Why', 'did', 'they', 'hire', 'you?'], ['You', 'should', 'fulfill', 'your', 'promises.'], ['Can', 'something', 'else', 'do', 'I', 'have', 'to', 'do?'], ['This', "shouldn't", 'be', 'ashamed', 'of', 'them,', 'not', 'worry.'], ['He', 'did', 'a', 'pretty', 'good', 'job.'], ['Choose', 'the', 'color', 'that', 'you', 'have.'], ['She', 'cooked', 'the', 'job', 'with', 'him.'], ['He', 'advised', 'us', 'to', 'do', 'it.'], ["I'm", 'no', 'saint.'], ["Don't", 'they', 'drive', 'you', 'mad?'], ['You', 'never', 'have', 'ever', 'happy.'], ["I'd", 'like', 'some', 'more', 'time', 'more', 'time', 'to', 'finish', 'that.'], ["I'd", 'like', 'to', 'see', 'you', 'again.'], ['Honesty', 'is', 'a', 'painting.'], ['He', 'lied', 'to', 'his', 'money.'], ['Life', "isn't", 'easy.'], ["Don't", 'talk', 'to', 'me!'], ["We're", 'tired.'], ['It', 'is', 'much', 'too', 'much', 'longer.'], ['Tom', 'paid.'], ['What', 'is', 'love?'], ['He', 'wears', 'a', 'lot', 'in', 'jail.'], ['You', 'can', 'write', 'to', 'write', 'to', 'park', 'here.'], ['Take', 'it', 'down.'], ['I', "don't", 'feel', 'much', 'like', 'this', 'song', 'in', 'this', 'time.'], ['We', 'have', 'to', 'fix', 'this', 'mystery.'], ['I', 'love', 'an', 'end', 'of', 'the', 'end', 'of', 'the', 'shoes?'], ['Just', 'do', 'this', 'here.'], ['What', 'do', 'you', 'have', 'to', 'go?'], ['Is', 'it', 'a', 'ghost?'], ["You're", 'my', 'father.'], ["I've", 'already', 'answered', 'this', 'question.'], ['What', 'do', 'you', 'want', 'to', 'be?'], ['Did', 'I', 'hurt', 'you?'], ['I', 'called', 'him', 'out.'], ['Can', 'I', 'get', 'on', 'your', 'paper', 'with', 'you?'], ["I'll", 'wait', 'outside.'], ['Is', 'it', 'getting', 'back?'], ['Did', 'you', 'enjoy', 'working', 'on', 'your', 'holiday?'], ['The', 'radio', 'is', 'hard', 'for', 'the', 'next', 'month.'], ['Why', "didn't", 'you', 'read', 'the', 'magazine?'], ["Don't", 'make', 'it', 'personally.'], ['Do', 'you', 'have', 'health', 'insurance?'], ["You're", 'really', 'silly.'], ['The', 'lecture', 'made', 'it', 'on', 'the', 'lecture', 'with', 'painting', 'on', 'the', 'moon.'], ["I'll", 'do', 'my', 'best.'], ['I', 'will', 'telephone', 'him', 'enough', 'time.'], ['Tom', 'is', 'a', 'real', 'guy.'], ['He', 'did', 'it', 'by', 'the', 'way.'], ['We', "don't", 'have', 'to', 'arrive', 'on', 'time.'], ['I', "can't", 'be', 'so', 'lucky.'], ['They', 'believe', 'he', 'died.'], ['These', 'cookies', 'are', 'the', 'same.'], ['I', "don't", 'think', 'I', 'can', 'make', 'it', 'to', 'your', 'party.'], ['You', 'worry', 'too', 'much', 'for', 'your', 'weight.'], ['May', 'I', 'eat', 'this', 'orange?'], ['He', 'said', 'that', 'it', 'was', 'true.'], ['Tom', 'built', 'the', 'apple', 'jump.'], ['I', 'left', 'the', 'letter', 'and', 'left', 'the', 'letter.'], ['I', "don't", 'have', 'a', 'weapon.'], ["You're", 'very', 'understanding.'], ["Let's", 'talk', 'a', 'little', 'slower?'], ['Who', 'planted', 'the', 'tree?'], ['What', 'made', 'you', 'come', 'in?'], ['In', 'Japan,', 'we', 'have', 'been', 'delayed', 'for', 'a', 'cold', 'day.'], ["I'm", 'on', 'time.'], ['She', "didn't", 'like', 'the', 'door', 'at', 'first.'], ["What's", 'wrong', 'with', 'me?'], ["You're", 'driving', 'me.'], ['I', 'have', 'a', 'cat.'], ['Do', 'you', 'love', 'my', 'brother', 'as', 'my', 'brother.'], ['I', "can't", 'sleep', 'at', 'night.'], ['She', 'made', 'fun', 'of', 'giving', 'up.'], ['I', 'fell', 'in', 'love', 'with', 'you.'], ["I'd", 'rather', 'die', 'when', 'they', 'work', 'to', 'them.'], ['Which', 'do', 'you', 'like', 'this', 'one', 'or', 'you', 'are?'], ["I'm", 'going', 'to', 'the', 'next', 'train', 'at', 'the', 'station.'], ["Tom's", 'room', 'was', 'very', 'clean.'], ['He', 'told', 'us', 'he', 'had', 'a', 'great', 'trip.'], ['Do', 'you', 'think', 'I', 'should', 'ask', 'Tom', 'to', 'help?'], ['Tom', 'and', 'Mary', 'are', 'uncomfortable.'], ['He', 'said', 'he', 'was', 'poor.'], ['This', 'is', 'my', 'brother.'], ['He', 'took', 'a', 'taxi', 'to', 'the', 'taxi', 'to', 'a', 'taxi', 'back.'], ["We're", 'sure', 'I', 'can', 'do', 'that.'], ['My', 'friend', 'is', 'at', 'the', 'second', 'time.'], ['Tom', "didn't", 'have', 'enough', 'time', 'to', 'deal', 'with', 'this', 'problem.'], ['I', 'apologized'], ["Aren't", 'you', 'embarrassed?'], ['They', "don't", 'have', 'a', 'weapon.'], ['I', 'was', 'thinking', 'of', 'Boston.'], ['My', 'dog', 'has', 'been', 'barking.'], ['A', 'good', 'idea', 'came', 'out', 'of', 'mind.'], ['Maybe', 'you', 'should', 'stop', 'drinking.'], ['You', 'handled', 'this', 'work', 'a', 'good', 'situation.'], ['Any', 'child', 'can', 'do', 'that.'], ['This', 'is', 'our', 'house.'], ['You', "haven't", 'done', 'anything', 'yet,', 'are', 'you?'], ['No', 'one', 'agreed', 'with', 'him.'], ['The', 'travelers', 'stayed', 'in', 'a', 'traffic', 'jam.'], ['I', 'heard', 'it.'], ['There', 'were', 'hundreds', 'of', 'yesterday.'], ['I', 'hope', 'you', 'never', 'hurt', 'me.'], ["You're", 'absolutely', 'right.'], ['I', 'will', 'shoot.'], ['Bears', 'are', 'very', 'dangerous.'], ['Have', 'you', 'called', 'the', 'boss', 'called'], ["I'm", 'another', 'mean', 'to', 'interest', 'you.'], ['Why', 'are', 'you', 'wearing', 'me?'], ['You', "don't", 'know', 'what', 'you', 'will', 'do.'], ['I', 'was', 'trying', 'to', 'reach', 'you.'], ['Tom', 'gave', 'me', 'this', 'watch.'], ['I', 'bought', 'a', 'few', 'left.'], ['I', 'was', 'your', 'age.'], ['It', 'reminds', 'me', 'of', 'me.'], ['I', "can't", 'be', 'seen', 'with', 'you.'], ['Is', 'this', 'wine?'], ['I', 'locked', 'outside.'], ['Tom', 'opened', 'the', 'eyes.'], ['Take', 'in', 'your', 'wallet.'], ['My', 'mother', 'taught', 'me', 'to', 'do', 'it.'], ['It', 'seems', 'that', 'Tom', 'may', 'find', 'the', 'problem.'], ['You', 'promised.'], ['I', 'finished', 'first.'], ['They', "shouldn't", 'have', 'told', 'them', 'that', 'they', 'need.'], ['Your', 'story', 'looks', 'weird.'], ['Why', "didn't", 'you', 'tell', 'me', "what's", 'going', 'to', 'tell', 'me?'], ['You', 'have', 'my', 'sympathies.'], ["I'm", 'looking', 'forward', 'to', 'seeing', 'you', 'dance.'], ['Go', 'and', 'wake', 'Tom', 'up.'], ['Sorry', 'to', 'not', 'answering', 'your', 'parents', 'that', 'I', "didn't", 'know', 'it.'], ['I', 'have', 'a', 'knife', 'to', 'find', 'out', 'of', 'this', 'movie.'], ['I', 'had', 'no', 'idea', "you'd", 'be', 'here.'], ['I', 'want', 'to', 'return', 'your', 'money.'], ['He', 'was', 'not', 'here', 'because', 'of', 'the', 'rain.'], ['I', 'like', 'studying', 'with', 'them.'], ['Is', 'it', 'OK', 'now?'], ['May', 'I', 'have', 'to', 'take', 'your', 'lunch', 'now?'], ['Some', 'people', 'never', 'give', 'up.'], ['I', 'think', "we'd", 'better', 'change', 'more', 'money.'], ['Please', 'be', 'at', 'this', 'desk.'], ['Where', 'were', 'you', 'from?'], ['We', 'love', 'our', 'country.'], ['May', 'I', 'take', 'a', 'picture', 'of', 'you?'], ['He', 'blackmailed', 'me.'], ['I', 'appreciate', 'a', 'pencil.'], ["I'm", 'in', 'love', 'with', 'you', 'in', 'love', 'with', 'you.'], ['You', "don't", 'know', 'where', 'it', 'is,'], ['Tom', "couldn't", 'find', 'out', 'of', 'work.'], ["You're", 'not', 'alone.'], ['They', "don't", 'make', "'em", 'like', 'they', 'do', 'it.'], ['I', 'look', 'like', 'a', 'spy.'], ['Did', 'you', 'just', 'love', 'Tom?'], ['I', 'met', 'him', 'yesterday.'], ["You're", 'joking,', 'of', 'course.'], ['I', 'think', 'Tom', 'is', 'innocent.'], ['Why', "don't", 'we', 'buy', 'it?'], ['I', 'need', 'to', 'go.'], ['These', 'and', 'I', 'have', 'been', 'drinking,', 'and', 'got', 'the', 'children.'], ['She', 'can', 'hardly', 'speak.'], ['Tom', "didn't", 'have', 'been', 'given', 'a', 'week', 'that', 'they', 'had', 'expected.'], ['I', 'got', 'a', 'tree', 'from', 'the', 'tree.'], ['To', 'have', 'been', 'accused', 'of', 'murder.', 'was', 'murder.'], ['Tom', 'hates', 'dogs.'], ['One', 'box', 'is', 'still', 'missing.'], ['Are', 'you', 'here', 'with', 'us?'], ['She', 'called', 'him', 'to', 'say', 'that', "she'd", 'be', 'late.'], ['I', "don't", 'have', 'much', 'money', 'as', 'you', 'think.'], ["I'm", 'sorry,', 'I', "couldn't", 'hear', 'you.'], ['I', "don't", 'know', 'why', "you're", 'all', 'so', 'nervous.'], ['Tom', "doesn't", 'know', 'anything', 'about', 'Mary', 'anymore.'], ['Tom', 'ignored', 'our', 'advice.'], ["It's", 'a', 'nightmare.'], ['You', "don't", 'have', 'so', 'much', 'in', 'mind.'], ['I', 'know', 'Tom', 'is', 'disappointed.'], ['We', 'both', 'were', 'all', 'the', 'truth.'], ['What', 'did', 'you', 'go', 'to', 'the', 'hospital?'], ["I'm", 'really', 'sorry.'], ['We', 'believe', 'that', 'you', 'enjoy', 'the', 'possibility', 'that', "you'll", 'be', 'careful', 'about', 'ice.'], ['He', 'cut', 'the', 'apple', 'in', 'Japanese.'], ['You', 'must', 'be', 'very', 'proud', 'of', 'your', 'son.'], ['He', 'came', 'after', 'the', 'whole', 'while.'], ["I'm", 'looking', 'forward', 'to', 'working', 'with', 'it.'], ["You're", 'not', 'as', 'smart', 'as', 'me.'], ['How', 'much', 'do', 'you', 'have', 'time', 'to', 'work?'], ['Are', 'you', 'on', 'dope?'], ['The', 'house', 'with', 'the', 'house', 'is', 'mine.'], ["It's", 'dark', 'to', 'bed.'], ["That's", 'exactly', 'what', 'I', 'meant', 'to', 'be.'], ['They', 'found', 'us.'], ['I', "can't", 'tell', 'you', 'how', 'happy', 'I', 'am', 'that', "you've", 'come', 'to', 'visit', 'us.'], ['Do', 'you', 'have', 'any', 'beer?'], ['I', 'thought', "you'd", 'be', 'dead', 'at', 'first', 'time.'], ['Why', 'should', 'I', 'learn', 'French?'], ['Tom', 'said', 'that', 'Mary', 'was', 'sure', 'he', 'was', 'defeated.'], ['I', 'know', 'this', 'is', 'hard', 'for', 'you.'], ['The', 'door', 'was', 'already', 'open.'], ['You', "shouldn't", 'have', 'paid', 'the', 'bill.'], ['I', "don't", 'think', 'Tom', 'thinks.'], ["That's", 'a', 'real', 'leader.'], ['Tom', "doesn't", 'want', 'Mary', 'to', 'grow', 'up', 'with', 'Mary.'], ["I'll", 'fix', 'it', 'now.'], ["We're", 'the', 'air.'], ['Not', 'all', 'of', 'my', 'family.'], ['I', 'know', 'where', 'you', 'put', 'your', 'diary.'], ['This', 'only', 'only', 'comes', 'only', 'only', 'one', 'alone', 'in', 'a', 'works.'], ['The', 'ice', 'is', 'under', 'weight', 'under', 'its', 'weight.'], ['I', 'love', 'to', 'hear', 'Tom', 'dance.'], ['I', 'know', 'where', 'he', 'lives.'], ['I', 'think', 'we', 'can', 'make', 'much', 'better.'], ["It's", 'redundant.'], ['Tom', 'found', 'a', 'cat', 'no.'], ['You', 'have', 'no', 'messages.'], ['He', 'held', 'his', 'arm', 'and', 'got', 'out', 'of', 'his', 'arm', 'and', 'got', 'out', 'of', 'her', 'sister.'], ['I', 'could', 'eat', 'a', 'horse.'], ['I', "can't", 'believe', 'your', 'mom', 'let', 'you', 'go.'], ['I', 'knew', "we'd", 'know', 'someone', 'in', 'the', 'interests', 'of', 'the', 'election.'], ["You're", 'fun.'], ['He', 'is', 'a', 'good', 'boy.'], ['I', 'prefer', 'to', 'walk', 'out', 'of', 'the', 'air.'], ["I'm", 'glad', 'I', 'invited', 'you.'], ['This', 'joke', 'has', 'a', 'great', 'fortune.'], ['While', 'he', 'wanted', 'him', 'to', 'write', 'it', 'when', 'he', 'had', 'dinner', 'the', 'phone.'], ['I', 'have', 'found', 'out', 'of', 'a', 'great', 'time.'], ['I', 'won', 'the', 'first', 'competition.'], ['Take', 'such', 'a', 'cold', 'hat.'], ['I', 'heard', 'Tom', 'scream.'], ['We', 'closed', 'the', 'restaurant.'], ['The', 'storm', 'was', 'closed.'], ['He', 'is', 'fast', 'asleep.'], ['I', 'just', 'need', 'a', 'hug.'], ["I'm", 'happy', 'happy', 'happy', 'happy', 'happy', 'help.'], ['I', 'had', 'to', 'thank', 'you.'], ['How', 'do', 'you', 'get', 'out', 'of', 'me?'], ['Would', 'you', 'like', 'to', 'eat', 'something?'], ['This', 'restaurant', 'is', 'too', 'expensive', 'for', 'me.'], ['There', 'was', 'no', 'one', 'in', 'this', 'room.'], ["That's", 'anything', 'you', 'want', 'to', 'come.'], ['I', "don't", 'expect', 'you', 'to', 'come', 'here.'], ['We', 'need', 'evidence.'], ['He', 'died', 'of', 'cancer', 'last', 'year.'], ['Can', 'we', 'get', 'up', 'at', 'the', 'weekend?'], ['She', 'argued', 'with', 'her', 'bare', 'hands.'], ["That's", 'peculiar.'], ['As', 'soon', 'as', 'if', 'they', 'had', 'use', 'of', 'him', 'after', 'twelve', 'years.'], ['He', 'must', 'be', 'aware', 'of', 'the', 'danger.'], ['I', "can't", 'really', 'do', 'that.'], ['I', 'have', 'bought', 'my', 'ticket', 'at', 'my', 'shoes.'], ['None', 'of', 'the', 'time,', 'I', 'will', 'come', 'back.'], ['Tom', 'often', 'comes', 'to', 'see', 'the', 'weekend.'], ['The', 'house', 'is', 'big.'], ['I', 'lost', 'my', 'advice,', "I'd", 'like', 'a', 'new', 'one.'], ['I', 'really', 'want', 'to', 'see', 'you.'], ['I', 'am', 'all', 'the', 'time', 'of', 'my', 'keys.'], ['Can', 'you', 'take', 'it?'], ['I', "don't", 'like', 'a', 'lawyer.'], ['Does', 'Tom', 'speak', 'to', 'you', 'in', 'French?'], ['I', 'was', 'going', 'to', 'take', 'care', 'of', 'the', 'baseball', 'when', 'I', 'was', 'a', 'child.'], ['You', 'are', 'so', 'wrong.'], ["You're", 'part', 'of', 'the', 'problem.'], ['If', 'you', 'have', 'a', 'piece', 'of', 'money', 'you', 'have', 'had', 'to', 'do?'], ['My', 'mother', 'prepared', 'me', 'lunch.'], ['I', 'wish', 'I', 'could', 'believe', 'you.'], ['Tom', 'is', 'trying', 'to', 'milk', 'apples.'], ['Where', 'do', 'you', 'write?'], ['When', 'did', 'he', 'go', 'back?'], ['What', 'color', 'are', 'your', "wife's", 'eyes?'], ['Tom', 'sells', 'his', 'house.'], ['I', 'prefer', 'to', 'walk.'], ['Can', 'I', 'have', 'the', 'last', 'time', 'you', 'have', 'written', 'a', 'time?'], ['None', 'of', 'my', 'friends', 'who', 'speaks', 'French.'], ['The', 'girl', 'had', 'to', 'show', 'Tom', 'for', 'a', 'little', 'time', 'with', 'the', 'party.'], ['She', 'is', 'a', 'teacher.'], ['If', 'it', 'had', 'had', 'a', 'surprise,', 'he', 'had', 'had', 'no', 'money,', 'but', 'he', 'had', 'had', 'a', 'moment', 'was.'], ['Anyone', 'could', 'do', 'it.'], ['Tom', 'went', 'on', 'the', 'island', 'on', 'foot.'], ['How', 'do', 'you', 'get', 'the', 'cops.'], ['I', 'saw', 'the', 'news?'], ['I', 'want', 'something', 'to', 'read.'], ['Did', 'you', 'turn', 'off', 'the', 'light?'], ["I'm", 'glad', 'you', 'decided', 'to', 'come.'], ['I', 'was', 'walking', 'on', 'the', 'phone', 'when', 'he', 'sent', 'me', 'to', 'a', 'thief.'], ['Do', 'you', 'know', 'how', 'much', 'in', 'the', 'dance', 'with', 'you?'], ['Why', 'are', 'you', 'really', 'this?'], ["He's", 'at', 'home', 'right', 'now.'], ['We', 'had', 'a', 'heated', 'discussion.'], ['We', 'did', 'it', 'today.'], ['They', 'are', 'working', 'with', 'the', 'future.'], ["You're", 'the', 'only', 'one', 'that', 'the', 'only', 'one.'], ['Who', 'is', 'the', 'guitar', 'fat', 'in', 'the', 'guitar', 'he', 'is', 'sleeping', 'guitar?'], ['I', 'wonder', 'what', 'is', 'married.'], ['Tom', 'is', 'working', 'hard.'], ['It', 'looked', 'like', 'fun.'], ['Hand', 'for', 'the', 'work', 'to', 'work', 'for', 'the', 'work', 'of', 'the', 'cake.'], ["I'll", 'help', 'you', 'do', 'that.'], ['Tom', 'poured', 'a', 'drink.'], ['I', "don't", 'have', 'this', 'joke', 'in', 'this', 'time.'], ["Don't", 'try', 'to', 'make', 'me', 'angry.'], ['Shut', 'the', 'street.'], ['This', 'is', 'a', 'matter', 'of', 'relief.'], ['I', 'think', "it's", 'better', 'now.'], ['He', 'left', 'the', 'house', 'in', 'the', 'United', 'States', 'he', 'woke', 'up.'], ['I', 'just', 'got', 'home', 'from', 'home', 'and', 'sit', 'in.'], ['Tom', 'will', 'be', 'back', 'tomorrow.'], ['I', 'come', 'from', 'England.'], ["What's", 'your', "husband's", 'name?'], ['The', 'cat', 'seems', 'extremely', 'happy.'], ['Please', 'lock', 'the', 'door', 'behind', 'you.'], ["You're", 'driving', 'me', 'up.'], ['I', 'really', 'need', 'to', 'take', 'a', 'shower.'], ['What', 'makes', 'you', 'think', 'about', 'that?'], ['All', 'men', 'are', 'men', 'in', 'the', 'law.'], ["I'm", 'not', 'in', 'a', 'hurry.'], ['We', 'found', 'it', 'that', 'he', 'had', 'saved', 'the', 'number', 'of', 'this', 'paper.'], ['Tom', 'often', 'listens', 'to', 'Mary.'], ['What', 'has', 'the', 'universe?'], ['You', "can't", 'help', 'me.'], ["That's", 'not', 'the', 'problem.'], ['I', 'will', 'help', 'working.'], ['The', 'which', 'is', 'which', 'which', 'is', 'determined', 'to', 'the', 'next', 'station.'], ['You', 'should', 'have', 'married', 'earlier.'], ['How', 'did', 'you', 'hurt', 'your', 'feelings?'], ["It's", 'the', 'street.'], ['Are', 'you', 'kidding?'], ['Do', 'you', 'like', 'surprises?'], ['Be', 'careful.'], ['The', 'girl', 'reads', 'the', 'girl', 'with', 'his', 'grandfather.'], ['It', 'pretends', 'of', 'him', 'when', 'he', 'is', 'in', 'his', 'pretend'], ['Do', 'you', 'have', 'anything', 'to', 'tell', 'me?'], ['Do', 'you', 'have', 'a', 'little', 'more', 'important', 'in', 'this?'], ['I', 'know', 'Tom', 'hates', 'cats.'], ['I', "won't", 'let', 'you', 'do', 'that.'], ['If', 'I', 'had', 'some', 'money,', 'I', 'could', 'have', 'given', 'the', 'money.'], ['Why', 'is', 'he', 'going', 'to', 'stop', 'doing', 'English?'], ['Do', 'you', 'still', 'have', 'nightmares?'], ['I', 'thought', "you'd", 'be', 'older.'], ['What', 'are', 'you', 'doing?'], ['My', 'father', 'left', 'in', 'America.'], ['Who', 'was', 'talking?'], ['Anything', 'it', 'can', 'be', 'prepared.'], ['Tom', 'works', 'at', 'home.'], ['I', 'am', 'not', 'what', 'they', 'ask', 'others', 'to', 'eat.'], ['I', 'saw', 'him', 'on', 'the', 'floor.'], ['That', 'was', 'a', 'nice', 'day,', "isn't", 'it?'], ['What', 'was', 'the', 'plane', 'today?'], ['You', "shouldn't", 'have', 'gone', 'fishing', 'today.'], ['I', 'will', 'choose', 'one', 'of', 'them.'], ['Tom', "should've", 'killed', 'Mary.'], ['Your', 'behavior', 'was', 'blind.'], ['I', 'just', "don't", 'want', 'to', 'hurt', 'your', 'hopes', 'you', 'up.'], ['He', 'has', 'already', 'finished', 'his', 'work.'], ['Why', "don't", 'you', 'come', 'and', 'start', 'up?'], ['Keep', 'a', 'student', 'on', 'my', 'mind.'], ['I', 'never', 'want', 'to', 'hurt', 'you.'], ['I', 'think', 'every', 'time.'], ['The', 'other', 'is', 'free.'], ['Do', 'you', 'think', 'I', 'could', 'speak', 'to', 'Tom?'], ['I', 'want', 'you', 'to', 'tell', 'me', 'what', 'to', 'do.'], ['Tom', 'handed', 'Mary', 'the', 'Mary.'], ["Everybody's", 'outside.'], ['How', 'long', 'have', 'you', 'been', 'in', 'the', 'party?'], ['I', "didn't", 'say', 'anything.'], ['Why', 'do', 'you', 'resist?'], ['Give', 'me', 'one', 'hat.'], ['What', 'a', 'strange', 'guy.'], ['He', 'seldom,', 'if', "it's", 'the', 'best', 'being,', 'but', "it's", 'OK', 'if', 'he', 'is', 'going', 'to', 'bug'], ['You', "don't", 'even', 'know', 'how.'], ['I', "can't", 'tell', 'you', 'what', 'we', 'did', 'last', 'night.'], ['Have', 'you', 'read', 'this', 'yet?'], ['I', 'think', 'Tom', 'is', 'successful.'], ['How', 'do', 'you', 'not', 'know?'], ['Japan', 'has', 'four', 'water', 'in', 'the', 'army.'], ['The', 'boys', 'have', 'a', 'lot', 'of', 'girls.'], ["Don't", 'worry.', "We'll", 'have', 'the', 'money.'], ['Her', 'watch', 'is', 'ten', 'minutes', 'slow.'], ['It', 'was', 'mentioned.'], ['I', 'hope', 'I', 'see', 'you.'], ['I', 'live', 'in', 'a', 'safe', 'and', 'France.'], ['Tom', 'is', 'very', 'angry', 'and', 'me.'], ['You', 'should', 'stop', 'this.'], ['Put', 'your', 'pants', 'on.'], ['You', "don't", 'speak', 'French?'], ["You're", 'not', 'complaining', 'about', 'this', 'sort', 'of', 'thing.'], ['I', 'work', 'with', 'your', 'face', 'with', 'the', 'neighbors.'], ['How', 'many', 'men', 'want', 'me', 'to', 'want', 'me', 'to', 'wear', 'me?'], ["I'm", 'sorry,', 'but', 'I', 'am', 'busy.'], ['I', "don't", 'feel', 'like', 'playing', 'anymore.'], ['There', 'is', 'an', 'urgent', 'need', 'for', 'a', 'new', 'carpet.'], ['He', 'is', 'an', 'old', 'building.'], ["Tom's", 'family', "isn't", 'very', 'beautiful.'], ['They', 'collected', 'shells', 'on', 'the', 'beach.'], ['I', 'understand', 'it.'], ['I', 'slept', 'in', 'front', 'of', 'the', 'walk', 'because', 'I', 'was', 'walking', 'in', 'the', 'rain.'], ['I', 'just', 'had', 'water.'], ['I', "don't", 'read', 'books.'], ['A', 'good', 'thing', 'there', 'smells', 'good.'], ['Am', 'I', 'in', 'the', 'hospital?'], ["It's", 'not', 'that', 'I', 'want', 'to', 'go,', 'I', 'can', 'not', 'believe', 'it.'], ['Take', 'a', 'word', 'with', 'the', 'matter', 'with', 'him.'], ['Tom', 'seems', 'to', 'be', 'on', 'the', 'affair.'], ['The', 'workers', 'have', 'planned', 'for', 'the', 'price', 'of', 'paper.'], ['Tom', 'could', 'swim', 'when', 'he', 'was', 'walking', 'when', 'he', 'was', 'sleeping.'], ["I'll", 'be', 'there', 'back.'], ['They', 'were', 'longer', 'as', 'much', 'as', 'a', 'year', 'yet.'], ['I', 'eat', 'because', "I'm", 'hungry.'], ['I', "can't", 'believe', "you're", 'here.'], ['Are', 'they', 'your', 'kids?'], ['The', 'air', 'and', 'leaves', "won't", 'be', 'held', 'in', 'the', 'can.'], ['I', 'want', 'to', 'be', 'the', 'same', 'size.'], ['I', 'know', 'what', 'it', 'was', 'easy.'], ['I', 'saw', 'him', 'hit', 'a', 'tree.'], ['I', 'need', 'to', 'have', 'some', 'sleep?'], ['Do', 'you', 'have', 'a', 'twin', 'brother?'], ['There', 'is', 'no', 'way', 'of', 'knowing', 'where', "he's", 'gone.'], ['I', 'have', 'to', 'fix', 'my', 'watch.'], ['Where', 'did', 'you', 'get', 'a', 'long', 'discussion.'], ["Aren't", 'you', 'happy?'], ["I've", 'really', 'worked', 'hard.'], ['Tom', "doesn't", 'know.'], ['Take', 'a', 'few', 'days', 'off.'], ['We', 'still', 'have', 'a', 'way', 'to', 'go.'], ['I', 'have', 'invited', 'to', 'my', 'teacher', 'until', 'I', 'was', 'a', 'party.'], ["It's", 'not', 'going', 'to', 'help', 'you.'], ["You're", 'fun.'], ['He', 'got', 'off', 'the', 'hill.'], ['I', 'love', 'them.'], ["That's", 'why', "I'm", 'at', 'home.'], ['Take', 'out', 'in', 'the', 'kitchen.'], ["Don't", 'trust', 'anybody.'], ['He', 'died', 'of', 'cancer.'], ['Several', 'roads', 'are', 'closed.'], ['My', 'mother', 'cost', 'my', 'bag', 'too', 'much.'], ['Somebody', 'told', 'me', 'that', 'he', 'was', 'sure', 'that', 'he', 'was', 'an', 'old', 'teacher.'], ['Have', 'any', 'of', 'your', 'friends', 'ever', 'been', 'arrested?'], ['Put', 'my', 'rifle.'], ['I', 'wonder', 'if', 'I', 'can', 'do', 'that.'], ['This', "won't", 'be', 'hard.'], ['I', "don't", 'think', 'we', 'need', 'that.'], ["Who's", 'your', 'favorite', 'author?'], ['The', 'doctor', 'asked', 'him', 'to', 'cut', 'down', 'in', 'the', 'United', 'States.'], ['Tom', 'has', 'to', 'clean', 'his', 'room.'], ['Do', 'you', 'mind', 'if', 'I', 'park', 'here?'], ['You', 'really', 'seem', 'great!'], ['Where', 'can', 'I', 'buy', 'some', 'coffee?'], ['We', 'expected', 'you', 'once', 'a', 'month.'], ['I', 'am', 'looking', 'forward', 'to', 'working', 'until', 'the', 'holidays.'], ['I', "didn't", 'notice', 'that.'], ['I', "don't", 'deserve', 'your', 'friendship.'], ["You're", 'both', 'wrong.'], ['That', "doesn't", 'matter.'], ['Tom', 'handed', 'read', 'the', 'book', 'that', 'he', 'bought', 'Mary', 'yesterday.'], ['It', 'is', 'incredible', 'already.'], ['You', "don't", 'have', 'to', 'do', 'anything', 'you', "don't", 'believe', 'it.'], ['He', 'wants', 'to', 'be', 'jealous.'], ['Whatever', 'you', 'do,', "don't", 'press', 'the', 'button.'], ["She's", 'two', 'with', 'two', 'beds.'], ['I', 'just', 'want', 'to', 'be', 'at', 'my', 'family', 'and', 'I', 'have', 'a', 'job.'], ["We're", 'sorry', 'that', 'I', "couldn't", 'help', 'you.'], ["It's", 'a', 'cold', 'cold', 'tonight.'], ['I', 'really', 'am', 'glad', 'to', 'be', 'on', 'you.'], ["I'm", 'shorter', 'than', 'you.'], ['He', 'had', 'to', 'work', 'harder.'], ['He', 'died', 'a', 'few', 'days', 'later.'], ['I', 'guess', 'you', 'were', 'doing', 'what', 'it', 'is,', 'do', 'that.'], ['She', "didn't", 'go', 'to', 'the', 'gym.'], ['Tom', 'is', 'the', 'only', 'one', 'who', "doesn't", 'have', 'our', 'parents.'], ['I', 'think', 'we', 'need', 'a', 'new', 'car.'], ['I', 'beg', 'you', 'to', 'stay.'], ['Tom', 'seems', 'a', 'little', 'disoriented.'], ["Let's", 'sit', 'down', 'for', 'a', 'while.'], ['It', 'took', 'him', 'time', 'for', 'the', 'time', 'to', 'report.'], ['Which', 'one', 'of', 'you', 'arrived', 'here', 'first?'], ['The', 'movie', 'was', 'almost', 'there', 'was', 'almost', 'coming', 'out', 'there.'], ['Move', 'home', 'on', 'my', 'way', 'to', 'stay', 'home', 'in', 'midnight.'], ['Have', 'you', 'ever', 'bought', 'this', 'kind', 'of', 'behavior.'], ['Everyone', 'was', 'laughed', 'at', 'him.'], ['She', 'painted', 'the', 'water', 'green.'], ['Are', 'you', 'ready', 'to', 'begin?'], ['May', 'I', 'mean', 'that', 'anything', 'to', 'you?'], ['You', 'can', 'ride', 'New', 'York', 'by', 'New', 'York', 'by', 'train.'], ['I', 'guess', "it's", 'OK.'], ['I', 'apologize', 'if', 'I', 'offended', 'you.'], ['Will', 'it', 'bother', 'you', 'if', 'I', 'smoke?'], ['Can', 'you', 'forgive', 'me?'], ["We'll", 'have', 'a', 'nice', 'lot.'], ['We', 'are', 'currently', 'now.'], ["It's", 'almost', 'dark.'], ['Please', 'be', 'shy.'], ["He's", 'smarter', 'than', 'you', 'are.'], ['The', 'man', 'with', 'the', 'ground', 'to', 'the', 'ground', 'because', 'he', 'is', 'a', 'teacher.'], ['What', 'do', 'you', 'mean?'], ["I'll", 'see', 'you', 'in', 'the', 'library.'], ['I', "won't", 'say', 'two', 'more', 'twice.'], ['She', 'advised', 'him', 'to', 'stop', 'the', 'report', 'for', 'himself.'], ['When', 'went', 'to', 'the', 'station', 'to', 'see', 'a', 'knife', 'leaving', 'the', 'bus', 'bus', 'went', 'on', 'a', 'picnic', 'towel.'], ['The', 'fish', 'came.'], ['I', 'want', 'to', 'give', 'you', 'some', 'money', 'to', 'help', 'me', 'through', 'this', 'way', 'to', 'you.'], ['Which', 'is', 'your', 'suitcase?'], ['Stop', 'trying', 'to', 'help', 'you.'], ['Who', 'are', 'these', 'women?'], ['He', 'lost', 'all', 'his', 'money.'], ['We', 'have', 'a', 'dishwasher.'], ["Don't", 'play', 'the', 'others.'], ['My', 'cousin', 'is', 'to', 'travel', 'in', 'a', 'public', 'room.'], ['Tom', 'and', 'I', 'have', 'a', 'selfie', 'with', 'you.'], ["I'm", 'going', 'on', 'the', 'way', 'I', 'used', 'to.'], ['The', 'police', 'wish', 'he', 'had', 'been', 'absent.'], ['She', 'goes', 'to', 'bed', 'at', 'the', 'airport.'], ['Show', 'me', 'something', 'new.'], ['I', 'sat', 'near', 'the', 'near', 'near', 'him.'], ["Don't", 'they', 'know', 'what', 'they', 'do', 'what', 'they', 'do.'], ['It', 'has', 'been', 'a', 'new', 'pair', 'of', 'cake', 'these', 'days.'], ['That', 'dress', 'fits', 'you', 'perfectly.'], ['He', 'attended', 'the', 'baby', 'at', 'the', 'bank.'], ['I', "can't", 'wait', 'for', 'thirty', 'thirty', 'dollars', 'in', 'German.'], ['He', 'feels', 'very', 'well.'], ['One', 'of', 'my', 'boxes', 'is', 'going', 'to', 'get', 'out', 'of', 'the', 'case.'], ['Where', 'is', 'the', 'police?'], ['Tom', 'plays', 'the', 'best', 'of', 'the', 'best', 'of', 'the', 'best', 'of', 'my', 'music.'], ['Have', 'you', 'read', 'the', 'instructions?'], ['I', "didn't", 'cut', 'my', 'hair.'], ['Do', 'you', 'still', 'love', 'your', 'parents?'], ["I'd", 'like', 'to', 'go', 'to', 'Australia', 'with', 'you.'], ["Don't", 'ever', 'tell', 'me', 'to', 'ever', 'again.'], ['Do', 'you', 'have', 'plans', 'for', 'dinner?'], ["I'm", 'going', 'to', 'ask', 'you', 'to', 'leave', 'now.'], ['I', 'want', 'you', 'to', 'come', 'at', 'once.'], ['It', 'was', 'going', 'to', 'be', 'peace', 'again.'], ["It's", 'hard', 'to', 'prove', 'that', "you're", 'missing.'], ['Yesterday,', 'a', 'fire', 'broke', 'into', 'the', 'cellar.'], ['Be', 'nice.'], ['Bread', 'is', 'out', 'today.'], ['He', 'comes', 'to', 'see', 'me', 'from', 'time', 'to', 'time.'], ["Don't", 'worry.', "We'll", 'love', 'him.'], ['You', 'must', 'choose', 'a', 'lot', 'of', 'faults.'], ["I'm", 'sure', "they're", 'in', 'the', 'way.'], ['I', "don't", 'believe', 'that', 'anymore.'], ['They', 'made', 'a', 'few', 'days', 'in', 'the', 'other', 'day.'], ['I', 'will', 'take', 'a', 'walk.'], ['I', "haven't", 'eaten', 'anything', 'yet.'], ['Your', 'important', 'is', 'for', 'ours.'], ['We', 'had', 'a', 'weekend', 'after', 'our', 'study.'], ['Now', 'that', 'you', 'have', 'finished', 'your', 'homework', 'to', 'get', 'you', 'finished', 'early.'], ['This', 'is', 'a', 'great', 'places', 'that', 'he', 'wants', 'to', 'be', 'at', 'least', 'in', 'his', 'life.'], ['Be', 'polite', 'with', 'your', 'parents.'], ['We', 'all', 'happiness.'], ["It's", 'a', 'child', 'that', 'can', 'make', 'a', 'child', 'can', 'do', 'it.'], ['Why', "don't", 'you', 'take', 'any', 'more', 'than', 'any', 'of', 'this?'], ['Tom', 'asked', 'Mary', 'if', 'she', 'would', 'do', 'it', 'if', 'she', "can't."], ['Tom', 'died', 'from', 'Boston.'], ['They', 'buy', 'apples.'], ['I', 'thought', 'I', 'could', 'be', 'treated', 'from', 'you.'], ['The', 'money', 'is', 'on', 'the', 'table.'], ['Have', 'you', 'ever', 'given', 'a', 'lawyer?'], ['I', 'really', 'love', 'spending', 'time', 'with', 'you.'], ["I'm", 'already', 'already', 'positive.'], ['I', 'think', 'you', "shouldn't", 'do', 'that.'], ['I', 'love', 'kids.'], ["I've", 'had', 'a', 'lot.'], ['You', 'go', 'to', 'this', "isn't", 'like', 'you?'], ['He', 'warned', 'us', 'not', 'to', 'get', 'into', 'the', 'room.'], ['Your', 'parents', 'were', 'right.'], ['That', "can't", 'be', 'easy.'], ['He', 'made', 'a', 'taxi', 'to', 'the', 'hotel', 'for', 'a', 'station.'], ['I', "don't", 'think', "I've", 'been', 'working', 'since', 'that', 'has', 'happened.'], ['If', 'you', 'pass', 'the', 'course,', "you'll", 'have', 'the', 'rest', 'of', 'the', 'course,', 'will', 'protect', 'you', 'living.'], ['The', 'leaves', 'at', 'nine', "o'clock."], ['I', 'owe', 'you', 'a', 'beer.'], ['The', 'three', 'were', 'arrested.'], ['We', "can't", 'help', 'you', 'so', 'big', 'this', 'will', 'we?'], ["There's", 'too', 'much', 'time', 'to', 'do', 'that.'], ['He', 'is', 'working', 'on', 'Friday.'], ["I'd", 'never', 'forget', 'to', 'forget', 'Tom.'], ['Can', 'you', 'read', 'that?'], ['They', 'lost.'], ['I', "didn't", 'know', 'that', 'I', 'was', 'just', 'yesterday.'], ['It', 'was', 'a', 'surprise.'], ['All', 'of', 'the', 'students', 'went', 'to', 'the', 'plan.'], ['Do', 'you', 'want', 'me', 'to', 'tell', 'why?'], ['Tom', "doesn't", 'make', 'sense.'], ["That's", 'not', 'funny.'], ['She', 'left', 'a', 'room', 'for', 'butter.'], ['Stay', 'around', 'the', 'corner.'], ['She', "didn't", 'even', 'make', 'fun', 'of', 'it.'], ['The', 'turtles', 'threw', 'a', 'advised', 'for', 'a', 'try,', 'of', 'him', 'to', 'get', 'a', 'plane.'], ['I', "couldn't", 'forget', 'to', 'listen', 'to', 'his', 'hair', 'for', 'laughter.'], ['Who', 'said', 'you', 'were', 'in', 'Paris?'], ['Take', 'it', 'every', 'day.'], ['Tom', "doesn't", 'like', 'his', 'family.'], ['I', 'think', "I'm", 'a', 'pretty', 'good', 'singer.'], ['How', 'did', 'you', 'become', 'good', 'at', 'French?'], ['I', 'sell', 'flowers.'], ['Be', 'more', 'flexible.'], ['I', 'know', 'you', 'want', 'my', 'happiness.'], ["You're", 'very', 'emotional.'], ['The', 'road', 'is', 'almost', 'left', 'at', 'the', 'corner.'], ['If', 'it', 'will', 'be', 'canceled.'], ['Please', 'write', 'down', 'my', 'tea.'], ['You', 'can', 'stay', 'here', 'with', 'me.'], ['Her', 'job', 'is', 'not', 'at', 'the', 'new', 'station.'], ['Can', 'you', 'please', 'let', 'me', 'the', 'way?'], ['Is', 'it', 'OK', 'if', 'the', 'rumor', 'was', 'it?'], ["Isn't", 'that', 'a', 'fire?', 'Are', 'you', 'a', 'fire?'], ['I', 'came', 'to', 'wish', 'you', 'good', 'luck.'], ['I', 'find', 'that', 'difficult', 'to', 'believe.'], ['You', 'should', 'often', 'dance', 'with', 'your', 'cat.'], ['I', 'was', 'so', 'hard', 'so', 'night.'], ['We', 'should', 'always', 'tell', 'the', 'truth.'], ['He', 'is', 'not', 'in', 'his', 'age.'], ['Where', 'can', 'I', 'find', 'out', 'for', 'someone?'], ['Bring', 'me', 'something', 'to', 'eat.'], ['I', 'just', "don't", 'remember.'], ['These', "aren't", 'my', 'business.'], ['I', 'met', 'him', 'by', 'accident.'], ['The', 'weather', 'is', 'still', 'living.'], ['Where', 'are', 'you?'], ['The', 'problem', 'has', 'solved', 'himself.'], ["That's", 'not', 'good', 'enough', 'for', 'Tom.'], ['The', 'girls', 'giggled.'], ['Do', 'you', 'know', 'who', 'left', 'the', 'first', 'first', 'invented', 'in', 'Australia?'], ['You', "can't", 'give', 'this', 'to', 'Tom.'], ['tough', 'is', 'all', 'hard.'], ['May', 'I', 'have', 'a', 'napkin,', 'please?'], ['Will', 'you', 'be', 'your', 'parents?'], ['Give', 'me', 'another', 'one.'], ["It's", 'very', 'surprising.'], ['It', 'does', 'not', 'eat', 'anything', 'made.'], ['Why', 'do', 'we', 'have', 'to', 'do', 'this', 'today?'], ['The', 'clock', 'is', 'soon.'], ['You', 'have', 'dirty.'], ["Isn't", 'that', 'what', 'you', 'said?'], ['Do', 'you', 'want', 'me', 'to', 'help', 'Tom?'], ["That's", 'how', 'I', 'want.'], ['Please', 'take', 'a', 'hat.'], ['I', 'have', 'bad', 'eyesight.'], ['He', 'works', 'as', 'a', 'mess.'], ['I', 'had', 'my', 'bicycle', 'repaired.'], ['I', 'guess', "that's", 'impossible.'], ['The', 'helped', 'helped', 'me', 'fall', 'asleep.'], ["Don't", 'look', 'so', 'shocked.'], ['I', 'have', 'a', 'little', 'something', 'for', 'you.'], ['No', 'one', 'is', 'irreplaceable.'], ['You', 'look', 'fabulous.'], ['Thanks', 'for', 'your', 'work.'], ['This', 'is', 'a', 'very', 'difficult', 'problem.'], ['Tom', 'refused', 'to', 'pay', 'his', 'bills.'], ['I', 'know', 'Tom', 'was', 'forced', 'to', 'do', 'that.'], ['She', 'looked', 'at', 'the', 'picture', 'for', 'the', 'picture.'], ['Why', "aren't", 'you', 'all', 'doing', 'all', 'of', 'it?'], ["I'm", 'looking', 'for', 'my', 'words.'], ['I', 'have', 'a', 'different', 'opinion', 'from', 'yours.'], ['Because', 'of', 'the', 'time,', 'she', 'had', 'little', 'girl', 'I', 'had', 'little', 'contact', 'with', 'his', 'father.'], ['We', 'need', 'to', 'do', 'whatever', 'it', 'takes.'], ['No', 'matter', 'how', 'many', 'times', 'he', 'left', 'the', 'number', 'of', 'his', 'health.'], ["I'm", 'not', 'sure', 'that', "he'll", 'agree.'], ['I', 'think', 'you', 'know', 'that.'], ['Look', 'out', 'of', 'here.'], ['What', 'is', 'it', 'that', 'happening?'], ['He', 'taught', 'me', 'how', 'to', 'swim.'], ['The', 'station', 'is', 'all', 'the', 'front.'], ['Tom', "doesn't", 'drink', 'a', 'beer.'], ['He', 'voted', 'for', 'him.'], ['He', 'still', 'love', 'her.'], ['Did', 'you', 'tell', 'your', 'mother?'], ['I', 'gave', 'a', 'hand.'], ['He', 'had', 'to', 'get', 'enough', 'time', 'for', 'his', 'son.'], ['What', 'are', 'some', 'of', 'you', 'to', 'do?'], ['I', "couldn't", 'have', 'many', 'hours', 'trying', 'to', 'catch', 'my', 'trip.'], ['I', 'think', 'the', 'same', 'thing', 'as', 'I', 'did.'], ['We', 'decided', 'to', 'have', 'anything', 'else', 'on', 'his', 'choice'], ['Your', 'pitching', 'is', 'good', 'than', 'mine.'], ["You're", 'not', 'going', 'to', 'smoke,'], ['Do', 'you', 'really', 'need', 'to', 'ask', 'the', 'answer', 'to', 'ask', 'the', 'question?'], ["I'm", 'not', 'in', 'good', 'care', 'of', 'you.'], ['Do', 'you', 'think', 'Tom', 'can', 'help', 'me?'], ['Is', 'this', 'one', 'popular', 'is', 'popular', 'with', 'a', 'popular', 'sing?'], ['What', 'you', 'say', 'is', 'larger', 'than', 'you', 'say.'], ['The', 'girl', 'who', 'left', 'my', 'son', 'who', 'daughter', 'from', 'my', 'daughter', 'to', 'school.'], ['They', 'were', 'happy', 'to', 'make', 'friends.'], ['I', 'live', 'two', 'seconds.'], ['You', 'gave', 'me', 'your', 'word.'], ['Tom', 'closed', 'the', 'door', 'room.'], ['You', "didn't", 'let', 'me', 'answer.'], ['Do', 'you', 'know', 'what', 'time', 'the', 'time', 'happened?'], ['She', 'has', 'no', 'evidence.'], ['Sitting', 'all', 'day', "isn't", 'good', 'for', 'you.'], ["I'd", 'be', 'grateful', 'if', 'you', 'could', 'do', 'that', 'for', 'me.'], ['Bring', 'my', 'wallet.'], ['Have', 'you', 'ever', 'ever', 'before?'], ['I', 'appreciate', 'your', 'painting.'], ['When', 'it', 'was', 'the', 'bridge', 'of', 'what', 'it', 'was', 'raining.'], ["I'm", 'the', 'youngest', 'one', 'here.'], ['I', 'left', 'my', 'room', 'in', 'my', 'room.'], ['What', 'is', 'it', 'to', 'go?'], ["I'd", 'like', 'to', 'help', 'you', 'reach', 'your', 'goals.'], ['Tom', 'enjoyed', 'talking', 'to', 'Mary.'], ['From', 'now', 'on,', 'you', "can't", 'speak', 'French.'], ['Few', 'students', 'have', 'to', 'read', 'Latin.'], ["That's", 'not', 'telling', 'me', 'the', 'point.'], ['They', 'are', 'having', 'a', 'good', 'job.'], ["That's", 'all', 'here', 'happened.'], ["He's", 'drunk.'], ['What', 'I', 'want', 'is', 'likely', 'to', 'win', 'and', 'tea.'], ['A', 'great', 'rain', 'is', 'in', 'rain', 'for', 'the', 'evening.'], ['Who', 'forced', 'you', 'to', 'do', 'it?'], ['I', 'know', 'that', 'it', 'must', 'be', 'hard', 'for', 'you.'], ['The', 'baby', 'left', 'at', 'the', 'baby', 'baby.'], ['I', 'think', 'you', 'already', 'enough', 'enough', 'enough', 'enough', 'to', 'buy', 'you', 'needed.'], ['Tom', 'ordered', 'a', 'bottle', 'of', 'wine.'], ['Tom', 'answered', 'the', "teacher's", 'questions.'], ['We', 'both', 'have', 'the', 'same', 'problem.'], ['I', 'just', 'want', 'to', 'get', 'a', 'good', 'time.'], ['You', "can't", 'do', 'it,', 'do', 'you?'], ['Having', 'try', 'to', 'find', 'out', 'of', 'other', 'bridge', 'that', 'we', "don't", 'have', 'to', 'find', 'a', 'little', 'more', 'problem.'], ['Your', 'mother', 'read', 'much', 'too', 'much', 'longer.'], ['He', 'is', 'a', 'happy', 'place.'], ["I'll", 'give', 'up.'], ["Everybody's", 'a', 'exhausted.'], ['Tom', 'opened', 'the', 'door', 'and', 'Mary', "can't", 'stand', 'the', 'door', 'shut.'], ['The', 'water', 'is', 'growing.'], ['I', 'understand', "what's", 'happening.'], ["You're", 'being', 'polite', 'to', 'be', 'cruel.'], ['We', "can't", 'see', 'anything.'], ["I'm", 'sorry', 'I', 'disturbed', 'you.'], ['Can', 'you', 'empty', 'your', 'room?'], ['He', 'will', 'keep', 'an', 'American', 'facts', 'to', 'their', 'application.'], ['When', 'can', 'you', 'start?'], ['We', "don't", 'have', 'any', 'more', 'than', 'left.'], ["I'm", 'the', 'happiest', 'man', 'in', 'the', 'world.'], ['I', 'eat', 'here', 'every', 'day.'], ['I', 'never', 'thought', 'we', 'were', 'like', 'this.'], ["I'm", 'fed', 'up', 'with', 'the', 'same', 'thing.'], ['I', 'have', 'everything', 'I', 'need.'], ["I'm", 'just', 'a', 'normal', 'imagination.'], ["I'm", 'a', 'little', 'kind', 'of', 'one.'], ['This', 'book', 'is', 'very', 'small.'], ['I', 'hate', 'kids.'], ['I', 'want', 'to', 'meet', 'new', 'friends.'], ['Our', 'problems', 'with', 'problems', 'with', 'those', 'problems.'], ["You're", 'the', 'one', 'who', 'saved', 'me.'], ["I'd", 'be', 'disappointed', 'if', 'I', 'saw', 'you', 'doing', 'that.'], ['One', 'of', 'a', 'better', 'amount', 'of', 'danger', 'they', 'used', 'to', 'be', 'in', 'their', 'project.'], ['I', "don't", 'know', 'how', 'to', 'do', 'that.'], ['Keep', 'your', 'hands', 'clean.'], ['This', 'road', 'will', 'be', 'fixed.'], ['This', 'is', 'my', 'cat.'], ['Are', 'you', 'two', 'busy?'], ["We're", 'all', 'at', 'the', 'same', 'team.'], ["Don't", 'you', 'want', 'me', 'to', 'use', 'it?'], ['I', 'just', 'thought', 'you', 'were', 'happy.'], ["I'd", 'like', 'to', 'ask', 'dinner.'], ['I', "don't", 'think', 'you', 'would', 'do', 'that.'], ['Help', 'me', 'all', 'this.'], ['Take', 'it', 'to', 'them.'], ['Would', 'you', 'make', 'the', 'question?'], ["You're", 'not', 'as', 'young', 'as', 'you', 'used', 'to', 'be.'], ['When', 'did', 'you', 'see', 'Tom?'], ['Read', 'this', 'book,', 'please.'], ['How', 'long', 'does', 'it', 'take', 'to', 'this', 'time?'], ['Why', 'are', 'you', 'studying', 'French?'], ['Dogs', 'have', 'a', 'good', 'sense', 'of', 'humor.'], ['You', 'have', 'an', 'apology.'], ['What', 'shall', 'I', 'do', 'it?'], ["You're", 'not', 'the', 'only', 'Canadian', 'here.'], ['You', "don't", 'have', 'to', 'make', 'sure', 'mistakes.'], ['Tom', 'began', 'his', 'three', 'months', 'before', 'his', 'water', 'began', 'to', 'have', 'a', 'month.'], ['Is', 'there', 'any', 'other', 'beer?'], ['I', 'waited', 'ten', 'minutes.'], ['Everything', 'is', 'amazing.'], ['seen', 'a', 'guy', 'saw', 'a', 'tree.'], ["It's", 'not', 'so', 'complicated.'], ['This', 'is', 'a', 'pity.'], ['What', 'is', 'there', 'there', 'a', 'lot?'], ['Why', "don't", 'you', 'take', 'a', 'diet?'], ['I', "didn't", 'do', 'that', 'since', 'last', 'Monday.'], ["I'll", 'see', 'you', 'at', 'home.'], ['I', 'found', 'something.'], ["I'm", 'not', 'interested', 'in', 'anyone.'], ['You', 'should', 'have', 'said', 'this', 'secret.'], ['English', 'is', 'the', 'longest', 'language', 'in', 'a', 'native', 'language', 'in', 'the', 'world.'], ['You', 'must', 'be', 'careful.'], ['Please', 'answer', 'the', 'letter.'], ['I', 'thought', 'you', 'knew', 'that.'], ['I', 'thank', 'you.'], ['Could', 'you', 'speak', 'a', 'little', 'more', 'slowly,', 'please?'], ['He', 'raised', 'his', 'country.'], ["You're", 'being', 'prepared.'], ['They', 'want', 'you', 'dead.'], ['You', 'have', 'a', 'message.'], ['You', "don't", 'have', 'to', 'read', 'all', 'of', 'the', 'tickets', 'at', 'night.'], ['I', 'never', 'seen', 'a', 'look', 'like', 'that.'], ['I', 'have', 'to', 'talk', 'to', 'you', 'alone.'], ["Don't", 'you', 'remember', 'anything?'], ['Yesterday', 'I', 'played', 'tennis.'], ['Why', 'are', 'you', 'being', 'so', 'negative?'], ['The', 'world', 'knows', 'the', 'whole', 'point.'], ['What', 'you', 'told', 'me', 'a', 'great', 'noise', 'before.'], ['The', 'weather', 'is', 'time', 'for', 'the', 'time', 'ago.'], ['I', 'finished', 'the', 'job.'], ['Are', 'you', 'on', 'the', 'list?'], ['Drink', 'those', 'clothes', 'on.'], ['I', 'feel', 'lonely', 'when', "you're", 'not', 'here.'], ['This', 'is', 'something.'], ['Tom', 'is', 'having', 'a', 'good', 'station.'], ['I', 'wish', 'you', 'loud', 'with', 'laughter.'], ['You', 'need', 'to', 'come', 'home.'], ['Why', "don't", 'you', 'talk', 'to', 'him', 'for', 'him?'], ['I', 'appreciate', 'what', 'you', 'did', 'wrong.'], ['Close', 'the', 'door', 'when', 'you', 'enter', 'the', 'room.'], ['I', 'have', 'to', 'admit', "I'm", 'wrong.'], ["We're", 'not', 'students.'], ["I'm", 'always', 'working', 'for', 'work', 'by', 'myself.'], ['She', 'is', 'perfect', 'for', 'his', 'safety.'], ['A', 'pleasure', 'of', 'mine', 'came', 'to', 'me.'], ['We', 'will', 'have', 'a', 'little', 'help', 'from', 'the', 'way', 'to', 'lend', 'me', 'a', 'little', 'money.'], ['Please', 'smile.'], ["I'm", 'going', 'to', 'give', 'Tom', 'some', 'money.'], ['What', 'he', 'said', 'he', 'said', 'he', 'was', 'true.'], ['Something', 'has', 'happened.'], ['He', 'grew', 'up', 'with', 'his', 'classmates.'], ['I', 'do', 'not', 'like', 'him', 'anymore.'], ['Tom', "doesn't", 'get', 'here.'], ['What', 'happened', 'to', 'me', 'about', 'another', 'weather.'], ['What', 'a', 'shame!'], ["What's", 'worrying', 'you?'], ['They', 'can', 'handle', 'it.'], ["You'd", 'better', 'hurry.'], ['It', 'will', 'be', 'very,', 'very', 'hot.'], ['How', 'did', 'this', 'happen?'], ['Everyone', 'is', 'reading.'], ['Will', 'it', 'be', 'fine', 'tomorrow?'], ['You', 'are', 'wrong.'], ["I'm", 'going', 'to', 'let', 'you', 'go', 'to', 'your', 'job.'], ['Thanks', 'for', 'your', 'gift.'], ['Help', 'Tom.'], ["I'll", 'be', 'at', 'home', 'now.'], ['She', 'told', 'me', 'you', 'were', 'sick.'], ['Our', 'teacher', 'is', 'at', 'once,', 'but', 'to', 'do', 'as', 'much', 'as', 'he', 'grew', 'up.'], ['Have', 'you', 'eaten', 'lunch', 'yet?'], ['The', 'two', 'loves', 'me.'], ['Tom', 'is', 'a', 'very', 'good', 'guy.'], ['They', 'were', 'tired', 'of', 'problems.'], ['You', 'have', 'to', 'come', 'with', 'me.'], ['This', 'is', 'too', 'much.'], ["I'm", 'pleased', 'with', 'his', 'performance.'], ['I', 'think', "you're", 'nuts.'], ['French', 'young', 'man', 'ever', 'become', 'a', 'great', 'man.'], ['I', 'still', "don't", 'understand', 'what', "you're", 'talking', 'about.'], ['What', 'was', 'he', 'going', 'after', 'that?'], ['I', 'thought', "you'd", 'be', 'interested', 'in', 'that.'], ['It', 'should', 'be', 'more', 'than', 'shot.'], ['Did', 'you', 'hear', 'the', 'news?'], ['May', 'I', 'use', 'your', 'phone?'], ['Mary', 'asked', 'his', 'family.'], ['Bring', 'the', 'sugar,', 'please.'], ["I'm", 'a', 'famous', 'worker.'], ['He', 'jumped', 'across', 'the', 'rent', 'out', 'of', 'breath.'], ['His', 'new', 'book', 'had', 'a', 'serious', 'book', 'that', 'was', 'needed.'], ['I', 'shower', 'every', 'morning.'], ['They', 'left', 'all', 'the', 'same', 'time.'], ['I', "don't", 'agree', 'with', 'you.'], ['I', 'have', 'some', 'patience.'], ["I'm", 'about', 'to', 'know', 'much', 'more', 'than', 'you', 'make', 'your', 'life.'], ['I', 'had', 'a', 'lot', 'of', 'summer', 'vacation.'], ['You', "don't", 'know', 'what', 'Tom', 'is', 'doing.'], ['Tom', 'is', 'excited.'], ['You', "won't", 'be', 'shot.'], ['The', 'meeting', 'was', 'almost', 'the', 'meeting', 'was', 'amazing.'], ['There', 'was', 'too', 'much', 'in', 'the', 'pool.'], ['The', 'boat', 'capsized.'], ['I', "don't", 'believe', 'in', 'religion.'], ['Go', 'get', 'some', 'water.'], ['If', 'you', "don't", 'want', 'to', 'go,', 'you', "don't", 'have', 'to.'], ["We're", 'going', 'to', 'work', 'tonight.'], ["Don't", 'look', 'on', 'the', 'bench.'], ['He', 'wanted', 'to', 'become', 'a', 'farmer.'], ['Stand', 'up.'], ['I', 'tripped.'], ['I', "hadn't", 'sure', 'you', 'keep', 'a', 'secret.'], ["It's", 'quite', 'easy', 'to', 'understand', 'his', 'own.'], ['Be', 'content.'], ['Leave', 'this', 'tie', 'he', 'will', 'find', 'a', 'tie', 'at', 'this', 'store.'], ['I', 'find', 'you', 'very', 'attractive.'], ['I', 'saw', 'the', 'car', 'saw', 'his', 'car?'], ['Never', 'mind', 'because', 'I', 'just', 'stayed', 'up', 'with', 'bed', 'than', 'I', 'arrived.'], ['We', 'worry', 'about', 'a', 'good', 'joke', 'from', 'doing', 'it', 'is.'], ['No', 'one', 'knows.'], ['She', 'was', 'not', 'from', 'a', 'soccer', 'museum', 'from', 'the', 'ball.'], ['What', 'are', 'you', 'doing', 'your', 'free', 'time?'], ['Everything', 'is', 'all', 'the', 'money.'], ['What', 'do', 'you', 'like', 'to', 'do', 'on', 'your', 'free', 'time?'], ['You', 'look', 'better.'], ["I'm", 'thrilled.'], ['I', 'ran', 'away', 'with', 'Tom.'], ['Do', 'you', 'want', 'to', 'go', 'out', 'here?'], ['I', 'found', 'the', 'book', 'by', 'accident.'], ['I', "can't", 'believe', "you're", 'trying', 'to', 'believe', 'that.'], ['Where', 'is', 'your', 'father?'], ['Please', 'correct', 'the', 'butter,', 'please.'], ["They're", 'not', 'coming.'], ['He', 'made', 'a', 'new', 'coat.'], ['They', 'did', 'not', 'want', 'to', 'spend', 'much', 'time', 'talking', 'about', 'it.'], ['The', 'students', 'must', 'have', 'started', 'living', 'at', 'least', 'nine.'], ["I'll", 'come', 'when', 'you', 'come', 'when', 'I', 'get', 'out.'], ['He', 'went', 'to', 'New', 'York', 'in', 'New', 'York.'], ['This', 'is', 'the', 'place', 'where', 'I', 'was', 'born.'], ["You're", 'cantankerous.'], ['I', 'am', 'looking', 'for', 'a', 'rainy', 'day.'], ['You', 'look', 'a', 'little', 'shaken.'], ['He', 'gave', 'the', 'boy', 'to', 'be', 'a', 'child', 'one.'], ["I'm", 'unbiased.'], ['I', 'thought', 'you', 'had', 'a', 'bigger', 'month', 'last', 'month.'], ['No', 'one', 'can', 'tell', 'you', 'how', 'much', 'I', 'can', 'think', 'of', 'the', 'store', 'in', 'private?'], ['Pass', 'the', 'sugar,', 'please.'], ['I', 'have', 'to', 'meet', 'him', 'at', 'six.'], ['This', 'is', 'a', 'beer.'], ["I'm", 'tough.'], ['I', 'pretended', 'that', 'I', 'was', 'working.'], ['He', 'saw', 'himself', 'from', 'death.'], ["Don't", 'be', 'so', 'busy', 'that', "you're", 'so', 'often.'], ['We', 'spend', 'the', 'other', 'day', 'where', 'we', 'are.'], ['I', 'decided', 'not', 'to', 'say', 'that', 'I', 'say.'], ['That', 'difficult', 'is', 'very', 'difficult.'], ['She', 'was', 'almost', 'the', 'first', 'time', 'the', 'first', 'time', 'in', 'first', 'met', 'him.'], ['The', 'kids', 'can', 'proceed'], ["Don't", 'tell', 'my', 'promises.'], ['I', 'am', 'staying', 'in', 'a', 'hotel', 'in', 'Boston.'], ['This', 'food', "doesn't", 'like', 'water.'], ['I', 'like', 'learning', 'hard.'], ['I', 'work', 'in', 'a', 'pharmacy.'], ['Few', 'people', 'live', 'on', 'the', 'island.'], ['Hold', 'it', 'to', 'me', 'in', 'advance.'], ["Don't", 'make', 'it', 'upside', 'down.'], ['Tom', 'wants', 'to', 'know', "Mary's", 'more', 'about', 'Mary.'], ["Don't", 'open', 'the', 'door', 'for', 'anyone.'], ['The', 'game', 'was', 'killed.'], ['Do', 'you', 'think', 'Tom', 'can', 'help', 'us?'], ['This', 'company', 'has', 'many', 'ways.'], ['Let', 'me', 'explain', 'what', 'happened.'], ['At', 'time', 'you', 'have', 'time', 'for', 'someone', 'you', 'must', 'be', 'with', 'them.'], ['Can', 'you', 'keep', 'a', 'secret?'], ['Please', 'speak', 'more', 'loudly.'], ['You', 'must', 'study', 'harder', 'when', 'you', 'have', 'English.'], ['I', 'will', 'get', 'rid', 'of', 'each', 'other.'], ["We're", 'too', 'busy.'], ["You'll", 'have', 'plenty', 'of', 'water', 'with', 'this', 'dress.'], ['You', "don't", 'need', 'to', 'think', 'this', 'time.'], ['Please', 'shut', 'the', 'door.'], ['We', 'have', 'breakfast', 'at', 'a', 'time.'], ['It', "wasn't", 'enough.'], ['I', 'want', 'to', 'talk', 'out', 'of', 'my', 'country.'], ['His', 'plan', 'was', 'right.'], ['She', 'wants', 'him', 'to', 'be', 'a', 'friend.'], ['I', 'thought', 'we', 'were', 'friends.'], ['If', 'you', 'try,', "I'm", 'not', 'able', 'to', 'help', 'it', 'for', 'me.'], ['How', 'does', 'this', 'happen?'], ['Nothing', 'seems', 'right.'], ['The', 'Republican', 'thought', 'of', 'several', 'houses.'], ['We', 'will', 'repay', 'the', 'loss.'], ['Tom', 'is', 'the', 'person', 'I', 'heard', 'yesterday.'], ["Don't", 'make', 'fun', 'of', 'me.'], ['I', 'think', 'you', "don't", 'want', 'to', 'be', 'friendly', 'with', 'us.'], ['Sleep', 'you', 'get', 'rid', 'of', 'the', 'jam.'], ['The', 'old', 'man', 'used', 'to', 'live', 'on', 'an', 'old', 'task.'], ['They', 'have', 'to', 'drink.'], ['She', 'was', 'wearing', 'shoes.'], ['Life', 'is', "we're", 'worried.'], ['Where', 'are', 'your', 'things?'], ['We', 'want', 'to', 'meet', 'us', 'at', 'the', 'station.'], ['Your', 'coat', 'is', 'very', 'beautiful.'], ['She', 'wore', 'glasses.'], ['Does', 'it', 'snow', 'a', 'lot', 'in', 'French?'], ['Why', "don't", 'you', 'sing?'], ["They're", 'in', 'the', 'pond.'], ['Do', 'you', 'know', 'where', 'he', 'is?'], ["Don't", 'smoke', 'me.'], ['Tom', 'has', 'a', 'beautiful', 'garden.'], ['Be', 'prepared.'], ['I', 'had', 'to', 'see', 'you', 'again.'], ['I', "don't", 'have', 'that', 'matter.'], ['I', 'miss', 'her.'], ['Be', 'polite', 'with', 'your', 'parents.'], ['Tom', 'refused', 'to', 'protect', 'Mary', 'on', "Mary's", 'view.'], ['Even', 'Tom', 'had', 'no', 'time', 'to', 'answer', 'the', 'questions.'], ['You', 'were', 'good', 'after', 'all.'], ['Do', 'it', 'again!'], ['I', "don't", 'think', 'this', 'goes', 'to', 'this', 'place.'], ['Would', 'you', 'like', 'to', 'play', 'tennis', 'every', 'Sunday?'], ['I', 'thank', 'you', 'exactly.'], ['He', 'is', 'a', 'family', 'of', 'his', 'family.'], ["I'm", 'the', 'meeting', 'him.'], ['The', 'crowd', 'started', 'several', 'hours.'], ["I'm", 'going', 'to', 'the', 'next', 'next', 'week.'], ['He', 'has', 'a', 'very', 'big', 'ring.'], ['Does', 'Tom', 'see', 'us?'], ['Tom', 'lived', 'on', 'the', 'head', 'of', 'the', 'moon.'], ['We', 'have', 'to', 'follow', 'the', 'regulations.'], ['Tom', 'told', 'me', 'you', 'were', 'listening.'], ['This', 'is', 'disgusting.'], ['I', "couldn't", 'give', 'you', 'some', 'money.'], ["Someone's", 'visited', 'yesterday.'], ['Will', 'you', 'get', 'along', 'it?'], ['We', 'will', 'hurry.'], ['Thank', 'you', 'for', 'just', 'the', 'sentiment.'], ["That's", 'what', 'I', 'want', 'to', 'do', 'in', 'the', 'world.'], ['Boys', 'are', 'not', 'welcome.'], ['Tom', "doesn't", 'eat', 'pork.'], ['I', 'will', 'not', 'let', 'anything', 'feel', 'like', 'you.'], ['Tom', 'and', 'Mary', 'are', 'at', 'the', 'other', 'way', 'to', 'the', 'center', 'of', 'the', 'other', 'at', 'the', 'station.'], ['I', 'came', 'here', 'to', 'help', 'you.'], ['I', 'blame', 'you', 'for', 'this.'], ['She', 'went', 'for', 'her', 'room', 'for', 'her', 'room', 'for', 'her', 'room.'], ['I', "don't", 'like', 'swimming', 'in', 'the', 'swimming', 'pool.'], ['Our', 'school', 'was', 'burned', 'down.'], ['How', 'did', 'you', 'spend', 'your', 'free', 'time?'], ['I', 'paid', 'for', 'you.'], ['May', 'I', 'visit', 'you', 'that', 'you', 'visit', 'go?'], ['Take', 'a', 'walk.'], ['Are', 'they', 'going', 'to', 'say', 'that?'], ['Is', 'there', 'anyone', 'else', 'by', 'that?'], ['She', 'was', 'in', 'silence.'], ['Did', 'I', 'say', 'something', 'wrong?'], ['He', 'is', 'pretty', 'shy.'], ['That', 'box', 'is', 'on', 'the', 'paper.'], ['I', 'suspected', 'the', 'sound', 'guilty.'], ['When', 'did', 'you', 'see', 'it?'], ['I', 'just', 'want', 'to', 'stay', 'alone', 'right', 'now.'], ['I', 'want', 'to', 'see', 'you', 'smile.'], ['The', 'president', 'has', 'happened.'], ['I', 'had', 'a', 'headache.'], ['Keep', 'the', 'dog', 'off.'], ['You', 'should', 'discuss', 'the', 'other', 'more', 'careful.'], ['I', 'have', 'nothing', 'to', 'say.'], ['Tom', 'put', 'on', 'the', 'table.'], ['The', 'nurse', 'a', 'picture', 'of', 'a', 'picture', 'of', 'mine.'], ['This', 'is', 'the', 'best', 'word', 'to', 'speak.'], ['I', 'woke', 'up.'], ['Are', 'you', 'ready?'], ['You', 'can', 'eat', 'raw', 'fish.'], ['I', 'hope', 'it.'], ['Tom', 'is', 'quiet.'], ["Tom's", 'favorite', 'hundred', 'is', 'a', 'hundred', 'years', 'of', 'June.'], ["You're", 'the', 'one', 'of', 'my', 'behavior.'], ['I', "can't", 'collect', 'my', 'glasses.'], ['Is', 'it', 'OK', 'from', 'time?'], ['This', 'is', 'your', 'washing', 'washing', 'night.'], ["That's", 'nuts!'], ['He', 'had', 'time', 'for', 'him', 'every', 'time', 'yesterday.'], ['Is', 'this', 'yours?'], ['She', 'wrote', 'him', 'a', 'long', 'letter,', 'but', 'he', "didn't", 'mail', 'it.'], ['What', 'do', 'you', 'think', 'of', 'this', 'plan?'], ['I', 'have', 'a', 'friend', 'of', 'China.'], ['Did', 'you', 'tell', 'my', 'brother', 'in', 'the', 'car?'], ["It's", 'too', 'early', 'to', 'get', 'up.'], ['I', 'was', 'caught', 'under', 'a', 'shower.'], ['Maybe', "it's", 'a', 'good', 'idea.'], ['She', 'is', 'now', 'late.'], ['Quit', 'acting', 'like', 'a', 'baby.'], ['Did', 'Tom', 'tell', 'Mary', 'she', 'was', 'looking', 'at', 'the', 'wife?'], ['I', 'did', 'it', 'on', 'him.'], ['This', 'is', 'the', 'last', 'game.'], ["You're", 'really', 'gifted.'], ['What', 'was', 'your', 'answer', 'on', 'your', 'proposal?'], ['Do', 'you', 'like', 'mine?'], ['We', 'sat', 'around', 'the', 'park.'], ['What', 'did', 'you', 'answer?'], ['How', 'big', 'is', 'it.'], ['This', 'is', 'shameful.'], ['I', 'was', 'too', 'sure', 'to', 'do', 'anything.'], ['We', 'hurried', 'to', 'the', 'river.'], ['Can', 'you', 'solve', 'this', 'problem?'], ['I', 'saw', 'you', 'yesterday.'], ['Leave', 'it', 'to', 'me.'], ['May', 'I', 'use', 'your', 'phone?'], ["I'd", 'rather', 'do', 'this', 'alone.'], ['You', "can't", 'quit', 'now.'], ['I', 'wanted', 'you', 'to', 'do', 'that.'], ['Watch', 'out!'], ['He', 'is', 'trying', 'to', 'explain', 'his', 'wife', 'for', 'that.'], ["That's", 'what', 'I', 'need', 'to', 'know.'], ['She', 'told', 'him', 'to', 'marry', 'him.'], ['If', 'it', "wouldn't", 'make', 'sure', 'that', 'you', 'may', 'change', 'the', 'world', 'without', 'waiting.'], ['I', 'know', 'what', 'Tom', 'has', 'to', 'tell', 'me.'], ['We', 'smell', 'the', 'sea.'], ['Who', 'knows', "what's", 'going', 'to', 'happen?'], ['Is', 'this', 'pen', 'for', 'the', 'Christmas', 'bike?'], ['What', 'time', 'did', 'you', 'get', 'on', 'your', 'mother?'], ['Do', 'you', 'still', 'love', 'French?'], ['He', 'refused', 'to', 'pay.'], ['Do', 'you', 'mind', 'if', 'I', 'need', 'to', 'help', 'me', 'with', 'you?'], ['No', 'one', 'wants', 'it.'], ['Stop', 'making', 'me', 'blush.'], ['I', 'wonder', 'if', 'he', 'could', 'count', 'for', 'me.'], ['Do', 'you', 'want', 'to', 'use', 'mine?'], ['All', 'I', 'have', 'to', 'do', 'is', 'books.'], ['I', "didn't", 'mean', 'you', 'so', 'that', 'it', 'was', 'wrong.'], ['The', 'population', 'is', 'larger', 'than', 'the', 'size', 'of', 'the', 'United', 'States.'], ['Please', "don't", 'forget', 'to', 'help', 'me', 'wear', 'the', 'letters', 'that', 'I', 'gave', 'you.'], ['I', 'know', 'that', 'Tom', 'is', 'fun.'], ['I', 'think', 'we', 'need', 'a', 'doctor.'], ['Now', 'that', 'you', 'look', 'like', 'your', 'job,', 'you', 'need', 'to', 'look', 'happy.'], ['They', 'were', 'scolded', 'by', 'the', 'teacher.'], ['I', 'was', 'going', 'to', 'your', 'school.'], ['You', "didn't", 'sign', 'if', 'she', 'was', 'so', 'busy.'], ['Can', 'you', 'check', 'the', 'delay?'], ['The', 'possibilities', 'are', 'endless.'], ['I', 'hope', 'Tom', 'never', 'quit', 'prison.'], ['A', 'man', 'came', 'to', 'you', 'last', 'night.'], ["You're", 'not', 'like', 'others.'], ['I', 'wonder', 'who', 'is', 'doing', 'that.'], ['Everyone', 'seems', 'comfortable.'], ['Now', 'that', "he's", 'obsessed', 'with', 'what', 'you', 'need', 'to', 'be', 'around', 'now.'], ['She', 'left', 'her', 'umbrella.'], ["Don't", 'take', 'this', 'rope.'], ["You've", 'told', 'me', 'that.'], ['How', 'did', 'you', 'become', 'interested', 'in', 'studying', 'languages?'], ['A', 'car', 'parked', 'in', 'the', 'car', 'broke', 'out.'], ['He', 'looks', 'like', 'a', 'great', 'father.'], ["You're", 'the', 'one', 'who', 'saved', 'your', 'children.'], ['Tom', 'is', 'wearing', 'every', 'other', 'day.'], ['I', "don't", 'want', 'some', 'answers.'], ['I', "don't", 'think', 'they', 'should', 'do', 'that.'], ['We', 'want', 'answers.'], ['What', 'do', 'we', 'have', 'to', 'do', 'if', 'it', 'rains?'], ['I', 'really', 'am', 'quite', 'certain', 'of', 'that.'], ['Every', 'time', 'I', 'see', 'you,', 'I', 'think', 'of', 'him.'], ['He', 'stopped', 'to', 'smoke.'], ['Excuse', 'me,', 'can', 'I', 'reach', 'the', 'train', 'train', 'to', 'you?'], ['He', 'said', 'that', 'he', 'was', 'told', 'to', 'tell', 'him', 'angry.'], ['The', 'line', 'is', 'busy.'], ['Tom', 'was', 'wearing', 'a', 'black', 'coat.'], ['Tom', 'explained', 'the', 'plan', 'to', 'Mary.'], ['Two', 'people', 'have', 'caused', 'you', 'every', 'day?'], ['I', 'know', 'all', 'that.'], ['I', 'liked', 'that', 'one.'], ['We', 'have', 'to', 'obey', 'the', 'law.'], ['About', 'how', 'much', 'money', 'do', 'you', 'need?'], ['Take', 'a', 'picture', 'with', 'your', 'phone.'], ["It's", 'a', 'plant.'], ['Do', 'you', 'want', 'to', 'go?'], ['I', 'thought', 'Tom', 'was', 'at', 'school.'], ['How', 'come', "you're", 'not', 'dead?'], ["That's", 'a', 'girl', 'girl.'], ['Here', 'is', 'an', 'eye', 'against', 'the', 'sentence.'], ['You', 'chose', 'a', 'good', 'one.'], ['You', 'have', 'three', 'choices.'], ['He', 'is', 'a', 'professional', 'photographer.'], ["I've", 'never', 'lost', 'their', 'computer.'], ['Help', 'me', 'a', 'cab.'], ['Tom', 'usually', 'goes', 'to', 'school', 'by', 'bus.'], ['Have', 'you', 'ever', 'had', 'a', 'witness', 'in', 'a', 'witness'], ["You'd", 'better', 'start', 'at', 'once.'], ["I'd", 'love', 'to', 'love', 'with', 'you.'], ['It', 'was', 'the', 'wrong', 'cake.'], ['Do', 'you', 'think', 'Tom', 'should', 'do', 'it?'], ['I', 'still', 'have', 'the', 'door.'], ['He', 'used', 'to', 'like', 'a', 'child.'], ['A', 'lot', 'of', 'soldiers', 'began', 'to', 'take', 'out', 'of', 'the', 'clock.'], ['Tom', 'is', 'one', 'of', 'my', 'uncle', 'at', 'that', 'picture.'], ['Do', 'you', 'want', 'me', 'to', 'handle', 'this?'], ["I'm", 'sorry', 'if', 'I', 'disturbed', 'you.'], ['Once', 'he', 'is', 'a', 'great', 'arm', 'for', 'his', 'family', 'ago.'], ['I', 'was', 'surprised', 'by', 'the', 'last', 'time', 'that', 'were', 'present', 'at', 'the', 'news.'], ['Stop', 'harassing', 'me.'], ['She', 'had', 'his', 'son', 'that', 'he', "couldn't", 'walk', 'in', 'her', 'face.'], ['No', 'one', 'can', 'do', 'that.'], ['The', 'vending', 'machine', 'is', 'out', 'of', 'order.'], ["You're", 'too', 'slow.'], ['She', 'will', 'be', 'late', 'for', 'dinner.'], ['Why', 'did', 'you', 'come', 'here', 'today?'], ['I', 'missed', 'you.'], ['Tom', 'took', 'the', 'wrong', 'bus.'], ['A', 'man', 'man', 'the', 'man', 'died', 'a', 'man', 'man.'], ['Life', 'is', 'a', 'lot', 'of', 'ours.'], ['He', 'works', 'in', 'a', 'bank.'], ["I'm", 'not', 'going', 'to', 'go.'], ['It', 'was', 'so', 'hot', 'that', 'I', 'thought', 'I', 'thought', 'it', 'would', 'rain.'], ['I', 'almost', 'had', 'my', 'passport.'], ['I', "hadn't", 'planned', 'to', 'stay', 'here', 'if', 'I', 'stay', 'here.'], ['He', 'is', 'an', 'artist.'], ['Be', 'kind', 'to', 'herself.'], ["Don't", 'you', 'want', 'a', 'little', 'excitement?'], ['I', "don't", 'have', 'a', 'headache', 'headache'], ['It', 'was', 'working.'], ['Eat', "what's", 'smoking', 'is', 'illegal.'], ['I', "didn't", 'read', 'it', 'with', 'paper.'], ['Tom', 'never', 'really', 'told', 'me', 'why', 'he', 'was', 'crying,'], ["Don't", 'push', 'it.'], ['How', 'big', 'you', 'are!'], ["It's", 'very', 'dangerous', 'to', 'swim', 'in', 'this', 'river.'], ["I'll", 'make', 'you', 'proud', 'of', 'me.'], ["I'm", 'alone.'], ['How', 'do', 'you', 'know', "Tom's", 'girlfriend?'], ['How', 'can', 'you', 'stand', 'this?'], ["You're", 'tough.'], ['I', 'thought', 'that', 'you', 'wanted', 'us.'], ['Tom', 'has', 'made', 'a', 'lot', 'of', 'money.'], ['Is', 'it', 'yours?'], ['I', "didn't", 'know', 'what', 'to', 'say.'], ['Do', 'you', 'want', 'him?'], ['I', 'feel', 'faint.'], ['Just', 'keep', 'me', 'all', 'this.'], ['Despite', 'with', 'his', 'advice,', 'she', 'could', 'help', 'me', 'listen', 'to', 'me.'], ['The', 'situation', 'has', 'out', 'of', 'breath.'], ['What', 'was', 'Tom', 'fired?'], ['Which', 'browser', 'do', 'you', 'use?'], ['She', 'is', 'out', 'of', 'the', 'spelling', 'of', 'study.'], ['Why', "doesn't", 'Tom', 'sing?'], ["You've", 'got', 'a', 'lot', 'of', 'increase', 'in', 'the', 'air.'], ['I', 'wanted', 'to', 'see', 'you', 'too.'], ["I'm", 'ready', 'to', 'help', 'you.'], ['Take', 'a', 'head', 'on.'], ['Whoever', 'saying', 'that', 'is', 'a', 'liar.'], ["We're", 'your', 'last', 'team.'], ['He', 'stopped', 'drinking.'], ['I', 'wanted', 'you', 'to', 'have', 'what', 'you', 'were', 'doing.'], ['Translate', 'this', 'light', 'in', 'the', 'harder', 'more.'], ['I', "won't", 'believe', 'anything', 'at', 'all.'], ['We', 'all', 'have', 'been', 'stolen.'], ['They', 'supported', 'his', 'right', 'to', 'speak', 'freely.'], ['Is', 'Tom', 'ill?'], ['I', 'was', 'watching', 'TV', 'at', 'the', 'TV', 'dress.'], ['I', 'want', 'to', 'buy', 'a', 'book.'], ['There', 'was', 'another', 'one.'], ['I', "can't", 'be', 'able', 'to', 'eat', 'this.'], ["Someone's", 'trying', 'to', 'remind', 'me.'], ['Your', 'phone', 'is', 'amused.'], ['It', 'was', 'only', 'a', 'gold', 'one.'], ['I', 'never', "should've", 'sent', 'you.'], ['I', "don't", 'want', 'to', 'hear', 'your', 'theories.'], ['I', 'know', 'that', 'the', 'house', 'was', 'yours.'], ['My', 'cousin', 'is', 'slow.'], ['You', "wasn't", 'born', 'in', 'my', 'intention.'], ['You', "don't", 'seem', 'too', 'surprised.'], ['We', 'should', 'respect', 'our', 'parents.'], ['I', 'will', 'win.'], ['Did', 'you', 'enjoy', 'your', 'trip', 'to', 'London?'], ['I', 'found', 'a', 'heart', 'under', 'the', 'chair.'], ['Tom', 'studies', 'French.'], ['Everybody', 'wants', 'to', 'protect', 'you.'], ['Was', 'the', 'weather', 'going', 'to', 'Paris.'], ['We', 'have', 'to', 'find', 'a', 'loud', 'method.'], ['All', 'the', 'guests', 'have', 'gone', 'home.'], ['He', 'felt', 'his', 'voice.'], ['I', 'wonder', 'why', 'many', 'years', 'ago', 'is', 'so', 'many', 'here?'], ['I', 'want', 'you', 'to', 'go', 'somewhere.'], ['I', 'believe', 'this', 'chemical', 'to', 'study.'], ['Tom', 'was', 'a', 'little', 'jealous.'], ['Tom', 'looks', 'happy', 'today.'], ['I', "didn't", 'sleep', 'much', 'last', 'night.'], ["I'll", 'follow', 'you', 'singing.'], ["It's", 'time', 'for', 'lunch.'], ['I', 'prefer', 'unable', 'to', 'keep', 'the', 'patient', 'together', 'and', 'keep', 'a', 'short', 'cut.'], ['I', "don't", 'need', 'to', 'complain.'], ['You', 'smoke,', 'do', 'you?'], ['I', 'have', 'a', 'lot', 'of', 'time', 'about', 'what', 'time', 'about', 'last', 'week.'], ["It's", 'difficult', 'to', 'tell', 'the', 'truth.'], ['Why', 'is', 'our', 'problem?'], ["I'm", 'glad', 'you', 'called', 'me.'], ["That's", "what's", 'happening.'], ['May', 'I', 'have', 'this', 'riddle?'], ["That's", 'something', 'better', 'than', 'yesterday.'], ['I', 'never', 'thought', 'I', 'would', 'do', 'that.'], ['Tom', 'ran', 'wearing', 'a', 'coat.'], ['Stay', 'better', 'and', 'do', 'your', 'brother.'], ["It's", 'your', 'decision.'], ["You're", 'not', 'invited.'], ['I', 'must', 'go', 'to', 'sleep.'], ['I', 'need', 'to', 'talk', 'to', 'you.'], ['Give', 'me', 'a', 'beer.'], ['Is', 'that', 'what', 'you', 'think', 'I', 'want', 'to', 'hear?'], ['Where', 'did', 'you', 'meet?'], ["We'll", 'work', 'out', 'the', 'work', 'soon.'], ["They're", 'spies.'], ['I', "won't", 'take', 'it', 'personally.'], ['Please', 'save', 'medicine', 'for', 'money.'], ['I', 'guess', 'we', 'were', 'happy', 'with', 'each', 'other.'], ['How', 'much', 'price', 'is', 'the', 'price', 'of', 'every', 'breakfast', 'of', 'every', 'year.'], ['How', 'long', 'have', 'you', 'been', 'in', 'this', 'country?'], ['These', 'two', 'brothers', 'get', 'married.'], ['He', 'did', 'not', 'do', 'that.'], ['His', 'room', 'is', 'on', 'a', 'mess.'], ['She', 'is', 'busy', 'talking', 'to', 'English.'], ['I', 'thought', "you'd", 'gone', 'home.'], ['Is', 'this', 'your', 'car?'], ['I', 'want', 'to', 'earn', 'new', 'people.'], ['Tom', 'folded', "Mary's", 'hair.'], ['Love', 'was', 'wrong.'], ['Next', 'time,', 'you', "won't", 'be', 'so', 'lucky.'], ['Why', 'do', 'you', 'need', 'it?'], ['You', "weren't", 'married', 'so', 'you?'], ['He', 'trusted', 'confidence.'], ['The', 'man', 'like', 'a', 'child.'], ['Will', 'you', 'lend', 'me', 'everything?'], ["You've", 'got', 'the', 'answer.'], ["You've", 'gone', 'too', 'far.'], ['My', 'friend', 'are', 'to', 'go', 'to', 'you.'], ['Do', 'you', 'want', 'a', 'moment', 'I', 'want', 'to', 'buy', 'a', 'few', 'or', 'something?'], ['I', 'am', 'sure', 'I', 'want', 'you', 'to', 'get', 'me', 'up', 'for', 'you.'], ["They're", 'looking', 'for', 'you.'], ['Where', 'did', 'you', 'learn', 'this?'], ["I've", 'got', 'you.'], ['I', 'really', "don't", 'really', 'care.'], ['He', 'hurried', 'to', 'the', 'station.'], ['Tom', "doesn't", 'want', 'to', 'live', 'in', 'Boston.'], ['It', 'has', 'been', 'shot.'], ['Quit', 'acting', 'like', 'a', 'baby.'], ['I', 'must', 'get', 'there', 'now.'], ['Try', 'to', 'keep', 'a', 'little', 'more', 'longer.'], ['His', 'story', "isn't", 'true.'], ['He', 'likes', 'you', 'as', 'much', 'as', 'me.'], ["We'll", 'try', 'to', 'win.'], ['Take', 'off', 'the', 'lights', 'and', 'done.'], ['It', 'was', 'very', 'hot', 'as', 'he', 'went', 'here.'], ['Why', 'are', 'you', 'waiting', 'for', 'you?'], ['Let', 'me', 'take', 'this', 'down.'], ['I', 'need', 'no', 'need', 'to', 'put', 'up', 'in', 'my', 'clothes.'], ['Please', 'let', 'me', 'lose', 'my', 'apology.'], ['You', 'need', 'to', 'relax.'], ["You've", 'been', 'betrayed'], ['You', "don't", 'seem', 'very', 'pleased.'], ['Is', 'it', 'going', 'to', 'you?'], ['Someone', 'must', 'have', 'left', 'there.'], ['Tom', 'arrived', 'safely.'], ["I'm", 'reading', 'a', 'little.'], ['Give', 'it', 'to', 'the', 'rule.'], ["Don't", 'you', 'think', "it's", 'a', 'little', 'weird?'], ['He', 'is', 'a', 'poet.'], ["It's", 'a', 'long', 'time', 'to', 'leave', 'school.'], ['Take', 'this', 'poem', 'by', 'heart.'], ['May', 'I', 'offer', 'you', 'a', 'piece', 'of', 'pie?'], ['Are', 'you', 'mad?'], ['I', 'thought', 'my', 'mother', 'is', 'getting', 'cold.'], ['We', 'got', 'this', 'problem', 'at', 'the', 'problem', 'tonight.'], ['"May', 'I', 'help', 'you?"', '"Yes,', 'my', 'homework', 'will', 'get', 'it', 'by', 'mosquitoes.'], ['Something', 'might', 'have', 'something', 'that', 'something', 'happened.'], ['I', 'have', 'plenty', 'of', 'friends.'], ['I', "can't", 'find', 'the', 'rules.'], ["That's", 'my', 'father', 'father.'], ['Tom', "didn't", 'seem', 'to', 'smoke,', 'but', 'he', 'got', 'it.'], ['Should', 'I', 'call', 'me?'], ['The', 'book', 'is', 'white.'], ['That', "wasn't", 'exactly', 'the', 'plan.'], ["You're", 'a', 'bodybuilder,', "aren't", 'you?'], ['This', 'is', 'an', 'adventure.'], ["We're", 'going', 'to', 'finish', 'this.'], ['We', 'have', 'to', 'work', 'at', 'work', 'at', 'work', 'next', 'time.'], ['He', 'has', 'a', 'lot', 'of', 'books.'], ["Don't", 'be', 'upset.'], ['A', 'lot', 'of', 'TV', 'in', 'front', 'of', 'the', 'lights', 'is', 'watching', 'TV.'], ['Tom', 'read', 'the', 'story', 'of', 'books', 'before.'], ['I', 'called', 'him', 'out.'], ['Keep', 'your', 'hands', 'on.'], ['I', 'know', 'that', 'Tom', 'is', 'a', 'thief.'], ['I', 'have', 'a', 'brother', 'and', 'a', 'nice', 'sister.'], ["I'm", 'used', 'to', 'disagree.'], ['I', 'just', "don't", 'want', 'anyone', 'just', 'hurt.'], ['Mastering', 'a', 'foreign', 'language', 'is', 'difficult.'], ['Hand', 'in', 'the', 'car', 'for', 'the', 'car', 'for', 'it.'], ['I', 'open', 'the', 'door.'], ['Our', 'class', 'painted', 'the', 'test', 'between', 'each', 'winter.'], ['He', 'seems', 'to', 'make', 'fun', 'of', 'here.'], ['Would', 'you', 'like', 'more', 'change?'], ['Have', 'you', 'got', 'a', 'problem?'], ['The', 'guy', 'is', 'that', 'I', 'said', 'anything', 'to', 'blame.'], ["That's", 'what', 'he', 'told', 'us', 'three', 'weeks', 'and', 'he', 'got', 'married.'], ['She', 'had', 'a', 'basket', 'full', 'of', 'apples.'], ["There's", 'nothing', 'here.'], ['You', 'have', 'a', 'bad', 'place.'], ['Things', 'got', 'out', 'of', 'breath.'], ["I'd", 'like', 'to', 'ask', 'you', 'some', 'more', 'questions.'], ['I', 'want', 'a', 'piece', 'of', 'pie.'], ['If', 'you', 'remember?'], ['Is', 'there', 'anything', 'else', 'you', 'want?'], ["We're", 'doing', 'if', 'we', 'are', 'here.'], ['I', 'was', 'really', 'being', 'really', 'cried.'], ['I', "couldn't", 'find', 'it.'], ['I', 'require', 'your', 'advice.'], ["You're", 'not', 'too', 'late.'], ['Nothing', 'was', 'bleeding.'], ['Dinner', 'is', 'ready.'], ['I', "don't", 'like', 'the', 'way', 'it', 'makes', 'me', 'feel?'], ['It', 'was', 'very', 'clean.'], ['Tom', "doesn't", 'know', 'that', 'I', "can't", 'do', 'it.'], ['Can', 'I', 'talk', 'to', 'you', 'for', 'a', 'moment?'], ['We', 'come', 'in', 'three', 'hours.'], ['We', 'have', 'another', 'place', 'to', 'live.'], ['There', 'was', 'a', 'lot', 'of', 'snow.'], ['I', 'went', 'to', 'a', 'pair', 'of', 'time', 'with', 'my', 'friends.'], ['I', 'doubt', 'what', 'it', 'happened.'], ['Why', 'did', 'you', 'know', 'him?'], ['He', 'is', 'hiding', 'in', 'the', 'closet.'], ['Tom', "didn't", 'seem', 'to', 'get', 'out', 'of', 'the', 'kitchen.'], ['She', 'put', 'her', 'hat', 'out.'], ['Since', 'it', 'takes', 'me', 'to', 'get', 'a', 'few', 'minutes,', 'but', 'I', 'feel', 'like', 'it', 'when', 'I', 'will', 'feel', 'a', 'native', 'speaker,', 'but', 'I', 'will', 'get', 'it', 'for', 'a'], ['Do', 'you', 'have', 'any', 'idea', 'what', 'happened?'], ['Take', 'it', 'on.'], ['You', "don't", 'look', 'so', 'busy.'], ['I', 'used', 'to', 'get', 'this', 'old', 'shirt.'], ['French', 'is', 'a', 'very', 'difficult', 'language.'], ["Don't", 'let', 'that', 'chance.'], ['I', 'feel', 'faint.'], ['We', 'appreciate', 'your', 'help.'], ['Tomorrow,', 'God', 'willing,', "we'll", 'be', 'with', 'your', 'parents.'], ['He', 'has', 'no', 'intention', 'of', 'our', 'marriage.'], ['I', 'called', 'the', 'house.'], ['Let', 'me', 'go!'], ['It', 'happened', 'before.'], ['He', 'said', 'he', 'was', 'trying', 'to', 'get', 'the', 'washing', 'off.'], ['I', 'want', 'to', 'be', 'certain', 'you', 'are', 'who', 'you', 'say', 'you', 'are.'], ["She's", 'not', 'what', 'you', 'think', 'is', 'kind', 'of', 'flattered.'], ['I', "don't", 'know', 'why', 'you', "don't", 'like', 'me.'], ['I', 'thought', 'I', 'knew', 'yesterday.'], ['Where', 'do', 'you', 'want', 'to', 'come', 'in?'], ['I', 'locked', 'myself', 'out', 'of', 'my', 'house.'], ['Too', 'many', 'sweets', 'make', 'you', 'fat.'], ['Where', 'are', 'we', 'going', 'to', 'die?'], ['Get', 'in', 'the', 'bus.'], ['Did', 'I', 'give', 'you', 'that?'], ['I', 'really', "would've", 'missed', 'you.'], ['I', 'suggest', 'we', 'get', 'out', 'of', 'us.'], ['I', 'felt', 'happy.'], ["I'm", 'busy', 'now,', 'so', 'I', "can't", 'go.'], ['You', "shouldn't", 'trust', 'Tom.'], ['Hey,', 'I', "can't", 'walk', 'anymore.'], ['The', 'fire', 'is', 'standing', 'from', 'the', 'corner.'], ['Take', 'out', 'of', 'date.'], ['She', 'has', 'many', 'difficulties.'], ['I', 'know', 'Tom', 'was', 'right.'], ['Let', 'me', 'see', 'it.'], ["I'll", 'be', 'very', 'glad', 'to', 'hear', 'you', 'be', 'disappointed.'], ['I', 'got', 'up', 'earlier', 'than', 'usual', 'the', 'first', 'train.'], ['What', 'do', 'you', 'spend', 'time', 'with', 'your', 'time?'], ['I', 'think', "it's", 'good', 'at', 'now.'], ["You're", 'going', 'to', 'be', 'here', 'as', 'soon', 'as', 'you', 'arrive', 'here.'], ['I', 'felt', 'myself.'], ['Let', 'me', 'get', 'my', 'wallet.'], ['Not', 'the', 'keys', 'to', 'keep', 'them', 'in', 'the', 'world', 'of', 'a', 'time.'], ['Does', 'she', 'have', 'a', 'piano?'], ['Tom', 'is', 'interested', 'in', 'Boston.'], ['This', 'mountain', 'has', 'a', 'relatively', 'mountain', 'stone.'], ['He', 'was', 'a', 'relief.'], ['Do', 'you', 'have', 'a', 'green', 'ride?'], ['Is', 'there', 'a', 'lawyer', 'in', 'private?'], ['Do', 'you', 'do', 'it', 'today?'], ['I', 'need', 'a', 'bigger', 'store.'], ['Frankly', 'speaking,', 'he', 'could', 'see', 'his', 'way', 'he', 'knew.'], ["I'm", 'used', 'to', 'it.'], ['This', 'is', 'an', 'apple.'], ['Thank', 'you', 'so', 'much.'], ['I', 'wonder', 'why', "it's", 'so', 'shy.'], ['We', 'managed', 'to', 'see', 'us', 'if', 'we', "don't", 'have', 'to', 'go', 'to', 'us.'], ['We', 'hate', 'it', 'when', 'it', 'was', 'raining.'], ['I', 'wear', 'designer', 'glasses.'], ['I', 'was', 'the', 'one', 'last', 'month.'], ["He's", 'good', 'at', 'soccer.'], ['Tom', "doesn't", 'know', 'what', 'Mary', 'wants', 'to', 'do', 'anything', 'to', 'do.'], ['I', "don't", 'know', 'his', 'address.'], ['I', 'hope', 'you', 'two', 'are', 'happy.'], ['The', 'price', 'of', 'crime', 'in', 'a', 'crime', 'in', 'the', 'weather.'], ['He', 'hurried', 'to', 'the', 'train', "wouldn't", 'miss', 'the', 'train.'], ['Several', 'houses', 'live', 'in', 'the', 'sea.'], ['Please', 'correct', 'the', 'salad.'], ['He', 'lay', 'up', 'to', 'rain', 'in', 'his', 'sleep.'], ['You', "can't", 'tell', 'anyone', 'about', 'it.'], ['Your', 'name', 'is', 'Tom', 'off.'], ['We', 'lost', 'the', 'day', 'when', 'the', 'day', 'was', 'closed.'], ['She', 'spoke', 'into', 'the', 'mirror.'], ['My', 'phone', 'was', 'on', 'the', 'time.'], ['Can', 'I', 'tell', 'you', 'something', 'very', 'personal?'], ['While', 'he', 'realized', 'he', 'is', 'his', 'mistake.'], ['Have', 'you', 'seen', 'your', 'car?'], ["I'll", 'give', 'up.'], ['That', 'flower', 'is', 'beautiful,', "isn't", 'it?'], ['Did', 'I', 'really', 'do', 'that?'], ['Yours', 'is', 'better.'], ['That', 'game', 'is', 'refreshing.'], ['I', 'still', "haven't", 'been', 'a', 'teacher.'], ['Tom', 'is', 'acting', 'a', 'gun.'], ["I'm", 'still', 'drunk.'], ["He's", 'a', 'little', 'jealous.'], ['He', 'was', 'unaware', 'of', 'the', 'danger.'], ['I', 'suggest', 'we', 'get', 'fat.'], ['She', 'was', 'asked', 'by', 'him', 'to', 'call', 'him', 'and', 'asked', 'him', 'about', 'his', 'name.'], ['How', 'did', 'I', 'get', 'here?'], ["Don't", 'forget', 'to', 'sing.'], ['The', 'train', 'got', 'out', 'of', 'the', 'storm.'], ['Tom', "won't", 'say', 'no.'], ['He', 'was', 'sick', 'for', 'a', 'long', 'time.'], ['Tom', 'told', 'Mary', 'the', 'truth.'], ['Thanks', 'for', 'a', 'couple', 'of', 'children', 'to', 'watch', 'tonight.'], ['Everyone', 'is', 'talking', 'about', 'his', 'family.'], ['I', 'know', 'I', 'can', 'do', 'this', 'anymore.'], ["Don't", 'put', 'the', 'things', 'before', 'the', 'world.'], ['The', 'buying', 'people', 'hate', 'the', 'possibility', 'if', 'you', "don't", 'like', 'the', 'music.'], ['We', "don't", 'trust', 'Tom.'], ['God', 'bless', 'you!'], ['He', 'made', 'up', 'the', 'old', 'against', 'against', 'the', 'crisis.'], ['I', 'thought', 'Tom', 'had', 'a', 'pretty', 'good', 'job.'], ['This', "isn't", 'the', 'money.'], ['We', 'need', 'someone', 'to', 'help', 'someone', 'who', 'can', 'help', 'us.'], ['Do', 'I', 'annoy', 'you?'], ['We', "can't", 'keep', 'this', 'a', 'secret.'], ['I', 'think', "you're", 'a', 'little', 'too', 'careful.'], ['The', 'book', 'is', 'on', 'the', 'bicycle', 'in', 'the', 'marriage.'], ['He', 'had', 'to', 'stop', 'smoking.'], ["I'm", 'living', 'in', 'French', 'customers.'], ['Tom', 'called', 'me', 'so', 'much.'], ['I', "didn't", 'want', 'to', 'believe', 'it.'], ['I', 'think', 'he', 'knows', 'his', 'wife.'], ['Return', 'your', 'gear.'], ['Tom', 'filled', 'the', 'bucket', 'with', 'water.'], ['papers', 'in', 'the', 'pond', 'of', 'the', 'one.'], ['Do', 'you', 'want', 'to', 'go', 'to', 'the', 'zoo?'], ['I', 'love', 'your', 'house.'], ['Americans', 'love', 'to', 'talk', 'to', 'the', "children's", 'with', 'people', 'in', 'the', "children's", 'for', 'children.'], ['Do', 'you', 'want', 'me', 'to', 'be', 'treated', 'on', 'some', 'examples?'], ['Not', 'people', 'think', "it's", 'hard', 'for', 'people.'], ['Everyone', 'is', 'quiet.'], ["They're", 'students.'], ['I', 'am', 'a', 'walk.'], ['Tom', 'hid', 'the', 'door', 'behind', 'the', 'door.'], ['I', 'just', "don't", 'want', 'to', 'bug', 'you.'], ["It's", 'so', 'hot', 'that', 'you', 'can', 'afford', 'to', 'grow', 'on', 'the', 'hood', 'of', 'hot', 'cancer.'], ['I', 'speak', 'French', 'at', 'the', 'next', 'teacher.'], ['We', 'are', 'trying', 'to', 'do', 'that.'], ['The', 'sea', 'was', 'calm.'], ['It', 'was', 'a', 'wonderful', 'surprise.'], ['He', 'must', 'have', 'no', 'sense', 'of', 'humor.'], ["You're", 'right,', 'I', 'think.'], ['Food', 'is', 'difficult', 'to', 'learn.'], ['How', 'often', 'do', 'you', 'listen', 'to', 'me?'], ['He', 'was', 'here.'], ["I'm", 'not', 'a', 'spoiled', 'child.'], ["I'll", 'be', 'on', 'our', 'schedule', 'tomorrow.'], ['When', 'he', 'opened', 'the', 'sky,', 'he', 'was', 'looking', 'for.'], ["We're", 'leaving', 'the', 'house.'], ['We', 'were', 'bored', 'with', 'his', 'death.'], ['I', 'have', 'the', 'same', 'age', 'as', 'you', 'are.'], ['I', "wasn't", 'prepared.'], ['I', 'was', 'worried', 'about', 'what', 'I', 'was', 'talking', 'with', 'her.'], ['He', 'caught', 'a', 'cold.'], ["We're", 'sneaky.'], ['His', 'time', 'is', 'to', 'go', 'to', 'bed.'], ['She', 'called', 'him.'], ['I', 'hear', 'a', 'phone', 'number.'], ['How', 'did', 'you', 'become', 'interested', 'in', 'languages?'], ['I', 'wake', 'up', 'at', 'six.'], ['Tom', 'never', 'was', 'overweight.'], ['I', 'just', 'wanted', 'to', 'write', 'songs.'], ["I'm", 'sorry', 'I', 'yelled', 'at', 'you.'], ['I', 'met', 'the', 'letters', "I've", 'met', 'him', 'yet.'], ['He', 'is', 'better', 'at', 'the', 'best', 'of', 'the', 'best', 'ones.'], ['Do', 'it', 'need', 'to', 'walk.'], ['The', 'hard', 'of', 'the', 'company', 'is', 'growing', 'hard', 'on', 'the', 'future', 'of', 'an', 'urgent', 'need', 'to', 'remove', 'the', 'big', 'power', 'of', 'an', 'urgent', 'future', 'acquired', 'in', 'the', 'future'], ["Don't", 'forget', 'to', 'turn', 'off', 'the', 'light.'], ['I', 'think', "it's", 'pretty', 'difficult', 'for', 'him', 'to', 'understand.'], ["We're", 'not', 'invited.'], ['If', 'I', 'were', 'in', 'your', 'place,', 'I', "wouldn't", 'do', 'that.'], ['What', 'did', 'you', 'do', 'at', 'school', 'today?'], ['He', 'is', 'always', 'complaining', 'about', 'his', 'salary.'], ['I', 'think', "it's", 'Tom.'], ['We', "can't", 'do', 'what', 'Tom', 'do,', 'us.'], ["You're", 'not', 'allowed', 'to', 'park', 'there.'], ['He', 'thinks', 'of', 'the', 'money.'], ['Nothing', 'would', 'make', 'me', 'happier', 'than', 'to', 'see', 'you', 'happy.'], ['Mom', 'has', 'not', 'arrived.'], ['When', 'did', 'you', 'learn', 'to', 'learn', 'English?'], ['Why', 'are', 'you', 'so', 'good', 'at', 'explaining', 'things?'], ['I', 'have', 'to', 'solve', 'this', 'problem.'], ['I', 'think', 'Tom', 'will', 'come', 'back.'], ['She', 'made', 'him', 'like', 'the', 'dog.'], ['The', 'ship', 'was', 'signed', 'the', 'main', 'policy.'], ['She', 'has', 'a', 'good', 'counselor.'], ['Did', 'I', 'wake', 'you?'], ['Tom', "doesn't", 'know', 'how', 'very', 'much', 'of', 'one', 'can', 'swim.'], ['I', 'want', 'you', 'to', 'understand', 'this', "isn't", 'going', 'to', 'be', 'easy.'], ['Come', 'in', 'the', 'fridge', 'of', 'a', 'tube.'], ["I'm", 'sure', 'that', 'he', 'will', 'win', 'the', 'future.'], ['Are', 'you', 'kidding?'], ['I', 'want', 'the', 'soup.'], ['Everything', 'is', 'ready.'], ["I'm", 'pretty', 'sure', 'that', "I'm", "Tom's", 'job.'], ["It's", 'high', 'time', 'you', 'left', 'in', 'bed.'], ['With', 'a', 'little', 'more', 'expensive', 'than', 'he', 'would', 'succeed.'], ['She', 'has', 'given', 'her', 'gun', 'on', 'a', 'gun.'], ['Tom', 'hopes', 'Mary', 'will', 'come', 'next', 'month.'], ['Some', 'people', 'were', 'arrested.'], ['She', 'brought', 'me', 'up.'], ["Don't", 'leave', 'the', 'children', 'alone.'], ['She', 'always', 'says', 'that', 'always', 'as', 'his', 'gun', 'in', 'the', 'always', 'every', 'ways.'], ['How', 'is', 'it', 'possible?'], ['They', 'say', 'he', 'is', 'the', 'richest', 'person', 'in', 'the', 'world.'], ['We', 'waited', 'good', 'friends.'], ["I'm", 'going', 'to', 'get', 'some', 'coat.'], ['Do', 'you', 'think', 'you', 'have', 'to', 'stay', 'long?'], ['You', 'look', 'good', 'in', 'black.'], ['All', 'we', 'can', 'do', 'is', 'wait.'], ["I'm", 'not', 'proud', 'of', 'it.'], ['Tom', 'should', 'tell', 'Mary', 'what', 'he', 'wants.'], ["I'm", 'as', 'tall', 'as', 'Tom', 'is.'], ['The', 'President', 'of', 'a', 'great', 'place', 'is', 'very', 'long.'], ['Stay', 'very', 'still.'], ['I', "haven't", 'read', 'the', 'box', 'very', 'well.'], ['We', 'have', 'to', 'keep', 'you', 'down.'], ["You'll", 'get', 'in', 'trouble.'], ["I'll", 'do', 'it', 'with', 'you.'], ['He', 'has', 'a', 'loud', 'tan.'], ['I', 'only', 'have', 'one', 'sister.'], ['We', 'have', 'a', 'lot.'], ['My', 'brother', 'is', 'dead.'], ['I', 'must', 'sleep.'], ['My', 'car', 'was', 'out', 'of', 'gas.'], ["You're", 'not', 'supposed', 'to', 'let', 'you', 'know', 'the', 'truth.'], ['A', 'week', 'is', 'out', 'of', 'fashion', 'around', 'here.'], ['I', 'had', 'a', 'message', 'just', 'about', 'another', 'week.'], ['He', 'was', 'excommunicated.'], ['Come', 'along', 'by', 'the', 'day.'], ['Tom', 'put', 'the', 'box.'], ['What', 'a', 'dope!'], ["I'll", 'find', 'out', 'of', 'what', 'I', 'expected.'], ['I', 'think', 'we', 'must', 'not', 'be', 'careful', 'for', 'the', 'very', 'careful', 'of', 'advice.'], ["Shouldn't", 'you', 'police', 'the', 'police', 'station?'], ['We', 'have', 'a', 'gunshot.'], ['Tom', 'and', 'Mary', 'laughed', 'at', 'their', 'understanding.'], ['If', 'Tom', 'had', 'told', 'he', 'tried,', 'he', 'tried,', 'the', 'door.'], ["I'm", 'trying', 'to', 'call', 'the', 'house.'], ['I', 'was', 'too', 'tired', 'to', 'walk', 'on', 'working.'], ['I', 'really', "don't", 'want', 'to', 'eat', 'any', 'mistakes', 'in', 'this', 'day.'], ['How', 'clear', 'of', 'you!'], ['Tom', 'had', 'the', 'best', 'money', 'when', 'he', 'had', 'a', 'lot', 'of', 'day.'], ['Call', 'me', 'when', "it's", 'done.'], ['I', 'just', "don't", 'think', 'of', 'you.'], ['He', 'went', 'to', 'the', 'office', 'to', 'the', 'post', 'office.'], ['I', 'have', 'a', 'date', 'of', 'cancer.'], ['Tom', 'saw', 'Mary.'], ["What's", 'the', 'good', 'news?'], ['Tom', 'has', 'come', 'back.'], ['The', 'first', 'time', 'is', 'easy.'], ['I', "don't", 'have', 'enough', 'money.'], ['Tom', 'was', 'determined', 'to', 'notice', 'anything', 'about', 'that', 'death.'], ['He', 'looks', 'like', 'a', 'great', 'arm', 'before', 'she', 'is.'], ['Do', 'you', 'have', 'a', 'opinion?'], ["I'm", 'delighted', 'to', 'meet', 'you.'], ['I', "don't", 'have', 'anything', 'tonight.'], ['I', "don't", 'understand', 'why', 'you', "don't", 'eat', 'this,', 'and', 'I', "don't", 'think', 'it', 'is.'], ["Don't", 'expect', 'it', 'who', 'can', 'help', 'Tom.'], ['Do', 'it', 'again!'], ['I', 'love', 'to', 'play', 'the', 'same', 'time', 'and', 'relax.'], ["You're", 'so', 'tired!'], ['This', 'is', 'my', 'bicycle.'], ['The', 'cat', 'jumped', 'in', 'the', 'sun.'], ['I', 'wanted', 'to', 'know', 'that', 'too.'], ['Have', 'a', 'great', 'trip.'], ['He', 'gave', 'a', 'car', 'that', 'I', 'gave', 'him.'], ['The', 'rumor', 'spread', 'that', 'there', 'are', 'the', 'way', 'to', 'be', 'all', 'over.'], ['Hold', 'on', 'the', 'right', 'way.'], ['He', 'has', 'many', 'books', 'in', 'a', 'lot', 'of', 'books.'], ['Tom', 'wanted', 'to', 'buy', 'it.'], ['People', "don't", 'seem', 'to', 'be', 'paid', 'but', 'but', 'become', 'of', 'us', 'happy.'], ['Could', 'you', 'not', 'do', 'that', 'here?'], ['I', "don't", 'see', 'any', 'problem', 'with', 'this.'], ['Can', 'you', 'think', 'of', 'any', 'better', 'than', 'can', 'happen?'], ["That's", 'where', 'my', 'father.'], ["I'm", 'glad', 'to', 'hear', 'it.'], ['Welcome', 'to', 'the', 'store.'], ['They', 'want', 'to', 'tell', 'you', 'their', 'story.'], ["I'd", 'like', 'to', 'hear', 'you', 'play', 'the', 'piano.'], ['I', "didn't", 'want', 'to', 'be', 'seen.'], ['Tom', 'never', 'left', 'Mary.'], ["I'm", 'going', 'to', 'get', 'him', 'to', 'my', 'eyes', 'checked.'], ['Stop', 'what', 'you', 'say.'], ["What's", 'wrong', 'with', 'you', 'in', 'the', 'room?'], ['I', 'always', 'collected', 'things', 'to', 'happen', 'out', 'of', 'the', 'way', 'of', 'women.'], ['Why', "didn't", 'you', 'tell', 'us?'], ['Time', 'weather', 'holds.'], ['You', "don't", 'have', 'to', 'wait', 'until', 'the', 'end.'], ['I', 'fix', 'my', 'car', 'repaired.'], ['Dozens', 'of', 'letters', 'around', 'you', 'were', 'wearing.'], ["How's", 'your', 'family', 'doing?'], ['It', "doesn't", 'suit', 'you.'], ['This', 'is', 'an', 'incredible', 'job.'], ['A', 'big', 'deal', 'was', 'destroyed', 'every', 'child', 'in', 'the', 'village.'], ['I', "don't", 'know', "what's", 'happening.'], ['How', 'can', 'you', 'be', 'sure', 'of', 'that?'], ['This', 'TV', 'is', 'as', 'strong', 'as', 'it', 'is', 'used', 'to', 'be.'], ['I', 'need', 'kids.'], ["You're", 'very', 'clever.'], ['He', 'wrote', 'my', 'advice.'], ["I'm", 'not', 'used', 'to', 'the', 'task.'], ['I', 'think', "I'm", 'talking', 'to', 'you.'], ['I', 'wanted', 'to', 'do', 'something', 'like', 'that.'], ['He', "doesn't", 'speak', 'my', 'language.'], ['I', "don't", 'think', 'I', 'have', 'the', 'teacher.'], ['No', 'one', 'will', 'help', 'her', 'change', 'the', 'job.'], ['Do', 'you', 'have', 'a', 'pen', 'I', 'wanted', 'to', 'use?'], ["Don't", 'be', 'afraid', 'of', 'your', 'words.'], ['Do', 'you', 'feel', 'like', 'coffee', 'in', 'the', 'United', 'States.'], ['I', 'really', "don't", 'understand', 'why.'], ['I', 'knew', 'we', 'could', 'do', 'it', 'first.'], ['When', 'will', 'you', 'get', 'back?'], ["I'll", 'be', 'praying', 'for', 'you.'], ['You', 'have', 'no', 'idea', 'how', 'much', 'time', 'I', 'dream'], ['You', 'do', 'things', 'too', 'a', 'few', 'things', 'with', 'them.'], ['I', 'am', 'afraid', 'of', 'the', 'afraid', 'of', 'the', 'evidence.'], ['Tom', 'volunteered', 'to', 'help', 'us.'], ["It's", 'getting', 'worse', 'again.'], ['Everyone', 'always', 'knows', 'that.'], ["I'm", 'quite', 'ready.'], ['I', 'woke', 'up,', 'of', 'them.'], ['I', 'had', 'to', 'pay', 'for', 'a', 'moment', 'paid', 'for', 'the', 'test.'], ['That', 'smells', 'bad.'], ['You', 'can', 'come', 'home.'], ['We', 'are', 'lazy.'], ['Tom', 'is', 'a', 'man', 'of', 'years', 'old.'], ['Tom', 'shut', 'the', 'room.'], ['Get', 'a', 'bus', 'stop', 'and', 'take', 'the', 'bus', 'at', 'the', 'airport.'], ['Tom', 'finally', 'made', 'up', 'the', 'top', 'of', 'the', 'finally', 'finally', 'over.'], ['I', 'was', 'watching', 'place.'], ['I', 'expected', 'you', 'to', 'be', 'here', 'for', 'lunch.'], ['He', 'has', 'yesterday.'], ['I', 'am', 'not', 'wearing', 'any', 'underwear.'], ['I', 'think', "it's", 'OK.'], ["That's", 'why', 'I', 'sent', 'you.'], ['What', 'year', 'were', 'you', 'born?'], ['That', 'changes', 'nothing.'], ['That', 'should', 'eventually', 'sit', 'down.'], ['I', 'know', 'he', 'is', 'trying', 'to', 'stop', 'the', 'rest', 'of', 'his', 'own.'], ['This', 'is', 'the', 'correct', 'answer.'], ['I', 'tried', 'to', 'help', 'you.'], ['You', 'need', 'some', 'sleep.'], ['You', 'have', 'a', 'great', 'imagination.'], ['Speak', 'clearly.'], ["I'm", 'sure', "you'll", 'do', 'very', 'well.'], ["That's", 'what', "I'm", 'trying', 'to', 'do.'], ['I', 'wish', 'you', 'could', 'do', 'my', 'homework.'], ['Not', 'children', 'children', 'usually', 'play', 'outside.'], ['He', 'left', 'the', 'engine', 'to', 'leave.'], ['I', 'hope', 'you', 'stop', 'telling', 'me', 'lies.'], ['Please', 'believe', 'the', 'truth,', 'I', 'hate', 'you.'], ['I', 'hate', 'the', 'old', 'lady.'], ['It', 'seems', 'that', 'anyone', "didn't", 'know', 'the', 'truth.'], ['I', 'live', 'in', 'front', 'of', 'my', 'hometown.'], ['I', 'know', 'who', 'I', 'want', 'to', 'talk', 'to.'], ['Let', 'me', 'buy', 'you', 'a', 'drink.'], ['He', 'was', 'pleasantly', 'surprised.'], ['I', 'have', 'success.'], ['Stop', 'staring', 'at', 'you', 'in', 'front', 'of', 'you.'], ['The', 'investigation', 'of', 'a', 'dollar', 'was', 'gathered'], ["Don't", 'tell', 'anyone.'], ['I', 'wish', 'we', 'were', 'friends.'], ['If', 'you', "don't", 'want', 'to', 'know', 'the', 'reason', 'you', 'must', 'know', 'me.'], ['You', 'will', 'be', 'a', 'father.'], ['You', "can't", 'get', 'the', 'first', 'time', 'to', 'waste.'], ['Tom', 'asked', 'his', 'name', 'list.'], ['Tom', 'is', 'no', 'longer', 'jealous.'], ['The', 'rebels', 'are', 'constantly', 'trying', 'to', 'get', 'rid', 'of', 'the', 'guitar.'], ["You'll", 'be', 'sure', 'why', 'you', 'want', 'to', 'be', 'your', 'teacher.'], ['Take', 'where', "you've", 'got', 'the', 'game.'], ['I', 'want', 'to', 'know', 'what', 'this', 'is', 'all', 'about.'], ['What', 'is', 'wrong', 'with', 'your', 'pants', 'on.'], ['Ask', 'him', 'tomorrow.'], ["I'm", 'afraid', 'of', 'a', 'house', 'home.'], ['You', 'seem', 'to', 'know', 'one', 'of', 'the', 'city.'], ["I'd", 'be', 'delighted.'], ['Come', 'along', 'with', 'it.'], ["I'm", 'not', 'working', 'for', 'Tom.'], ['I', 'just', 'want', 'to', 'go', 'to', 'bed', 'in', 'bed.'], ['Love', 'makes', 'you', 'blind.'], ["Don't", 'be', 'too', 'much', 'time', 'on', 'the', 'weather.'], ['I', 'got', 'up', 'six', 'months', 'and', 'six', 'six', "o'clock."], ['Judging', 'from', 'him,', 'he', 'will', 'be', 'shy.'], ["I'm", 'sure', "you're", 'going', 'to', 'do', 'that.'], ["Here's", 'the', 'money', 'I', 'need', 'you.'], ['I', 'have', 'surgery.'], ['Hold', 'both', 'hands.'], ['My', 'English', 'teacher', 'recommended', 'that', 'I', 'read', 'these', 'books.'], ['We', 'traveled', 'throughout', 'the', 'country.'], ['It', 'was', 'time', 'for', 'you', 'forever.'], ['I', 'thought', 'you', 'had', 'a', 'good', 'time.'], ['Today', 'is', 'moving', 'next', 'month.'], ['Not', 'all', 'convinced', 'of', 'you.'], ['It', 'was', 'exciting.'], ['I', "didn't", 'want', 'to', 'have', 'a', 'look', 'at', 'it.'], ['He', 'is', 'not', 'an', 'American.'], ['I', 'was', 'born', 'here.'], ['I', 'want', 'to', 'share', 'you.'], ['Tom', 'thinks', "he's", 'not', 'a', 'kind', 'person', 'but', 'he', 'is', 'a', 'lawyer.'], ['This', 'is', 'surprising.'], ['I', "don't", 'have', 'a', 'walk', 'with', 'his', 'head.'], ['I', "don't", 'think', 'I', 'can', 'wait', 'any', 'longer.'], ['The', 'streets', 'in', 'the', 'temperature', 'lasted', 'and', 'an', 'air', 'temperature', 'out.'], ["I'd", 'like', 'to', 'visit', 'the', 'summer', 'someday.'], ["I'm", 'going', 'to', 'protect', 'that.'], ['Do', 'you', 'have', 'enough', 'money?'], ['Why', 'do', 'you', 'look', 'so', 'handsome.'], ["Don't", 'make', 'noise.'], ["Don't", 'bother.'], ['I', 'know', 'that', 'Tom', 'is', 'going', 'to', 'be', 'now.'], ['Why', 'are', 'you', 'upset?'], ['They', 'finally', 'saw', 'them', 'yesterday.'], ['This', 'is', 'a', 'matter', 'of', 'relief.'], ["I've", 'already', 'completed', 'two', 'times.'], ['I', 'just', 'want', 'to', 'do', 'anything', 'you', 'have', 'anything.'], ['Our', 'dreams', 'come', 'true.'], ['There', 'was', 'only', 'one', 'of', 'the', 'sisters', 'just', 'in', 'school.'], ['I', 'said', 'that', 'I', "wasn't", 'telling', 'say.'], ['Could', 'you', 'call', 'me', 'up', 'later?'], ["I'm", 'looking', 'for', 'someone', 'or', 'someone', 'sees', 'this.'], ['I', 'prefer', 'the', 'washing', 'train.'], ['I', 'made', 'this', 'decision.'], ['He', 'needs', 'money.'], ['They', 'know', 'in', 'French.'], ['I', 'stole', 'a', 'gun', 'at', 'a', 'gun.'], ['You', "don't", 'seem', 'convinced.'], ["I'm", 'careful.'], ['He', 'has', 'no', 'one', 'to', 'play', 'with.'], ['I', 'called', 'him', 'out.'], ['A', 'shot', 'was', 'killed.'], ['This', 'is', 'the', 'most', 'important', 'thing', "I've", 'ever', 'done', 'to', 'my', 'life.'], ['Hand', 'on', 'the', 'meeting.'], ['I', "don't", 'think', 'Tom', 'can', 'handle', 'the', 'situation.'], ['gold', 'was', 'wearing', 'out', 'of', 'paper.'], ["You're", 'funny.'], ['They', 'talked', 'on', 'to', 'the', 'radio.'], ['I', 'have', 'enough', 'money', 'to', 'buy', 'it.'], ['I', "don't", 'feel', 'like', 'any', 'more.'], ["I've", 'been', 'there', 'for', 'a', 'while.'], ["It's", 'raining', 'here.'], ['The', 'sun', 'is', 'too', 'high.'], ['I', 'wanted', 'to', 'discuss', 'this', 'with', 'you', 'yesterday,', 'but', 'you', "didn't", 'seem', 'to', 'like', 'it.'], ['She', 'refused', 'to', 'accept', 'my', 'offer.'], ['I', 'have', 'lunch', 'at', 'noon.'], ['She', 'came', 'to', 'see', 'me.'], ['How', 'can', 'you', 'be', 'so', 'callous?'], ['I', 'thought', 'you', 'were', 'bluffing.'], ['I', 'promise', 'you', 'will', 'be', 'prepared.'], ["I'm", 'going', 'to', 'buy', 'a', 'ticket,', 'so', 'please', 'buy', 'a', 'ticket,', 'please', 'stop', 'the', 'job.'], ['Anything', "you're", 'good', 'at', 'contributes', 'to', 'happiness.'], ['I', 'know', 'I', 'can', 'trust', 'you.'], ['Tom', 'offered', 'Mary', 'better', 'than', 'Mary.'], ['His', 'job', 'is', 'studying', 'English.'], ['Tom', 'has', 'lots', 'of', 'songs.'], ['I', "don't", 'want', 'to', 'go', 'to', 'jail.'], ['They', 'admired', 'the', 'lovely', 'scenery.'], ["He's", 'three', 'years', 'older', 'than', 'she', 'is.'], ['That', 'sounds', 'easy.'], ['His', 'feet', 'were', 'over.'], ['I', 'had', 'to', 'wait', 'for', 'a', 'few', 'minutes.'], ['Are', 'you', 'coming', 'to', 'the', 'party', 'tonight?'], ['"Are', 'they', 'have', 'the', 'strength', 'of', 'my', 'books?"', '"No,', 'I', 'am.'], ['I', "don't", 'know', 'what', 'he', 'says.'], ['Send', 'me', 'a', 'postcard.'], ['We', 'want', 'to', 'have', 'a', 'great', 'family.'], ['I', 'wanted', 'to', 'come.'], ['I', 'saw', 'an', 'airplane.'], ['I', 'get', 'my', 'wallet', 'on.'], ['I', "didn't", 'want', 'you', 'to', 'involved.'], ['Take', 'it', 'on.'], ['He', 'is', 'a', 'poet.'], ['He', "doesn't", 'know', 'his', 'feelings.'], ['He', 'was', 'home', 'by', 'him', 'out', 'of', 'him.'], ['I', "didn't", 'know', 'what', "he's", 'talking', 'about.'], ['A', 'swarm', 'of', 'the', 'hostages', 'will', 'make', 'it', 'pulled'], ['They', 'went', 'there.'], ['This', 'is', 'a', 'difficult', 'job.'], ['It', 'looks', 'good', 'at', 'that.'], ['Take', 'your', 'hand', 'with', 'your', 'pocket.'], ['Just', 'tell', 'me', 'what', 'you', 'want.'], ['Tom', 'was', 'killed', 'by', 'a', 'traffic', 'accident.'], ['I', 'was', 'sent', 'for', 'you', 'to', 'sent', 'up.'], ['This', 'job', "isn't", 'good', 'for', 'it.'], ["They're", 'looking', 'forward', 'to', 'you', 'when', 'they', 'like', 'you.'], ["That's", 'cool.'], ['I', "don't", 'know', 'if', 'I', 'should', 'stay', 'or', 'what?'], ['The', 'children', 'are', 'looking', 'for', 'the', 'table.'], ['We', "can't", 'keep', 'their', 'long', 'longer.'], ['Will', 'you', 'go?'], ['Call', 'me', 'if', 'you', 'need', 'me.'], ['Why', 'are', 'people', 'afraid', 'of', 'you?'], ['Tom', "didn't", 'want', 'the', 'money', 'I', 'wanted', 'to', 'know', 'about', 'this', 'bottle', 'of', 'wine.'], ['You', "can't", 'ask', 'us', 'to', 'do', 'anything.'], ['Put', 'your', 'shoes', 'on.'], ['He', 'made', 'the', 'company', 'industry', 'from', 'the', 'age', 'of', 'fifty', 'years.'], ['She', 'is', 'ashamed', 'of', 'being', 'ashamed', 'of', 'him.'], ['I', 'have', 'no', 'luck.'], ['The', 'shower', "doesn't", 'work.'], ['He', 'drank', 'a', 'bottle', 'of', 'wine.'], ['We', "haven't", 'seen', 'anything', 'at', 'all.'], ['I', "can't", 'understand', 'it.'], ['Do', 'you', 'enjoy', 'us?'], ['He', 'touched', 'the', 'shoulder.'], ['I', "don't", 'know', 'what', 'your', 'problem', 'is.'], ['May', 'I', 'be', 'honest?'], ['I', 'hate', 'the', 'way', 'the', 'day', 'of', 'the', 'day.'], ["There's", 'something', 'that', 'is', 'the', 'worst', 'thing', 'that', 'is', 'the', 'worst', 'thing', 'to', 'do.'], ["What's", 'all', 'the', 'noise?'], ['Why', 'did', 'you', 'eat', 'that?'], ['Gold', 'is', 'more', 'water', 'than', 'water.'], ['The', 'old', 'man', 'helped', 'me.'], ['Everything', 'starting', 'to', 'rain.'], ['Please', "don't", 'forget', 'to', 'see', 'me', 'all', 'your', 'own.'], ['If', 'you', 'have', 'time', 'to', 'do', 'it', 'for', 'you', 'to', 'do', 'immediately.'], ['She', 'asked', 'him', 'why', 'he', 'was', 'crying.'], ["It's", 'not', 'going', 'to', 'listen', 'to', 'me.'], ['Could', 'you', 'light', 'the', 'matter', 'with', 'me?'], ['He', 'is', 'always', 'a', 'good', 'kisser.'], ['I', "haven't", 'said', 'yes.'], ['This', 'job', 'is', 'going', 'to', 'die.'], ['What', "don't", 'you', 'have?'], ["It's", 'eight-thirty.'], ['The', 'pen', 'is', 'on', 'the', 'table.'], ['This', 'man', "doesn't", 'help', 'me', 'with', 'him.'], ['The', 'plan', 'failed.'], ['Why', 'were', 'you', 'so', 'busy', 'yesterday?'], ['You', "shouldn't", 'have', 'to', 'do', 'with', 'your', 'classmates.'], ['The', 'lights', 'are', 'gone.'], ['How', 'are', 'you', 'connected?'], ['You', "don't", 'have', 'to', 'listen', 'to', 'me', 'for', 'a', 'big', 'doctor.'], ['He', 'is', 'going', 'to', 'have', 'a', 'problem', 'with', 'the', 'price', 'of', 'the', 'minute.'], ['I', 'want', 'to', 'be', 'an', 'actor.'], ['I', 'think', 'what', 'Tom', 'trying', 'to', 'say.'], ['I', 'thought', 'Tom', 'was', 'at', 'school.'], ['Tom', 'used', 'to', 'push', 'the', 'form.'], ["That's", 'the', 'last', 'thing', 'I', 'made.'], ['She', "doesn't", 'have', 'anything', 'to', 'do', 'with', 'the', 'affair.'], ['I', 'wonder', 'if', 'he', 'come.'], ['I', 'still', 'believe', 'you.'], ['Of', 'me,', 'I', 'can', 'do', 'it,', 'but', 'I', 'can', 'do.'], ['Do', 'you', 'want', 'to', 'eat', 'anything?'], ["You'll", 'be', 'careful', 'if', 'you', 'drive.'], ['He', 'is', 'in', 'the', 'same', 'English', 'and', 'beautiful.'], ['I', 'want', 'to', 'try', 'anything', 'else.'], ["I'd", 'like', 'to', 'thank', 'you', 'if', 'you', 'keep', 'your', 'promise.'], ['I', 'like', 'to', 'make', 'fun', 'of', 'them.'], ['I', "didn't", 'think', 'Tom', 'was', 'coming.'], ['I', 'will', 'deal', 'with', 'this', 'myself.'], ['Keep', 'running.'], ['This', 'fact', 'was', 'Tom', 'on', 'the', 'test.'], ['He', 'ran', 'out', 'of', 'fighting.'], ["You're", 'very', 'timid.'], ['Are', 'you', 'out', 'of', 'your', 'mind?'], ['I', 'had', 'something', 'else', 'in', 'mind.'], ['This', "isn't", 'it?', "isn't", 'it?'], ['Tom', 'is', 'trying', 'to', 'believe', 'what', 'he', 'says', 'is', 'right.'], ["It's", 'very', 'exciting.'], ["You're", 'being', 'prepared.'], ['You', "don't", 'seem', 'to', 'your', 'father.'], ['Is', 'this', 'pencil', 'yours?'], ['I', 'have', 'nothing', 'to', 'do', 'today.'], ['Tom', 'and', 'Mary', 'are', 'standing', 'there', 'on', 'the', 'way', 'there', 'just', 'turned', 'out.'], ["We'll", 'be', 'serious.'], ["Don't", 'worry', 'too', 'much.'], ['I', 'think', 'we', 'can', 'handle', 'it.'], ["Don't", 'be', 'so', 'shy.'], ['Is', 'it', 'important', 'for', 'you?'], ['It', 'was', 'all', 'your', 'imagination.'], ['We', 'should', 'have', 'walked', 'upstairs', 'and', 'reserved', 'a', 'table.'], ['The', 'lady', 'is', 'easy', 'with', 'a', 'knife.'], ['Do', 'I', 'have', 'to', 'scare', 'me?'], ['Your', 'mother', 'and', 'father', 'are', 'not', 'here.'], ['What', 'if', 'they', 'died?'], ['You', 'deserve', 'to', 'be', 'paranoid.'], ['This', 'color', 'is', 'very', 'beautiful.'], ['Every', 'day', 'of', 'Brazil', 'is', 'in', 'the', 'wedding.'], ['Black', 'suits', 'you.'], ['Are', 'you', 'a', 'psychologist?'], ['How', 'could', 'you', 'be', 'so', 'proud', 'of', 'that', "you've", 'been.'], ['I', 'suppose', 'you', 'want', 'me', 'to', 'help', 'me.'], ['Will', 'he', 'go', 'to', 'school?'], ['Take', 'it', 'on.'], ['She', 'is', 'a', 'college', 'student.'], ['Tom', 'got', 'his', 'old', 'car', 'from', 'his', 'car.'], ['Do', 'you', 'have', 'lunch', 'today?'], ['Perhaps', 'he', 'lied.'], ['What', 'kinds', 'of', 'them', 'have', 'failed.'], ['I', 'tried', 'it', 'going', 'on.'], ['Meet', 'me', 'at', 'the', 'time', 'of', 'college.'], ['Who', 'did', 'you', 'do', 'to', 'do', 'that?'], ['She', 'ignored', 'him', 'all', 'day.'], ["They'll", 'be', 'here', 'tonight.'], ["I'm", 'not', 'used', 'to', 'drink', 'in', 'the', 'future', 'in', 'this', 'pocket.'], ["I'd", 'like', 'to', 'reserve', 'a', 'piece', 'of', 'account.'], ['Who', 'are', 'you?'], ['The', 'amount', 'needs', 'to', 'spend', 'more', 'and', 'needed.'], ['I', 'turned', 'on', 'the', 'radio.'], ['Did', 'you', 'tell', 'me', 'all', 'the', 'time?'], ['Which', 'is', 'your', 'father?'], ['My', 'cat', 'is', 'waiting', 'for', 'the', 'hook.'], ['That', 'reminds', 'me', 'of', 'my', 'childhood.'], ["You're", 'not', 'the', 'only', 'one', 'who', "doesn't", 'believe', 'Tom.'], ['Could', 'you', 'please', 'buy', 'a', 'little', 'company?'], ['I', 'made', 'up', 'my', 'mind', 'this', 'morning.'], ["Don't", 'talk', 'to', 'him', 'while', 'he', 'is.'], ['How', 'did', 'you', 'get', 'out', 'of', 'your', 'room?'], ['This', 'guy', 'is', 'totally', 'nuts!'], ['I', "don't", 'have', 'a', 'lot', 'today.'], ['What', 'if', 'you', 'were', 'going', 'to', 'buy', 'the', 'car', 'and', 'buy', 'it?'], ["That's", 'nothing', 'of', 'the', 'game.'], ['I', 'know', 'that', 'Tom', 'is', 'a', 'chicken.'], ['I', 'need', 'to', 'borrow', 'some', 'money.'], ['Why', 'did', 'you', 'expect?'], ['He', 'is', 'still', 'left', 'yet.'], ['He', 'offered', 'with', 'people', 'over', 'the', 'future', 'of', 'people.'], ['We', 'are', 'a', 'serious', 'problem', 'with', 'a', 'different', 'problem', 'in', 'it.'], ['Why', 'do', 'you', 'need', 'this', 'money?'], ['Where', 'did', 'you', 'buy', 'this', 'hat?'], ['I', 'thought', 'I', 'was', 'crazy.'], ['I', 'need', 'one.'], ['He', 'studied', 'in', 'the', 'debt.'], ['Tom', 'says', 'he', 'likes', 'painting', 'ice', 'cream.'], ['My', 'camera', 'is', 'different', 'around', 'here.'], ['She', 'took', 'her', 'book.'], ['He', 'differs', 'from', 'to', 'that', 'business.'], ['The', 'cows', "don't", 'smoke.'], ['I', 'want', 'to', 'see', 'what', "I'm", 'going', 'on.'], ['Please', 'be', 'careful.'], ['What', 'else', 'can', 'you', 'do?'], ['She', 'is', 'a', 'girl', 'girl.'], ['I', 'feel', 'like', 'crying.'], ['This', 'coat', 'is', 'coat', 'on', 'your', 'coat.'], ['Tell', 'me', 'exactly', 'what', 'happened.'], ['I', 'think', "it's", 'time', 'for', 'me', 'to', 'change', 'himself.'], ['I', 'give', 'you', 'everything', 'you', 'wanted', 'me', 'to', 'do', 'anything', 'but', 'ever', 'ask.'], ['My', 'sister', 'and', 'went', 'to', 'the', 'bicycle', 'off.'], ['There', 'was', 'more', 'than', 'I', 'expected.'], ['Will', 'you', 'shut', 'the', 'door,', 'please?'], ['I', 'am', 'thinking', 'of', 'the', 'project.'], ['She', 'demanded', 'to', 'see', 'the', 'manager.'], ["We'll", 'do', 'the', 'same', 'for', 'you.'], ['The', 'rain', 'is', 'wonderful.'], ['What', 'did', 'Tom', 'say?'], ['How', 'do', 'you', 'stop', 'this?'], ['I', "don't", 'really', 'have', 'a', 'really', 'weapon.'], ["They're", 'coming.'], ['Tom', 'is', 'dead.'], ["Who's", 'to', 'vote', 'for', 'lunch?'], ['I', 'thought', 'I', 'was', 'your', 'love.'], ['In', 'a', 'lucky', 'there', 'was', 'a', 'big', 'crime', 'ago.'], ['She', 'advised', 'him', 'to', 'visit', 'him', 'that', 'he', 'was', 'going', 'to', 'visit', 'him', 'next', 'Sunday.'], ['Why', 'do', 'you', 'feed', 'the', 'dog', 'food', 'that', 'dog', 'feed', 'you', 'eat?'], ['I', 'really', 'appreciate', 'your', 'offer', 'to', 'help', 'my', 'garage.'], ['The', 'company', 'is', 'determined', 'to', 'extend', 'an', 'American', 'American', 'war.'], ['How', 'come', 'is', 'such', 'a', 'serious', 'life?'], ['Do', 'you', 'have', 'the', 'painting?'], ['Tom', 'asked', 'Mary', 'to', 'give', 'up', 'smoking.'], ['I', "couldn't", 'find', 'out', 'why', 'he', 'was', 'happening.'], ['I', 'met', 'your', 'idea', 'and', 'dreamed'], ['They', 'basked', 'in', 'the', 'sun.'], ['Did', 'anyone', 'speak', 'a', 'nice', 'car?'], ['He', 'likes', 'apple', 'his', 'tie.'], ['They', 'admired', 'the', 'lovely', 'scenery.'], ['I', 'love', 'your', 'son.'], ['This', 'is', 'your', 'chance.'], ['Tom', 'knew', 'what', 'Mary', 'was', 'supposed', 'to', 'do.'], ['This', 'is', 'a', 'really', 'great', 'point.'], ['Do', 'you', 'think', 'anyone', 'can', 'see', 'me?'], ['Our', 'teacher', 'seems', 'to', 'be', 'very', 'beautiful.'], ['Can', 'you', 'swim?'], ['Pass', 'the', 'sentence', 'over', 'the', 'new', 'sentence', 'is', 'true.'], ['You', "don't", 'have', 'to', 'apologize.'], ['Are', 'you', 'busy', 'now?'], ['She', 'had', 'to', 'visit', 'England', 'last', 'Monday.'], ["They're", 'all', 'liars.'], ['I', "can't", 'put', 'up', 'with', 'my', 'wallet', 'late.'], ['What', 'is', 'the', 'fact', 'for', 'you?'], ["Let's", 'take', 'a', 'look', 'at', 'this.'], ['I', 'hate', 'being', 'like', 'him.'], ["We're", 'not', 'offended.'], ['He', 'explained', 'the', 'facts.'], ['Tom', "didn't", 'want', 'to', 'kiss', 'Mary.'], ['Can', 'you', 'remember', 'where', 'we', 'first', 'met?'], ['I', 'used', 'to', 'believe', 'such', 'a', 'thing.'], ["Don't", 'ask', 'me', 'to', 'talk', 'to', 'you', 'for', 'a', 'while.'], ['I', 'know', 'that', 'you', 'still', 'love', 'me.'], ['I', 'plan', 'to', 'discuss', 'the', 'best', 'in', 'better', 'than', 'we', 'expected.'], ['The', 'population', 'of', 'the', 'company', 'went', 'out', 'of', 'the', 'company', 'many', 'million', 'per', 'year.'], ['This', 'war', 'was', 'reduced', 'by', 'the', 'war.'], ['The', 'bill', 'made', 'the', 'work', 'out', 'of', 'work.'], ['Tom', 'lies.'], ['I', 'will', 'obey.'], ['The', 'water', 'is', 'rising.'], ['I', 'really', 'want', 'you', 'to', 'get', 'in', 'your', 'pocket.'], ['No', 'matter', "what's", 'driving', 'me', 'loud.'], ["I'll", 'let', 'you', 'do', 'that.'], ['Is', 'there', 'a', 'you?'], ['My', 'college', 'is', 'too', 'slow.'], ['You', "don't", 'seem', 'wrong.'], ['I', 'was', 'waiting', 'for', 'you.'], ['If', 'you', 'get', 'out', 'of', 'warm', "you'll", 'get', 'cold.'], ['I', 'will', 'give', 'you', 'a', 'bicycle', 'for', 'your', 'birthday.'], ['Did', 'you', 'ever', 'watch', 'TV?'], ['What', 'you', 'do', 'is', 'potatoes', 'compared', 'to', 'the', "boss's", 'salary.'], ['I', 'remember', 'that', 'word.'], ['He', 'put', 'his', 'nose', 'on', 'the', 'window.'], ['She', 'knows', 'everything.'], ['Do', 'you', 'have', 'plans', 'for', 'dinner?'], ["I'm", 'finished', 'everything.'], ['A', 'few', 'idea', 'must', 'be', 'very', 'careful.'], ['Tom', 'poured', 'some', 'fruit', 'in', 'a', 'bowl.'], ["Don't", 'shoot!'], ['I', "can't", 'give', 'it', 'a', 'look.'], ['I', "don't", 'know', 'where', 'they', 'were.'], ['When', 'did', 'you', 'learn', 'how', 'to', 'swim?'], ['I', 'thought', "it'd", 'be', 'given', 'this', 'enough.'], ["There's", 'always', 'a', 'first', 'time', 'for', 'you.'], ['Thanks', 'a', 'lot', 'today.'], ['The', 'phone', 'rang', 'several', 'times.'], ["He's", 'a', 'gambler.'], ["You're", 'probably', 'tired.'], ['Tom', 'is', "Mary's", 'younger', 'sister.'], ['I', 'was', 'badly', 'wounded.'], ['Is', 'that', 'a', 'movie?'], ['We', 'only', 'saw', 'you', 'once.'], ["I'm", 'so', 'sorry.'], ['From', 'and', 'I', 'let', 'me', 'know', 'all', 'the', 'time', 'and', 'asked', 'me', 'to', 'write.'], ["There's", 'a', 'difference', 'between', 'the', 'between', 'between', 'them.'], ['I', 'love', 'the', 'way', 'you', 'think.'], ['He', 'was', 'almost', 'drunk.'], ['It', 'looks', 'like', 'you', 'just', 'got', 'a', 'long', 'outside.'], ['Have', 'you', 'ever', 'had', 'a', 'girlfriend?'], ["It's", 'probably', 'likely', 'again.'], ['They', 'love', 'coffee.'], ['I', 'went', 'there', 'yesterday.'], ['Tom', 'wrote', 'a', 'large', 'sum', 'of', 'money.'], ["I'm", 'going', 'with', 'this', 'opportunity.'], ['Kyoto', 'was', 'about', 'what', 'we', 'expected.'], ['I', 'had', 'no', 'idea', 'what', 'was', 'stolen.'], ['Tom', "doesn't", 'like', 'singing.'], ["I'd", 'like', 'to', 'go', 'out', 'with', 'you.'], ['It', 'was', 'as', 'a', 'movie.'], ['If', 'she', 'had', 'been', 'secretly', 'she', 'had', 'to', 'call', 'the', 'shocked.'], ['Why', "don't", 'you', 'want', 'to', 'be', 'a', 'nurse?'], ['She', 'bought', 'him', 'a', 'woman', 'that', 'she', 'laughed.'], ['We', 'heard', 'the', 'door', 'shut.'], ['Fire!'], ['Why', "don't", 'you', 'give', 'me', 'me?'], ['The', 'old', 'man', 'died', 'last', 'week.'], ['I', 'called', 'you', 'when', 'you', 'needed', 'help.'], ['This', "shouldn't", 'hurt', 'anyone.'], ['Tom', 'is', 'my', 'friend', 'to', 'my', 'father.'], ["I'm", 'sorry', 'I', 'made', 'you', 'so', 'unhappy.'], ['I', 'know', 'exactly', 'who', 'he', 'is.'], ['Two', 'families', 'live', 'in', 'this', 'house.'], ['I', 'wonder', 'if', 'I', 'must', 'accept', 'this', 'job.'], ['I', 'wonder', 'how', 'many', 'people', 'saw', 'Tom', 'doing', 'that.'], ['He', 'has', 'a', 'lot', 'of', 'complaints', 'about', 'the', 'weather.'], ['You', 'look', 'a', 'little', 'shaken.'], ["I'm", 'too', 'tired', 'to', 'walk', 'myself.'], ['Is', 'someone', 'here?'], ['He', 'told', 'me', 'a', 'nice', 'tie.'], ["How's", 'Tom', 'doing?'], ['What', 'else', 'do', 'I', 'lose?'], ['We', 'all', 'know', "what's", 'happened.'], ['I', 'like', 'you', 'as', 'a', 'friend.'], ['Do', 'your', 'own', 'job.'], ['My', 'mother', 'spends', 'a', 'lot', 'of', 'money', 'on', 'the', 'letters.'], ['Keep', 'focused', 'on', 'your', 'work.'], ["Don't", 'make', 'fun', 'of', 'us.'], ['You', 'can', 'stay', 'here', 'if', 'you', 'want.'], ['The', 'water', 'rose', 'quickly.'], ['Just', 'a', 'day,', "isn't", 'it?'], ['The', 'Japanese', 'look', 'into', 'the', 'water', 'and', 'turned', 'out', 'and', 'get', 'a', 'lot.'], ['He', 'almost', "hadn't", 'gotten', 'older.'], ['The', 'situation', 'lasted', 'in', 'a', 'day.'], ['I', 'was', 'on', 'to', 'work.'], ['Have', 'you', 'ever', 'seen', 'a', 'room?'], ['Will', 'you', 'ever', 'give', 'me', 'a', 'son?'], ['We', 'are', 'short', 'of', 'beer.'], ['I', 'hear', 'you', 'know', 'how', 'to', 'speak', 'French.'], ['Return', 'back', 'home.'], ['I', "don't", 'like', 'your', 'tone.'], ['He', 'died', 'before', 'his', 'ambulance', 'arrived.'], ['Bring', 'it', 'back', 'when', "you're", 'done.'], ['I', 'hate', 'school.'], ['This', 'house', 'is', 'a', 'great', 'house', 'for', 'your', 'house', 'to', 'carry.'], ["I'm", 'an', 'artist.'], ['I', 'have', 'my', 'shoes', 'myself.'], ['They', 'relaxed', 'around', 'the', 'campfire.'], ['Please', 'follow', 'the', 'instructions.'], ['I', "don't", 'recall', 'what', 'you', 'said', 'about', 'that.'], ["It's", 'time', 'for', 'you', 'to', 'go', 'to', 'school.'], ['He', 'is', 'interested', 'in', 'American', 'history.'], ['I', "don't", 'know', 'a', 'bird.'], ["You're", 'going', 'to', 'have', 'to', 'call', 'Tom.'], ['I', 'want', 'to', 'find', 'that', 'kind', 'of', 'problem.'], ['Who', 'are', 'you', 'and', 'you', 'want', 'it?'], ['They', 'have', 'lost', 'hope.'], ['Here.', 'in', 'the', 'paper,', 'he', 'must', 'be', 'an', 'hour', 'in', 'case', 'that', 'he', 'is', 'an', 'artist.'], ['I', 'thought', "you'd", 'be', 'pleased.'], ["Let's", 'find', 'out', 'why.'], ['She', 'was', 'impatient', 'to', 'see', 'the', 'doctor.'], ['When', 'did', 'you', 'plant', 'these', 'trees?'], ['What', 'are', 'your', 'dirty', 'increase', 'back?'], ["That's", 'why', 'Tom', 'said.'], ["You're", 'very', 'quickly.'], ['Who', 'is', 'the', 'man', 'you', 'were', 'talking', 'about?'], ["I'm", 'not', 'invited', 'to', 'parties.'], ['We', 'were', 'winning.'], ["It's", 'so', 'different', 'now.'], ['Your', 'children', 'are', 'still', 'working', 'on', 'your', 'own.'], ["I'm", 'really', 'glad', "it's", 'really', 'good', 'on', 'tight.'], ['You', "don't", 'know', 'what', 'they', 'do,', "don't", 'you?'], ['Just', 'tell', 'the', 'truth.'], ['Have', 'you', 'read', 'your', 'book', 'for', 'a', 'book', 'for', 'you?'], ['Can', 'I', 'have', 'the', 'question?'], ['I', 'need', 'to', 'deal', 'with', 'it.'], ['Did', 'I', 'miss', 'my', 'turn?'], ['Tom', 'tried', 'to', 'do', 'the', 'truth.'], ['You', 'were', 'so', 'beautiful.'], ['We', 'never', 'do', 'that.'], ['Some', 'people', 'let', 'people', 'let', 'them', 'know', 'they', 'would', 'be', 'careful.'], ['He', 'was', 'driving', 'but', 'strong.'], ['Tom', 'is', 'afraid', 'of', 'me,', "isn't", 'he?'], ['I', "don't", 'like', 'it.'], ['Can', 'you', 'read', 'this', 'on', 'the', 'documents.'], ['Who', 'would', 'have', 'met', 'the', 'death', 'of', 'the', 'new', 'teacher?'], ['He', 'likes', 'to', 'see', 'him,', 'too.'], ['He', 'earns', 'two', 'times', 'a', 'time.'], ['How', 'could', 'that', 'even', 'think', 'of', 'that?'], ['She', 'knows', 'everything.'], ['Take', 'a', 'seat.'], ['My', 'uncle', 'died', 'of', 'cancer.'], ['He', 'earns', 'more', 'or', 'more', 'than', 'his', 'problems.'], ['Tom', 'has', 'a', 'lot', 'of', 'black', 'black', 'black', 'black', 'black', 'songs.'], ["That's", 'Italy.'], ['I', "don't", 'believe', 'anything', 'happening.'], ['One', 'hard', 'company', 'was', 'difficult', 'for', 'the', 'water', 'in', 'the', 'apples.'], ['One', 'cup', 'of', 'coffee.'], ['It', 'was', 'almost', 'funny.'], ["That's", 'all', 'I', 'remember.'], ['He', 'is', 'studying', 'years', 'old.'], ["Don't", 'beat', 'Mary', 'because', 'he', 'is', 'not', 'being', 'married', 'because', 'she', 'said.'], ['Since', 'it', 'was', 'so', 'hot,', 'we', 'were', 'swimming.'], ['When', 'did', 'you', 'think', 'that', 'Tom', 'was', 'about', 'that?'], ['I', 'never', 'forgot', 'seeing', 'him', 'again.'], ['I', 'want', 'your', 'medicine', 'at', 'the', 'end', 'of', 'the', 'day.'], ['Why', 'were', 'you', 'absent', 'yesterday?'], ['I', 'was', 'not', 'drunk.'], ['They', 'look', 'bored.'], ['Tom', "isn't", 'your', 'brother.'], ['Tom', 'and', 'Mary', 'were', 'leaving', 'for', 'our', 'school.'], ["I've", 'never', 'met', 'Tom', 'as', 'many', 'years', 'ago.'], ['I', 'called', 'him', 'out.'], ['Tom', 'gave', 'Mary', 'a', 'gift.'], ['You', 'have', 'a', 'problem?'], ['I', 'opened', 'a', 'poem', 'in', 'a', 'neighborhood.'], ['Was', 'Tom', 'that', 'supposed', 'to', 'be', 'there?'], ['I', 'still', 'have', 'a', 'job', 'done.'], ['How', 'do', 'you', 'change', 'my', 'debts', 'now?'], ['Tom', 'thinks', 'Mary', "doesn't", 'live', 'enough.'], ["I'm", 'just', 'a', 'child.'], ["I'm", 'glad', 'you', 'just', 'love', 'you.'], ['How', 'do', 'you', "don't", 'like', 'this', "isn't", 'it?'], ['The', 'law', 'is', 'the', 'law', 'hope', 'to', 'be', 'rejected.'], ['I', "don't", 'love', 'talking', 'about', 'Tom.'], ['Tom,', 'do', 'you', 'still', 'love', 'up?'], ['I', "don't", 'like', 'the', 'drinks.'], ['He', "can't", 'swim', 'well.'], ['I', 'need', 'sleep.'], ['He', 'told', 'me', 'to', 'meet', 'him', 'at', 'home.'], ['I', 'put', 'it', 'to', 'the', 'top', 'of', 'the', 'wall.'], ['I', 'know', 'that', 'Tom', 'is', 'usually', 'a', 'fruit.'], ["You're", 'not', 'good', 'at', 'home.'], ["I'm", 'not', 'sure', 'how', 'to', 'go', 'to', 'bed', 'time', 'before', 'the', 'time', 'before', 'I', 'go', 'to', 'school.'], ['He', 'got', 'to', 'catch', 'an', 'egg.'], ['Tom', 'intends', 'to', 'find', 'a', 'hard', 'way', 'to', 'find', 'out', 'of', 'school.'], ['Please', 'have', 'the', 'bed.'], ['I', 'want', 'to', 'do', 'this', 'now.'], ['Tom', 'refused', 'to', 'take', 'a', 'letter', 'for', 'him', 'to', 'send', 'him', 'a', 'hand.'], ['How', 'much', 'more', 'neighbors', 'have', 'you', 'need?'], ["There's", 'really', 'not', 'a', 'lot', 'of', 'day.'], ['The', 'kids', 'are', 'bent.'], ['He', 'has', 'already', 'left.'], ['I', 'always', 'love', 'him.'], ['Lie', 'up', 'and', 'restless.'], ['Your', 'glasses', 'are', 'made', 'of', 'the', 'floor.'], ['I', 'always', 'have', 'something', 'new.'], ['They', 'agreed', 'on', 'a', 'price.'], ['High', 'China', 'is', 'easy', 'to', 'get', 'the', 'examination.'], ['I', "don't", 'feel', 'comfortable', 'here.'], ['Even', 'knowing', 'the', 'kids', 'do', 'that.'], ['She', 'looked', 'at', 'him', 'in', 'the', 'eyes.'], ['I', "couldn't", 'catch', 'the', 'cold.'], ['Look', 'at', 'the', 'prize.'], ['I', 'think', 'Tom', 'is', 'ready.'], ['I', 'thought', 'I', 'could', 'be', 'living', 'in', 'here.'], ['This', 'is', 'a', 'hybrid.'], ["You'll", 'be', 'working', 'for', 'a', 'few', 'hours.'], ['Please', 'try', 'it', 'later.'], ["That's", 'really', 'great!'], ['I', 'heard', 'what', 'he', 'heard', 'that', 'school.'], ["I've", 'been', 'recently.'], ['I', 'was', 'at', 'home', 'for', 'dinner.'], ['Tom', 'poured', 'a', 'tea.'], ['Do', 'you', 'know', 'how', 'this', 'is?'], ["I'm", 'alone.'], ['I', 'know', 'that', 'Tom', 'is', 'a', 'bit', 'tipsy.'], ['How', 'can', 'I', 'keep', 'that', 'again?'], ['Are', 'you', 'all', 'this?'], ['I', "don't", 'swim', 'hot', 'water', 'in', 'water.'], ['This', 'room', 'is', 'too', 'big.'], ['They', 'sent', 'us', 'waiting', 'a', 'long', 'time.'], ['It', 'seems', 'that', 'he', 'has', 'lived', 'in', 'love', 'now.'], ['Where', 'is', 'the', 'museum', 'of', 'the', 'sun?'], ['They', 'took', 'advantage', 'of', 'the', 'crops.'], ['There', 'are', 'many', 'earthquakes', 'in', 'Japan.'], ['My', 'mother', 'was', 'very', 'busy.'], ['He', 'is', 'dating', 'my', 'daughter.'], ["I'm", 'exhausted.'], ['It', 'is', 'going', 'to', 'soon', 'as', 'soon', 'as', 'he', 'gets', 'everywhere.'], ['How', 'is', 'he', 'not', 'to', 'help', 'him.'], ['Put', 'the', 'microphone.'], ["Don't", 'drive', 'in', 'my', 'room.'], ['They', "didn't", 'listen.'], ['You', 'know', 'what', 'they', 'say.'], ["Where's", 'your', 'school?'], ['I', 'took', 'advantage', 'of', 'my', 'application.'], ['His', 'house', 'is', 'right', 'there.'], ['No', 'one', 'has', 'written', 'in', 'the', 'library', 'for', 'written', 'during', 'the', 'months.'], ['Get', 'out', 'of', 'my', 'hand.'], ["I'm", 'sorry', 'that', 'I', "didn't", 'bother', 'you.'], ['They', 'did', 'it', 'in', 'front', 'of', 'the', 'staff.'], ['I', 'can', 'understand', 'why', 'you', "don't", 'want', 'to', 'be', 'there.'], ["Don't", 'give', 'me', 'a', 'chance.'], ['He', 'was', 'given', 'his', 'money', 'to', 'himself.'], ['Several', 'people', 'were', 'closed.'], ['Why', "don't", 'you', 'sing?'], ['He', 'could', 'not', 'hold', 'back', 'his', 'tears.'], ['When', 'will', 'you', 'get', 'a', 'loan?'], ["That's", 'a', 'filthy', 'guess.'], ['Can', 'you', 'read', 'that?'], ['They', "can't", 'be', 'all', 'right.'], ['When', 'in', 'the', 'market', 'in', 'the', 'market', 'in', 'my', 'pocket.'], ['When', 'she', 'told', 'Mary', 'that', 'she', 'had', 'gotten', 'his', 'face.'], ['How', 'could', 'you', 'put', 'on', 'a', 'small', 'website?'], ['I', 'have', 'too', 'many', 'hair.'], ['There', 'are', 'different', 'people', 'who', 'they', 'say.'], ['How', 'many', 'times', 'do', 'I', "don't", 'have', 'to', 'eat', 'the', 'way', 'to', 'eat', 'dinner?'], ['You', 'should', 'eat', 'something', 'more', 'smaller?'], ['You', 'should', 'follow', 'his', 'advice.'], ['We', 'can', 'hear', 'the', 'dog.'], ['I', 'thought', 'you', 'were', 'my', 'friend.'], ['Could', 'you', 'get', 'a', 'room', 'for', 'my', 'room?'], ['I', 'understand', 'the', 'exact', 'person', 'I', 'can', 'do.'], ['He', 'is', 'on', 'his', 'shoulders.'], ['What', 'do', 'you', 'do', 'if', 'you', 'have', 'your', 'job?'], ['My', 'uncle', 'is', 'when', 'I', 'was', 'a', 'child.'], ["I'm", 'glad', 'to', 'see', 'that', "you're", 'happy.'], ['Your', 'cat', 'is', 'open!'], ['Why', 'are', 'these', 'all', 'these', 'people', 'here?'], ['Do', 'you', 'have', 'a', 'cellphone?'], ['She', 'always', 'buys', 'milk.'], ['Tom', 'gets', 'up', 'at', 'least', 'ten', 'minutes', 'to', 'play', 'the', 'least', 'day.'], ['I', "don't", 'know', 'why', "you're", 'all', 'so', 'upset.'], ["Don't", 'worry', 'about', 'too', 'thin.'], ['You', "can't", 'ride', 'your', 'father.'], ['He', 'is', 'the', 'image', 'of', 'his', 'father.'], ['They', 'love', 'Tom.'], ['Come', 'on,', 'sing', 'a', 'song.'], ['I', 'think', 'my', 'German', "isn't", 'very', 'good.'], ['These', 'boxes', 'are', 'heavy.'], ['Tom', 'is', 'a', 'stranger.'], ['What', 'did', 'you', 'get', 'in', 'mind', 'if', 'you', "don't", 'buy', 'it?'], ["I'm", 'sure', 'of', 'his', 'success.'], ["I'm", 'going', 'to', 'read', 'this', 'breakfast.'], ['He', 'slept', 'in', 'the', 'room', 'with', 'his', 'room', 'in', 'his', 'pocket.'], ['Your', 'pants', 'are', 'you', 'in', 'your', 'nurse.'], ["It's", 'difficult', 'to', 'eat', 'as', 'hard', 'as', 'to', 'eat', 'that', 'people.'], ['France', 'is', 'an', 'hour', 'in', 'low', 'pocket.'], ['You', 'must', 'take', 'care', 'of', 'the', 'dog.'], ['She', 'cooks', 'but', 'he', 'eats', 'him,', 'but', 'he', "can't."], ['The', 'greatest', 'problem', 'is', 'useful.'], ['I', "don't", 'speak', 'French', 'at', 'all.'], ['You', 'were', 'very', 'busy,', "weren't", 'you?'], ['Writing', 'is', 'going', 'out', 'of', 'what', 'the', 'air', 'means.'], ["I'm", 'unmarried.'], ['I', 'missed', 'the', 'bus.'], ['I', 'think', "I'll", 'succeed.'], ["Don't", 'go', 'to', 'the', 'wall.'], ["I'm", 'just', 'a', 'little', 'dizzy.'], ['Mt.', 'is', 'a', 'good', 'source', 'of', 'energy.'], ["You're", 'going', 'to', 'open', 'your', 'eyes.'], ['Would', 'you', 'mind', 'if', 'I', 'walk', 'in', 'your', 'pool?'], ['Tom', 'often', 'eats', 'tricks', 'on', 'people.'], ['I', 'really', 'think', 'I', 'really', 'have', 'a', 'lot.'], ['Next', 'years', 'is', 'going', 'out', 'for', 'two', 'years.'], ['I', 'want', 'Tom', 'to', 'think', 'about', 'that', 'one.'], ['I', 'drank', 'too', 'much', 'coffee.'], ['I', 'want', 'Tom', 'to', 'find', 'your', 'story.'], ['Would', 'you', 'like', 'to', 'go', 'to', 'Australia', 'with', 'me?'], ['I', 'do', 'this', 'a', 'lot.'], ['Not', 'the', 'reason', 'now', 'will', 'be', 'monitored.'], ["Don't", 'hesitate', 'to', 'ask', 'any', 'necessary', 'free', 'to', 'ask', 'help.'], ['Her', 'body', 'was', 'covered', 'with', 'a', 'politician.'], ['You', 'can', 'stay', 'here', 'with', 'me.'], ["I'm", 'addicted.'], ['Are', 'you', 'two', 'together?'], ["It's", 'too', 'early', 'to', 'get', 'up.'], ['I', 'just', 'wanted', 'to', 'know', 'what', 'you', 'wanted', 'to', 'go', 'to', 'me.'], ['The', 'dog', 'is', 'the', 'best', 'friend', 'of', 'the', 'news.'], ["I'd", 'rather', 'a', 'seat', 'after', 'an', 'hour.'], ['I', "don't", 'know', 'how', 'to', 'answer', 'the', 'meeting.'], ['Your', 'French', 'is', 'improving.'], ["Don't", 'make', 'a', 'sound.'], ['I', 'just', "don't", 'want', 'you', 'to', 'get', 'hurt.'], ['Are', 'you', 'working', 'this', 'job?'], ['It', 'was', 'raining', 'hard,', 'so', 'we', 'had', 'to', 'leave.'], ['She', 'is', 'sure', 'about', 'the', 'weather.'], ["You're", 'contagious.'], ['The', 'day', 'is', 'almost', 'over.'], ['My', 'neighbor', 'was', 'canceled.'], ['He', 'is', 'more', 'popular', 'with', 'German.'], ['He', 'looked', 'up', 'the', 'broken', 'by', 'him', 'by', 'the', 'habit', 'of', 'his', 'dog.'], ['I', "don't", 'like', 'my', 'mouth', 'shut.'], ['Have', 'you', 'ever', 'ridden', 'a', 'mule?'], ['Is', 'there', 'anything', 'else', 'you', 'want', 'me?'], ['Can', 'you', 'answer', 'this', 'house?'], ['Tom', 'needed', 'his', 'parents.'], ['He', 'picked', 'up', 'a', 'mirror', 'and', 'made', 'a', 'mirror', 'of', 'his', 'tongue.'], ["I'm", 'ready', 'to', 'leave', 'now.'], ['I', "don't", 'know', 'who', "you're", 'talking', 'about.'], ["Don't", 'forget', 'to', 'have', 'a', 'cell', 'ring.'], ["I'd", 'like', 'to', 'thank', 'you', 'for', 'coming', 'today.'], ['I', 'feel', 'funny.'], ['I', 'need', 'to', 'do', 'it', 'alone.'], ['I', 'want', 'to', 'go', 'fishing.'], ["What's", 'your', 'theory', 'on', 'what', 'happened?'], ['I', 'speak', 'a', 'little', 'Spanish.'], ['What', 'are', 'you', 'afraid', 'of', 'them?'], ['How', 'do', 'you', 'play', 'this', 'camera?'], ['Is', 'there', 'anything', 'what', 'you', 'want', 'to', 'be', 'what', 'you', 'want?'], ["I'd", 'like', 'you', 'to', 'meet', 'my', 'husband.'], ['I', 'had', 'to', 'smoke,'], ['It', 'happened.'], ['How', 'did', 'you', 'have', 'everything?'], ['My', 'watch', 'is', 'watching', 'TV.'], ['I', 'really', 'misjudged', 'you.'], ['We', 'have', 'no', 'more', 'of', 'the', 'future.'], ["Don't", 'kid', 'that.'], ['I', 'hate', 'to', 'work.'], ['Tom', 'went', 'home', 'at', 'the', 'weekend.'], ['Everybody', 'likes', 'them.'], ['Anyone', 'else', 'anyone', 'else', 'home?'], ['Have', 'you', 'been', 'told', 'when', 'you', 'are', 'expected', 'to', 'be', 'here?'], ['I', 'want', 'you', 'to', 'take', 'this', 'medicine.'], ['Where', 'did', 'you', 'learn', 'to', 'escape?'], ["I'll", 'be', 'in', 'the', 'attic.'], ['Maybe', 'it', 'was', 'destiny.'], ['Did', 'you', 'catch', 'the', 'concert?'], ['Do', 'you', 'have', 'a', 'copy?'], ['I', 'think', 'I', 'may', 'find', 'out', 'of', 'Tom.'], ['His', 'passport', 'came', 'back.'], ["I'm", 'afraid', 'the', 'rumor', 'is', 'true.'], ['I', 'must', 'do', 'this', 'by', 'myself.'], ['How', 'do', 'I', 'have', 'to', 'pay', 'my', 'desk?'], ['I', 'appreciate', 'working', 'here.'], ['It', 'belongs', 'to', 'off.'], ['Did', 'you', 'see', 'that?'], ['Take', 'it', 'on.'], ['I', 'think', 'Tom', 'is', 'a', 'coward.'], ['Who', 'is', 'this', 'woman?'], ['Tom', 'is', 'absent', 'from', 'Australia.'], ['We', 'have', 'enough.'], ['Tom', 'is', 'an', 'astronaut.'], ['Our', 'daughter', 'has', 'been', 'standing', 'with', 'a', 'sharp', 'watch.'], ['I', 'know', 'I', 'should', 'stay.'], ['Our', 'book', 'is', 'very', 'interesting.'], ['This', 'is', 'extremely', 'original.'], ['You', 'should', 'see', 'what', 'Tom', 'can', 'do.'], ['You', "don't", 'have', 'even', 'tried.'], ['I', 'saw', 'him', 'cheating', 'on', 'the', 'test.'], ['She', 'talked', 'to', 'her', 'son', 'in', 'the', 'first', 'of', 'her', 'first', 'one.'], ['They', 'danced', 'all', 'night', 'long.'], ['I', 'am', 'dieting.'], ['I', 'love', 'picnics.'], ['This', 'is', 'the', 'best', 'thing', 'that', 'he', 'is', 'done.'], ['I', 'told', 'you.'], ['The', 'water', 'is', 'hot.'], ['Take', 'care', 'of', 'your', 'feelings', 'at', 'all.'], ['Come', 'on', 'luck.'], ['This', 'place', 'is', 'a', 'very', 'interesting', 'driver.'], ['Everyone', 'was', 'about', 'to', 'get', 'used', 'to', 'the', 'meeting', 'of', 'the', 'guests.'], ["You're", 'taller', 'than', 'she', 'is.'], ['It', 'was', 'very', 'fast.'], ['I', 'just', 'wanted', 'to', 'keep', 'a', 'little', 'music.'], ['What', 'kind', 'of', 'software', 'do', 'you', 'want?'], ['I', 'just', 'think', 'you', 'should', 'be', 'more', 'careful,', "that's", 'all.'], ['You', 'need', 'to', 'stay', 'awake.'], ['According', 'to', 'the', 'paper,', 'stars', 'in', 'the', 'sky.'], ['Could', 'you', 'come', 'to', 'the', 'meeting', 'next', 'night?'], ['Tom', 'could', 'believe', 'that', 'Mary', 'was', 'coming.'], ['I', 'want', 'you', 'to', 'come', 'back.'], ["I'm", 'all', 'yours.'], ['Why', "didn't", 'you', 'call', 'me', 'last', 'night?'], ['What', 'do', 'you', 'have', 'in', 'your', 'bag?'], ['My', 'father', 'visited', 'my', 'uncle', 'in', 'the', 'hospital.'], ["Don't", 'you', 'know', 'his', 'name?'], ['Is', 'Tom', 'all', 'right?'], ['What', 'do', 'you', 'want', 'me', 'to', 'do', 'this?'], ['Please', 'write', 'on', 'your', 'time', 'what', 'to', 'do.'], ['I', 'feel', 'like', 'the', 'fact', 'that', 'the', 'fact', 'is', 'amazing.'], ['He', 'looks', 'like', 'a', 'spy.'], ['He', 'seems', 'to', 'be', 'rich.'], ['He', 'declined', 'his', 'authority.'], ['He', 'began', 'to', 'snow.'], ['You', 'were', 'perfect.'], ['He', 'went', 'to', 'Tokyo', 'this', 'morning.'], ['Maybe', 'Tom', "doesn't", 'listen', 'to', 'Tom.'], ['I', 'hope', 'to', 'see', 'you', 'again.'], ['I', 'am', 'pretty', 'interested', 'with', 'that.'], ['Sorry', 'for', 'the', 'subject.'], ['Take', 'it', 'up', 'with', 'me.'], ['Stop', 'playing', 'hard', 'and', "don't", 'die.'], ['I', 'thought', 'you', 'were', 'homework.'], ['Spain', 'was', 'hard', 'for', 'scenery.'], ['Everyone', 'could', 'have', 'his', 'team', 'thanks.'], ['Where', 'are', 'your', 'shoes.'], ['Life', 'is', 'in', 'grave', 'danger.'], ['Close', 'your', 'eyes.'], ['Are', 'you', 'taking', 'care', 'of', 'the', 'spare', 'tea?'], ['He', 'did', 'it.'], ['The', 'fence', 'was', 'out', 'and', 'got', 'out', 'of', 'breath.'], ['I', "don't", 'want', 'you', 'to', 'leave.'], ['Every', 'hard', 'or', 'these', 'boxes', 'is', 'hard', 'for', 'us', 'to', 'succeed.'], ['The', 'man', 'who', "didn't", 'come', 'to', 'see', 'anybody.'], ['They', 'are', 'taking', 'care', 'of', 'Tom.'], ['You', 'know', 'better', 'than', 'I', 'do.'], ['How', 'did', 'it', 'take', 'yesterday?'], ['How', 'did', 'you', 'find', 'it?'], ["Let's", 'sit', 'down', 'on', 'the', 'grass.'], ['I', 'need', 'someone.'], ['He', 'threw', 'a', 'ball', 'with', 'snow.'], ['I', 'liked', 'it.'], ["I'm", 'pretty', 'happy.'], ["She's", 'waiting', 'for', 'you', 'at', 'home.'], ['Do', 'you', 'live', 'around', 'here?'], ['Tom', "doesn't", 'know', 'what', 'Mary', 'wants', 'to', 'eat', 'for', 'dinner.'], ['We', 'used', 'to', 'know', 'that.'], ['How', 'did', 'you', 'learn', 'this', 'dress?'], ['It', "wasn't", 'very', 'cold', 'yesterday.'], ['This', 'is', 'the', 'new', 'room.'], ['Tell', 'Tom', "I'll", 'be', 'there', 'as', 'soon', 'as', 'I', 'can.'], ['Some', 'days', 'will', 'rain', 'when', 'he', 'comes', 'at', 'once,'], ['Where', 'do', 'you', 'have', 'all', 'this', 'money?'], ['He', 'presented', 'his', 'mistakes.'], ['How', 'does', 'it', 'feel', 'to', 'me?'], ['Lay', 'it', 'on', 'the', 'table.'], ['Are', 'you', 'at', 'work?'], ['Do', 'you', 'really', 'want', 'to', 'win?'], ['Keep', 'a', 'big', 'sleep.'], ['Stop', 'talking.'], ['It', 'must', 'be', 'on', 'what', 'they', 'have', 'come.'], ['He', 'got', 'to', 'have', 'another', 'thief', 'to', 'read', 'it.'], ['We', 'will', 'hurry.'], ["They're", 'good', 'questions.'], ['I', "don't", 'have', 'time', 'to', 'explain', 'it', 'now.'], ['Do', 'you', 'have', 'work', 'to', 'pay', 'for', 'French?'], ['Is', 'this', 'your', 'cat?'], ['Are', 'there', 'any', 'risks?'], ['I', 'had', 'to', 'do', 'this', 'by', 'myself.'], ["I'm", 'going', 'to', 'stay', 'at', 'home', 'tomorrow.'], ["I'd", 'like', 'to', 'sit', 'here', 'a', 'while.'], ['The', 'committee', 'is', 'before', 'noon.'], ['You', 'probably', 'always', 'wanted', 'to', 'be', 'careful', 'what', 'you', 'said', 'to', 'be', 'rich?'], ['Is', 'there', 'anyone', 'that', 'you', 'want', 'anyone?'], ['Everyone', 'thinks', 'the', 'same', 'thing.'], ['Barack', 'pollution', 'the', 'Beatles', 'to', 'remove', 'their', 'products', 'in', 'the', '21st', 'must', 'be', 'replaced.'], ["I'd", 'like', 'a', 'pay', 'raise.'], ['You', 'must', 'rest.'], ['She', 'called', 'him', 'up.'], ['What', 'did', 'you', 'do', 'with', 'that?'], ['I', "don't", 'want', 'you', 'to', 'be', 'hurt.'], ['She', 'is', 'almost', 'having', 'a', 'perfect', 'lunch.'], ['She', 'was', 'pleased', 'with', 'the', 'result.'], ['He', 'caught', 'the', 'sound', 'when', 'he', 'saw', 'me.'], ['I', 'have', 'enough', 'money', 'to', 'buy', 'it.'], ['What', 'am', 'I', 'supposed', 'to', 'tell', 'Tom', 'now?'], ['I', 'talked', 'Tom', 'and', 'doing', 'that', 'he', 'is', 'going', 'to', 'be', 'OK.'], ["I'm", 'listening.'], ['Take', 'a', 'break.'], ['Bring', 'up', 'your', 'ID!'], ["I'm", 'going.'], ['He', 'took', 'a', 'long', 'bath', 'and', 'took', 'a', 'long', 'time.'], ['How', 'do', 'you', 'get', 'off', 'the', 'house?'], ['Tom', 'only', 'listens', 'to', 'me.'], ["It's", 'hard', 'by', 'air.'], ['This', 'may', 'not', 'be', 'necessary.'], ['He', 'offered', 'his', 'seat', 'to', 'an', 'old', 'woman.'], ['I', 'figured', 'it', 'necessary', 'for', 'help.'], ['Is', 'it', 'serious?'], ["That's", 'a', 'good', 'day.'], ['Can', 'you', 'lend', 'me', 'a', 'picture?'], ['They', 'were', 'different.'], ["I'd", 'like', 'to', 'stay', 'more', 'days', 'more', 'days.'], ['I', 'bought', 'it', 'yesterday.'], ['I', 'thought', 'it', 'would', 'be', 'more', 'easy.'], ['I', "didn't", 'understand', 'him', 'at', 'all.'], ['When', 'the', 'room', 'finds', 'out,', 'we', 'like', 'the', 'flames.'], ['What', 'difference', 'does', 'it', 'feel', 'like', 'we', 'drank', 'us?'], ['I', 'have', 'a', 'walk.'], ["I'm", 'planning', 'to', 'stay', 'in', 'love', 'with', 'me.'], ['I', 'had', 'to', 'work', 'away', 'on', 'weekends.'], ["He's", 'very', 'talented.'], ['I', 'think', 'you', 'will', 'survive.'], ['I', 'ask', 'your', 'forgiveness.'], ["We'll", 'play', 'together.'], ['It', 'has', 'been', 'asked', 'to', 'see', 'him', 'when', 'they', 'got', 'to', 'the', 'library.'], ['Are', 'you', 'sure', "you're", 'warm', 'enough?'], ['I', "don't", 'want', 'to', 'live', 'alone.'], ['I', "don't", 'know', 'what', 'to', 'tell', 'you', 'about', 'it.'], ['I', "don't", 'deserve', 'this', 'one.'], ['No', 'one', 'is', 'in', 'the', 'room.'], ['Can', 'you', 'drive', 'a', 'drive', 'speed?'], ['Look', 'at', 'the', 'picture', 'yesterday?'], ['We', "didn't", 'need', 'to', 'call', 'the', 'doctor.'], ['I', 'never', 'drink', 'alone.'], ['The', 'roses', 'smell', 'good.'], ['Why', 'did', 'you', 'take', 'the', 'first', 'train', 'to', 'take', 'the', 'bus?'], ['My', 'son', 'rarely', 'goes', 'to', 'bed', 'in', 'the', 'face.'], ['The', 'house', 'is', 'that', 'the', 'house', 'is', 'haunted.'], ['The', 'world', 'seems', 'to', 'become', 'a', 'different', 'singer.'], ['They', 'are', 'a', 'great', 'team.'], ['Stop', 'being', 'so', 'nice', 'to', 'me.'], ['I', 'know', 'that', 'Tom', 'is', 'finished.'], ['This', 'book', 'is', 'difficult', 'to', 'read.'], ['Put', 'the', 'pajamas', 'and', 'go', 'to', 'bed.'], ['A', 'big', 'wave', 'made', 'a', 'better', 'part', 'of', 'the', 'better.'], ['Tom', 'has', 'been', 'working', 'with', 'Mary', 'for', 'three', 'years.'], ['He', 'likes', 'to', 'do', 'walks.'], ["What's", 'the', 'matter', 'with', 'him?'], ["I'd", 'like', 'to', 'talk', 'with', 'you.'], ['I', 'just', 'want', 'you', 'to', 'say', "I'm", 'still', 'here.'], ['I', 'always', 'catch', 'colds', 'in', 'the', 'winter.'], ['How', 'much', 'time', 'do', 'we', 'have', 'to', 'wait', 'for', 'it?'], ['What', 'do', 'you', 'like', 'the', 'most?'], ["I've", 'never', 'seen', 'such', 'a', 'huge', 'whale.'], ['We', 'always', 'have', 'a', 'choice.'], ["Let's", 'take', 'care', 'of', 'this', 'place.'], ['The', 'news', 'cut', 'the', 'following', 'flag.'], ['She', 'bought', 'him', 'a', 'woman', 'that', 'he', 'loved', 'him.'], ['The', 'three', 'flag', 'between', 'three', 'and', 'three', 'cats.'], ["I've", 'got', 'trouble', 'all', 'this', 'before.'], ['I', 'was', 'lucky.'], ['She', 'was', 'scolded', 'by', 'a', 'friend.'], ['None', 'of', 'these', 'are', "Tom's."], ['I', "don't", 'like', 'the', 'cheese', 'driver.'], ['My', 'father', 'bought', 'a', 'motorcycle.'], ['You', 'said', 'you', 'were', 'serious.'], ['Your', 'hair', 'is', 'beautiful.'], ['Once', 'the', 'way', 'to', 'the', 'party', 'is', 'used', 'to', 'the', 'party', 'gets', 'up', 'the', 'way', 'to', 'be', 'a', 'walk.'], ['Do', 'you', 'like', 'it?'], ['She', 'used', 'to', 'get', 'used', 'to', 'bed.'], ['I', 'appreciate', 'his', 'company.'], ["Don't", 'push', 'it.'], ['It', 'would', 'be', 'a', 'hard', 'for', 'doing', 'such', 'a', 'thing.'], ['The', 'boat', 'sank', 'when', 'the', 'fire', 'went', 'out', 'in', 'half.'], ['I', 'saw', 'them.'], ['I', "didn't", 'know', 'Tom', 'anywhere.'], ['It', 'is', 'evident', 'that', 'the', 'benefit', 'of', 'the', 'doubt.'], ['Raise', 'your', 'hands.'], ['I', 'want', 'to', 'stay', 'with', 'you.'], ['You', 'really', 'should', 'buy', 'a', 'new', 'car.'], ['Be', 'very', 'careful.'], ["Don't", 'tell', 'me', 'a', 'word', 'to', 'me.'], ['Price', "isn't", 'a', 'problem.'], ['It', 'was', 'better', 'than', 'I', 'expected.'], ['The', 'lovers', 'exchanged', 'numerous', 'letters.'], ['The', 'investigation', 'will', 'be', 'used', 'to', 'you', 'about', 'this', 'evening.'], ["I'm", 'going', 'to', 'you', 'in', 'a', 'minute.'], ['The', 'water', 'in', 'the', 'sun', 'system', 'is', 'below', 'zero.'], ["They're", 'armed.'], ['I', 'feel', 'faint.'], ['I', "don't", 'know', 'why', 'they', 'do', 'it.'], ['I', 'want', 'my', 'bicycle', 'out', 'of', 'my', 'bicycle.'], ["That's", 'a', 'little', 'saying', 'that', 'I', 'am', 'wrong.'], ["Let's", 'have', 'some', 'food.'], ["I'm", 'not', 'worried', 'about', 'that.'], ['The', 'magician', 'made', 'the', 'map', 'then', 'wore', 'out.'], ['How', 'do', 'you', 'feel', 'work?'], ['I', "couldn't", 'do', 'anything.'], ['I', 'have', 'a', 'plastic', 'cup.'], ['Practice', 'is', 'an', 'exciting', 'worker.'], ['Show', 'me', 'another', 'watch.'], ['None', 'of', 'us', 'speak', 'French.'], ['Tom', 'lives', 'in', 'a', 'room', 'in', 'the', 'woods.'], ['Mary', 'is', "Tom's", 'girlfriend.'], ["What's", 'the', 'oldest', 'thing', "you've", 'ever', 'seen.'], ['They', 'were', 'not', 'running', 'quickly.'], ['I', 'am', 'in', 'Tokyo', 'right', 'now.'], ['We', 'were', 'all', 'that', 'we', 'want.'], ['I', 'think', 'this', 'is', 'the', 'best', 'restaurant', 'for', 'this', 'weekend.'], ['Life', 'is', 'not', 'in', 'the', 'hospital', 'no', 'life', 'in', 'life.'], ["I'm", 'proud', 'of', 'work', 'because', 'I', 'got', 'here.'], ['I', 'want', 'you', 'to', 'stay', 'away', 'for', 'a', 'little', 'while.'], ['This', 'is', 'your', 'dirty', 'dirty', 'tie', "isn't", 'it?'], ['What', 'is', 'it', 'in', 'advance.'], ['I', 'should', 'be', 'shot.'], ['"Says', 'who?"', 'then', 'I', 'forget,'], ['Tell', 'Tom', 'that', 'I', "don't", 'have', 'his', 'help.'], ['I', 'have', 'a', 'lot', 'of', 'paper', 'and', 'many', 'cancer.'], ['The', 'pond', 'is', 'on', 'the', 'stomach.'], ['Are', 'you', 'a', 'registered', 'voter?'], ['Why', 'are', 'you', 'asking', 'the', 'only', 'one', 'who', 'helped', 'you', 'alone?'], ['What', 'alleviates', 'the', 'pain?'], ['I', 'feel', 'like', 'my', 'own', 'ability.'], ['I', 'think', 'they', 'like', 'you.'], ['What', 'a', 'shame!'], ['Tom', 'is', 'a', 'good', 'guy.'], ['I', 'just', "don't", 'want', 'you', 'to', 'be', 'upset.'], ['Why', 'did', 'you', 'enjoy', 'them?'], ["I'm", 'asking', 'him', 'to', 'call', 'him.'], ['I', 'think', 'that', 'my', 'life', 'is', 'more', 'than', 'my', 'teacher.'], ["They're", 'not', 'happy.'], ['We', 'are', 'good', 'at', 'the', 'corner.'], ['Maybe', 'he', 'would', 'die', 'with', 'himself.'], ['He', 'is', 'an', 'artist.'], ['They', 'look', 'suspicious.'], ["I've", 'decided', 'to', 'finish', 'the', 'game', 'of', 'my', 'office', 'last', 'month.'], ['Enjoy', 'your', 'holidays.'], ["Who's", 'that', 'cute', 'guy', 'I', 'saw', 'you', 'with', 'him?'], ['I', "wasn't", 'expecting', 'to', 'see', 'you', 'at', 'a', 'while.'], ['Could', 'you', 'please', 'tell', 'me', 'again', 'again', 'what', 'school', 'is?'], ['Tom', 'had', 'a', 'hundred', 'pen.'], ["It's", 'a', 'huge', 'town.'], ['She', 'is', 'having', 'a', 'present', 'for', 'the', 'book.'], ['Dogs', 'are', 'in', 'everything.'], ['I', 'wish', "you'd", 'stop', 'wearing', 'this', 'opportunity.'], ['He', 'used', 'to', 'be', 'a', 'driving', 'to', 'his', 'son', 'at', 'the', 'family.'], ["I'd", 'like', 'to', 'kiss', 'you.'], ['In', 'Japan,', 'in', 'a', 'large', 'cream', 'is', 'in', 'an', 'hour.'], ['I', "don't", 'know', 'what', 'I', 'would', 'do.'], ["That's", 'all', 'we', 'can', 'ask.'], ['He', "isn't", 'a', 'bad', 'boy.'], ['He', 'was', 'the', 'one', 'who', 'saved', 'me.'], ['The', 'store', 'will', 'be', 'careful', 'in', 'an', 'apartment', 'in', 'that', 'room.'], ['She', 'failed', 'every', 'time', 'he', 'tried.'], ['Do', 'you', 'want', 'some', 'help?'], ['You', 'were', 'always', 'very', 'kind.'], ['I', 'was', 'fired', 'last', 'week.'], ['He', 'exchanged', 'his', 'family', 'of', 'his', 'family.'], ['Hurry', 'up,', "don't", 'you', 'feel', 'like', 'this.'], ['What', 'should', 'I', 'buy', 'with', 'this', 'money?'], ["Don't", 'forget', 'your', 'phone', 'number.'], ['On', 'the', 'next', 'place', 'he', 'worked', 'next', 'year', 'when', 'he', 'comes', 'home.'], ['This', 'soup', 'was', 'a', 'lot', 'of', 'water', 'and', 'I', 'used', 'to', 'rain.'], ['I', 'know', 'his', 'cat.'], ["Aren't", 'you', 'annoyed', 'by', 'that?'], ['I', "haven't", 'learned', 'to', 'learn', 'how', 'to', 'drive.'], ["Don't", 'worry.', 'They', 'will', 'keep', 'them', 'all.'], ["I'd", 'like', 'to', 'go', 'to', 'the', 'next', 'stop.'], ["You're", 'depressed,', "isn't", 'it?'], ["Don't", 'make', 'me', 'do', 'it.'], ['I', 'accept', 'your', 'offer.'], ['I', "can't", 'believe', 'that', 'really', 'happened.'], ['I', "can't", 'let', 'you', 'go', 'by', 'there', 'alone.'], ["I'd", 'like', 'you', 'to', 'know', 'this.'], ['Tom', 'is', 'going', 'to', 'be', 'a', 'good', 'reason', 'but', 'I', "don't", 'know.'], ['You', 'seem', 'a', 'little', 'nervous.'], ['I', 'thought', 'your', 'parents', 'loved', 'me.'], ['We', 'know', "you're", 'sick.'], ['I', 'just', 'wanted', 'to', 'drink', 'a', 'long', 'place.'], ['I', 'went', 'to', 'my', 'room', 'and', 'cried.'], ['It', 'was', 'all', 'gone.'], ['Tom', 'used', 'to', 'read', 'a', 'moment.'], ['How', 'could', 'you', 'not', 'believe', 'that?'], ['I', "didn't", 'think', 'this', 'would', 'happen.'], ['Do', 'you', 'want', 'a', 'banana?'], ['I', 'know', 'exactly', 'how', 'to', 'do', 'it.'], ['We', 'see', 'the', 'point.'], ['Can', 'I', 'help', 'you?'], ['He', 'studied', 'hard.'], ['He', 'is', 'a', 'miracle.'], ['There', 'was', 'a', 'cat', 'on', 'the', 'table.'], ['She', 'smiled', 'at', 'a', 'little', 'more', 'expensive', 'and', 'the', 'other', 'one.'], ['She', 'watched', 'him,', 'but', 'a', 'picture.'], ['I', 'like', 'these', 'words?'], ['The', 'wind', 'blew', 'north.'], ['I', 'thought', 'of', 'the', 'first', 'we', 'had', 'a', 'little', 'more', 'careful.'], ['Honesty', "isn't", 'the', 'best', 'policy.'], ['The', 'food', 'is', 'spoiled.'], ['I', "don't", 'know', 'if', 'they', 'live', 'there.'], ['They', 'have', 'plenty', 'of', 'money.'], ['Please', 'refrain', 'it', 'if', 'it', 'rains?'], ['She', 'felt', 'a', 'headache.'], ["Don't", 'forget', 'to', 'walk', 'down', 'on', 'his', 'time.'], ["You're", 'resourceful.'], ['We', 'all', 'want', 'to', 'be', 'beautiful.'], ['I', "don't", 'know', 'what', 'you', 'do.'], ['Would', 'you', 'like', 'another', 'newspaper', 'or', 'magazine?'], ['I', 'was', 'wondering', 'if', 'I', 'was', 'able', 'to', 'cancel', 'the', 'meeting', 'a', 'week.'], ['You', "don't", 'seem', 'too', 'worried.'], ['Please', 'spend', 'a', 'few', 'minutes', 'before', 'the', 'end', 'of', 'at', 'the', 'end', 'of', 'the', 'exam.'], ['They', 'worked', 'together', 'on', 'the', 'project.'], ['I', 'had', 'a', 'good', 'coach.'], ["Shouldn't", 'we', 'tell', 'us?'], ['The', 'room', 'in', 'this', 'room', 'is', 'very', 'beautiful.'], ["I'm", 'not', 'going', 'with', 'me', 'with', 'you.'], ["We'll", 'soon', 'know', 'as', 'soon', 'as', 'possible.'], ['I', 'got', 'fined.'], ['He', 'used', 'to', 'take', 'two', 'days', 'later.'], ['He', 'is', 'sitting', 'at', 'that', 'place.'], ['You', 'still', 'have', 'a', 'lot', 'of', 'things', 'to', 'discuss.'], ['I', 'have', 'to', 'discuss', 'with', 'someone.'], ['I', "can't", 'believe', 'you', 'did', 'that', 'by', 'yourself.'], ["What's", 'worrying', 'you?'], ['I', 'went', 'to', 'the', 'bus', 'until', 'yesterday.'], ["They're", 'coming.'], ['His', 'argument', 'has', 'worth', 'reading.'], ['This', 'coat', 'is', 'too', 'small', 'for', 'me.'], ['The', 'fence', 'and', 'turned', 'out', 'and', 'hit', 'you.'], ['I', 'want', 'you', 'to', 'come', 'back.'], ['I', 'want', 'to', 'learn', 'to', 'learn', 'German.'], ['You', "can't", 'me', 'Tom.'], ['He', 'had', 'his', 'eyes', 'wearing', 'his', 'clothes.'], ['Thanks', 'for', 'this', 'report.'], ['I', "won't", 'be', 'shy.'], ['I', "can't", 'give', 'you', 'the', 'answer', 'today.'], ['He', 'had', 'a', 'book', 'in', 'his', 'hand.'], ['Remain', 'seated,', 'please.'], ['Our', 'school', 'went', 'about', 'their', 'school.'], ['Maybe', 'Tom', "should've", 'done', 'that.'], ['They', 'have', 'a', 'new', 'record', 'here', 'a', 'new', 'apartment.'], ['I', 'know', 'how', 'busy', 'you', 'are.'], ['Tom', 'is', 'always', 'lying.'], ["I'm", 'on', 'duty.'], ['Would', 'you', 'really', 'eat', 'vegetables', 'and', 'vegetables', 'eating', 'vegetables', 'vegetables', 'weight?'], ["We'll", 'give', 'this', 'plan.'], ["Don't", 'deceive', 'me.'], ['We', 'met', 'a', 'few', 'years', 'ago.'], ['Can', 'I', 'have', 'something', 'to', 'eat?'], ['Hand', 'on', 'the', 'car.'], ['Tom', 'is', 'an', 'astronaut.'], ['My', 'dog', 'has', 'the', 'gun.'], ['Why', 'did', 'you', 'change', 'your', 'mind?'], ['I', 'just', "don't", 'want', 'to', 'talk', 'with', 'you.'], ["That's", 'a', 'good', 'suit.'], ['Be', 'nicer', 'to', 'your', 'brother.'], ['The', 'office', 'is', 'on', 'the', 'desk', 'Tom.'], ['He', 'is', 'afraid', 'of', 'dying.'], ['The', 'alarm', 'will', 'come', 'at', 'you', 'right', 'now.'], ['Get', 'in', 'touch', 'with', 'you', 'as', 'soon', 'as', 'I', 'can.'], ['They', 'met', 'each', 'other.'], ["It's", 'been', 'a', 'long', 'time', 'here.'], ['She', "doesn't", 'love', 'her,', 'she', 'opened', 'the', 'bottle.'], ['Tom', "doesn't", 'believe', 'anybody.'], ['He', 'must', 'die.'], ['A', 'girl', 'girl', 'me.'], ['She', 'was', 'too', 'tired', 'to', 'work.'], ['We', 'agreed', 'to', 'us.'], ['I', 'want', 'to', 'show', 'you', 'something', 'is', 'to', 'show', 'you.'], ['She', "doesn't", 'care', 'as', 'much', 'as', 'you.'], ['I', 'called', 'her', 'with', 'a', 'sister.'], ['You', 'may', 'tell', 'me', 'the', 'right', 'truth.'], ['I', 'need', 'to', 'go', 'to', 'the', 'office.'], ['I', 'was', 'sorry.'], ['Tom', 'will', 'give', 'her', 'his', 'coffee.'], ['Your', 'ideas', 'are', 'different', 'from', 'mine.'], ['Tom', 'plays', 'the', 'least', 'living', 'in', 'a', 'nearby', 'restaurant', 'at', 'least', 'he', 'used', 'to', 'play', 'a', 'piano', 'student.'], ['I', 'met', 'a', 'man', 'of', 'his', 'house', 'has', 'been', 'told', 'that', 'he', 'has', 'never', 'been', 'in', 'a', 'large', 'town.'], ['I', 'think', 'the', 'time', 'is', 'the', 'time', 'of', 'the', 'problem.'], ['I', 'can', 'thank', 'you', 'for', 'your', 'help.'], ['His', 'advice', "we'd", 'us', 'two', 'together.'], ['Could', 'I', 'have', 'a', 'minute?'], ['Tom', 'seems', 'very', 'pretty.'], ['Keep', 'an', 'eye', 'on', 'the', 'picture.'], ['I', 'saw', 'a', 'light', 'sleeper.'], ['My', 'works', 'works', 'in', 'a', 'factory.'], ['I', "didn't", 'want', 'you', 'to', 'know', 'anyone', 'who', 'I', 'am.'], ['He', 'made', 'a', 'table.'], ['I', "can't", 'stand', 'it', 'any', 'longer.'], ['My', 'grandfather', "doesn't", 'like', 'the', 'movies.'], ["I'd", 'like', 'to', 'spend', 'more', 'time', 'with', 'you.'], ['Does', 'this', 'really', 'mean', 'this?'], ['She', 'trusts', 'him.'], ["Let's", 'talk', 'to', 'your', 'family.'], ['I', "don't", 'believe', 'you.'], ['I', 'am', 'looking', 'for', 'a', 'walk.'], ["You're", 'invited.'], ["I'm", 'surprised', 'I', "don't", 'have', 'to', 'do', 'what', 'you', 'have', 'to', 'do.'], ['I', 'messed', 'up.'], ['Tom', 'bought', 'the', 'apple', 'bottle', 'of', 'red', 'wine.'], ['That', "doesn't", 'happen', 'often.'], ['I', "don't", 'really', 'want', 'your', 'dog', 'in', 'my', 'mouth.'], ['Why', 'are', 'you', 'asking', 'me', 'so', 'much?'], ['You', "didn't", 'have', 'any', 'choice.'], ['I', 'used', 'to', 'love', 'that.'], ['I', 'felt', 'a', 'couple', 'of', 'friends.'], ['The', 'cats', 'are', 'sold', 'alive.'], ['The', 'children', 'have', 'left', 'one', 'after', 'another.'], ['His', 'proposal', 'is', 'worth', 'visiting.'], ['He', 'had', 'the', 'risk', 'he', 'was', 'not', 'able', 'to', 'begin.'], ['Tom', 'felt', 'uneasy.'], ['They', 'had', 'been', 'sick', 'for', 'a', 'while.'], ['Tom', 'was', 'heartbroken.'], ['Did', 'you', 'shut', 'the', 'police?'], ['I', 'saw', 'you', 'said', 'that', 'I', 'was', 'sleeping', 'at', 'night.'], ['He', 'has', 'a', 'bad', 'reputation.'], ['I', 'always', 'need', 'to', 'call', 'the', 'bird.'], ['I', 'wanted', 'to', 'know', 'why', 'you', "didn't", 'come', 'yesterday.'], ['The', 'baby', 'is', 'in', 'four', 'languages.'], ['Come', 'quickly.'], ['Your', 'phone', 'is', 'looking', 'at', 'you.'], ["It's", 'not', 'in', 'his', 'business.'], ['Why', "didn't", 'you', 'call', 'me', 'last', 'night?'], ['They', 'said', 'they', 'were', 'thirsty.'], ['I', "would've", 'done', 'it', 'better', 'than', 'I', 'did.'], ['I', 'got', 'dumped.'], ['We', 'heard', 'from', 'the', 'door.'], ['You', "shouldn't", 'have', 'gone', 'fishing', 'today.'], ['Please', 'correct', 'such', 'my', 'mind.'], ['I', 'found', 'a', 'present', 'for', 'your', 'son.'], ['I', 'think', "it's", 'going', 'to', 'break', 'a', 'chance.'], ['She', 'must', 'have', 'told', 'a', 'lie.'], ['Despite', 'the', 'ability', 'to', 'be', 'a', 'bad', 'habit.'], ['Would', 'you', 'mind', 'working', 'too', 'hard?'], ['This', 'is', 'the', 'science', 'guy.'], ['We', 'all', 'have', 'our', 'secrets.'], ['I', 'feel', 'like', "you're", 'trying', 'to', 'get', 'married.'], ['I', 'got', 'a', 'upset', 'for', 'you', 'to', 'come', 'to', 'the', 'airport.'], ['It', 'was', 'very', 'cold.'], ['English', 'has', 'a', 'beautiful', 'soup', 'as', 'his', 'works.'], ['I', "should've", 'listened', 'to', 'you.'], ["I'm", 'pretty', 'sure', 'that', 'Tom', "doesn't", 'know', 'Mary.'], ['You', "shouldn't", 'need', 'to', 'tell', 'me', 'that.'], ['He', 'went', 'to', 'the', 'edge', 'of', 'an', 'American.'], ['What', 'kinds', 'of', 'beer', 'do', 'you', 'have?'], ['I', 'want', 'to', 'eat', 'steak.'], ['Why', 'do', 'you', 'feel', 'it?'], ['How', 'do', 'you', 'know', 'how', 'much', 'your', 'life?'], ['My', 'French', 'language', 'is', 'French.'], ["We're", 'on', 'Monday.'], ['This', 'is', 'the', 'house', 'where', 'my', 'dad', 'works.'], ['Do', 'you', 'trust', 'us?'], ['The', 'dog', 'started', 'barking.'], ['I', 'just', 'feel', 'so', 'happy', 'with', 'you.'], ['The', 'situation', 'was', 'afraid', 'of', 'a', 'different', 'situation', 'not', 'true.'], ['It', "doesn't", 'concern', 'me.'], ['I', 'was', 'looking', 'for', 'him', 'for', 'the', 'job.'], ["Don't", 'be', 'afraid', 'of', 'being', 'broken.'], ["I'm", 'just', 'tired.'], ["I'm", 'too', 'busy', 'but', 'not', 'too', 'thin.'], ['How', 'did', 'you', 'kill', 'the', 'cockroach?'], ['I', 'think', "I'll", 'go', 'to', 'sleep.'], ['Today,', 'there', 'is', 'a', 'moment.'], ['His', 'father', 'has', 'a', 'lawyer', 'from', 'an', 'expensive', 'apartment.'], ['I', "don't", 'have', 'any', 'problems.'], ['You', 'remind', 'me.'], ['Do', 'you', 'have', 'three', 'books.'], ['Tom', 'is', 'careful.'], ['I', 'watched', 'a', 'knife', 'but', 'she', 'loved', 'him.'], ['Do', 'you', 'think', 'that', 'Mary', 'is', 'too', 'sure', 'to', 'Mary?'], ["I'm", 'very', 'grateful', 'for', 'your', 'help.'], ['Science', 'is', 'really', 'cool', 'if', 'it', 'is', 'really', 'large.'], ['She', 'is', 'about', 'the', 'subject.'], ['I', 'left', 'your', 'message', 'on', 'your', 'message', 'this', 'morning.'], ['He', 'made', 'up', 'his', 'job.'], ['No', 'one', "doesn't", 'know', 'anymore.'], ['Do', 'you', 'like', 'chocolate?'], ['Did', 'something', 'happen?'], ['I', 'am', 'likely', 'to', 'look', 'a', 'doctor.'], ['Thanks', 'for', 'me', 'for', 'this', 'evening.'], ['I', 'got', 'up', 'very', 'early', 'this', 'morning.'], ['Did', 'you', 'have', 'his', 'face', 'yesterday?'], ['Tom', 'can', 'run', 'faster', 'than', 'you.'], ['They', 'are', 'all', 'very', 'kind.'], ['That', 'was', 'really', 'awesome.'], ['He', 'lost', 'the', 'apple', 'and', 'had', 'a', 'sharp', 'watch.'], ['Why', 'do', 'something', 'happen?'], ['No', 'one', 'believed', 'me.'], ["I'm", 'so', 'tired!'], ['Tom', 'stayed', 'for', 'Boston', 'for', 'three', 'days.'], ["I'm", 'glad', 'I', 'have', 'a', 'friend', 'like', 'you', 'to', 'confide', 'in.'], ['Some', 'people', 'were', 'absent.'], ['How', 'did', 'you', 'know', 'where', 'I', 'be?'], ['The', 'first', 'time', 'did', 'the', 'first', 'time', 'we', 'got', 'a', 'first', 'time.'], ["I'm", 'glad', 'you', "weren't", 'injured.'], ["That's", 'a', 'good', 'story.'], ['I', 'know', 'what', 'they', 'know.'], ['She', 'is', 'trying', 'to', 'prove', 'the', 'existence', 'of', 'ghosts.'], ['I', 'hope', 'to', 'participate.'], ["You're", 'not', 'a', 'coward.'], ['We', 'are', 'lazy.'], ['I', "don't", 'know', 'the', 'dishwasher?'], ['I', "don't", 'know', 'what', "he's", 'talking', 'about.'], ['Tom', 'told', 'me', 'about', 'the', 'fire.'], ['I', 'appreciate', 'the', 'line.'], ['Try', 'not', 'to', 'go', 'out', 'with', 'the', 'weather.'], ["I'm", 'glad', 'to', 'help', 'you', 'help.'], ['I', "don't", 'feel', 'so', 'smart.'], ['I', "didn't", 'mean', 'to', 'surprise', 'you.'], ['If', 'you', 'spend', 'a', 'year', 'and', 'then', 'will', 'go', 'camping', 'with', 'New', 'York.'], ['What', 'did', 'you', 'do', 'then?'], ['He', 'is', 'a', 'huge', 'photographer.'], ["That's", 'why', 'I', 'trust', 'you.'], ['Ask', 'him', 'to', 'tell', 'him', 'what', 'he', 'says.'], ['You', 'have', 'a', 'little', 'weight,', "haven't", 'you?'], ['I', 'wonder', 'what', 'your', 'opinion', 'is.'], ['I', 'thought', 'you', 'were', 'smart.'], ['If', 'you', 'have', 'a', 'tendency', 'to', 'prove', 'something', 'in', 'England.'], ['Could', 'you', 'please', 'put', 'a', 'little', 'more', 'smaller?'], ['This', 'is', 'your', 'turn.'], ['Where', 'do', 'you', 'live?'], ['We', 'always', 'went', 'to', 'bed', 'to', 'the', 'law.'], ['It', 'looks', 'like', 'a', 'dream.'], ["Shouldn't", 'we', 'go', 'with', 'Tom?'], ['Everything', 'happened', 'on', 'with', 'him.'], ['We', 'miss', 'a', 'lot', 'of', 'options.'], ['He', 'was', 'looking', 'at', 'the', 'front', 'of', 'her', 'shoes.'], ['What', 'time', 'does', 'your', 'class', 'end?'], ['I', 'like', 'English.'], ['She', 'needs', 'to', 'be', 'beautiful.'], ['Do', 'you', 'like', 'cats?'], ['Tom', 'goes', 'to', 'church', 'every', 'day.'], ['I', 'usually', 'shower', 'every', 'night.'], ['What', 'is', 'the', 'bus', 'I', 'want', 'to', 'do', 'with', 'you?'], ['Tom', 'is', 'at', 'the', 'phone.'], ['Please', 'tell', 'Mary', 'that', 'Mary', 'loved', 'you.'], ['As', 'far', 'as', 'I', 'know,', 'it', 'ever', 'happened.'], ['They', 'met', 'each', 'other.'], ['Let', 'me', 'know', 'when', 'you', 'will', 'know', 'the', 'place.'], ['It', 'is', 'not', 'a', 'beautiful', 'small,', 'but', "she's", 'pretty.'], ['My', 'father', 'is', 'making', 'given', 'me', 'in.'], ['The', 'conference', 'was', 'postponed', 'at', 'five.'], ['Tom', 'is', 'a', 'doctor.'], ["They're", 'arguing.'], ['Who', 'broke', 'the', 'window?'], ['Please', 'open', 'the', 'door.'], ['I', 'saw', 'her', 'walking', 'a', 'hammer.'], ['I', 'told', 'you', 'to', 'call', 'me.'], ["We'll", 'all', 'be', 'here', 'for', 'you.'], ['Fewer', 'further', 'more', 'than', 'more', 'than', 'the', 'wheel.'], ['I', 'used', 'to', 'write', 'all', 'of', 'my', 'eyes.'], ["It's", 'a', 'nice', 'day.'], ['I', 'still', 'have', 'a', 'job', 'to', 'do.'], ['I', 'remember', 'it', 'if', 'it', 'was', 'yesterday.'], ["That's", 'too', 'great!'], ['I', 'saw', 'you', 'study.'], ['This', 'is', 'totally', 'one', 'of', 'our', 'teeth.'], ['Yesterday', 'was', 'a', 'cold,', 'because', 'it', 'was', 'very', 'cold.'], ['Tom', 'is', 'no', 'longer', 'welcome', 'in', 'my', 'house.'], ['Your', 'face', 'is', 'very', 'angry.'], ['Take', 'it', 'out', 'for', 'a', 'walk.'], ['What', 'did', 'you', 'please', 'tell', 'me', 'that', 'you', 'were', 'at', 'home', 'yesterday?'], ['You', 'were', 'incompetent.'], ['He', 'asked', 'for', 'the', 'money', 'for', 'a', 'trip.'], ['This', 'is', 'the', 'fastest', 'of', 'the', 'world.'], ['They', "don't", 'have', 'to', 'spend', 'their', 'way', 'from', 'their', 'cigarette.'], ['Who', 'do', 'you', 'want', 'to', 'speak', 'with?'], ['He', 'had', 'to', 'control', 'himself.'], ['I', 'thought', 'you', 'were', 'one', 'of', 'us.'], ['I', 'really', 'should', 'not', 'know', 'the', 'answer.'], ['The', 'bed', 'is', 'very', 'comfortable.'], ['Tom', "isn't", 'my', 'enemy.'], ['Have', 'you', 'ever', 'given', 'a', 'map', 'of', 'the', 'money?'], ['Your', 'neighbors', 'will', 'have', 'to', 'begin.'], ['She', 'is', 'being', 'paid', 'for', 'the', 'job.'], ['We', 'want', 'to', 'help', 'Tom.'], ['When', 'you', 'meet', 'someone', 'for', 'the', 'first', 'time,', 'be', 'careful', 'about', 'how', 'close', 'you', 'met', 'her.'], ["Don't", 'push', 'me!'], ['When', 'do', 'you', 'live', 'in', 'your', 'own', 'car?'], ['I', 'have', 'three', 'shoes.'], ["I've", 'always', 'wanted', 'to', 'meet', 'your', 'brother.'], ["I'm", 'beginning', 'to', 'understand', 'it.'], ['Is', 'his', 'old', 'car', 'in', 'the', 'car.'], ['By', 'the', 'reason', 'you', 'were', 'not', 'late,', 'you', 'were', 'in', 'front', 'of', 'me.'], ['Tom', 'was', 'hit', 'by', 'a', 'car.'], ['I', 'read', 'comic', 'books.'], ['There', 'was', 'a', 'big', 'gun', 'at', 'the', 'door.'], ['What', 'part', 'of', 'you', 'are', 'going?'], ['We', 'are', 'even.'], ['I', 'do', 'the', 'same', 'thing', 'that', 'I', 'would', 'do.'], ['We', 'are', 'here', 'with', 'our', 'kids.'], ["I'd", 'like', 'a', 'cup', 'of', 'tea,', 'please.'], ['I', "can't", 'stand', 'staying', 'indoors.'], ['We', 'love', 'Tom.'], ['I', 'wish', 'to', 'talk', 'to', 'Tom.'], ['I', 'find', 'this', 'point?'], ['I', 'know', "you're", 'not', 'staying', 'here', 'in', 'staying', 'here', 'long.'], ['There', 'are', 'many', 'words', 'that', 'I', "don't", 'understand.'], ['I', "can't", 'put', 'words', 'on', 'my', 'feelings.'], ['When', 'did', 'you', 'get', 'there?'], ['What', 'were', 'you', 'doing', 'this', 'time?'], ['Tom', 'woke', 'up', 'till', 'noon.'], ['Let', 'me', 'check.'], ["Don't", 'just', 'think', 'of', 'them.'], ['I', "don't", 'have', 'a', 'walk.'], ['I', 'had', 'to', 'go', 'back', 'home.'], ['I', 'wake', 'him', 'up', 'at', 'six', 'every', 'morning.'], ['He', 'walked', 'up', 'the', 'door.'], ['Generally', 'speaking,', 'their', 'hair', 'was', 'almost', 'white.'], ['He', 'is', 'a', 'poet.'], ['I', 'was', 'determined', 'to', 'know', 'what', 'to', 'do', 'next', 'time.'], ["I'm", 'beginning', 'to', 'be', 'hungry.'], ['You', "don't", 'have', 'to', 'go', 'unless', 'you', 'want', 'to.'], ['The', 'radio', 'is', 'too', 'hot.'], ['Did', 'you', 'have', 'this', 'evening?'], ['Would', 'you', 'please', 'tell', 'me', 'that', 'I', 'am', 'that', 'I', 'am', 'in', 'private?'], ['They', 'were', 'afraid', 'of', 'their', 'people.'], ['How', 'is', 'your', 'name?'], ["I'll", 'keep', 'any', 'promises.'], ['It', "wasn't", 'all', 'the', 'happening.'], ['What', 'a', 'great', 'idea!'], ["You're", 'loaded.'], ['What', 'were', 'you', 'going', 'to', 'take?'], ["Don't", 'ever', 'name', 'his', 'name.'], ['I', 'love', 'the', 'way', 'you', 'talk.'], ["I'll", 'give', 'you', 'a', 'letter', 'again.'], ['Sit', 'here.'], ['She', 'spends', 'a', 'lot', 'of', 'time', 'practicing', 'the', 'paperwork.'], ['I', 'was', 'in', 'cash.'], ['She', 'bought', 'a', 'camera.'], ['The', 'friendship', 'is', 'a', 'great', 'hobby.'], ['Why', "don't", 'we', 'get', 'a', 'party?'], ['What', 'are', 'you', 'wearing', 'your', 'own', 'name?'], ["I'm", 'sorry,', 'but', 'I', "didn't", 'hear', 'what', 'you', 'said.'], ['Tom', 'is', 'in', 'a', 'state', 'of', 'water.'], ['It', "doesn't", 'concern', 'me.'], ['Be', 'careful', 'with', 'what', 'happens', 'to', 'be', 'wrong', 'with', 'the', 'car.'], ["It's", 'way', 'of', 'people', 'who', 'they', 'need', 'to', 'ask', 'who', 'they', 'need', 'help.'], ['trust', 'Tom.'], ['Going', 'far', 'in', 'a', 'big', 'audience', 'to', 'be', 'nervous.'], ["You're", 'very', 'wise.'], ['I', 'just', 'arrived', 'at', 'the', 'station.'], ["We're", 'not', 'safe.'], ["They're", 'looking', 'for', 'you.'], ['Will', 'it', 'be', 'going', 'to', 'work?'], ['When', 'we', 'have', 'a', 'native', 'speaker', 'could', 'not', 'be', 'interested', 'in', 'this', 'business,', 'we', "can't", 'save', 'us.'], ['Is', 'that', 'all', 'you', 'saw?'], ['I', 'think', 'you', 'enjoyed', 'very', 'well.'], ["I'd", 'like', 'a', 'cup', 'of', 'coffee.'], ['It', 'will', 'be', 'working.'], ["We'll", 'make', 'the', 'decision', 'for', 'you.'], ['She', 'said', 'that', 'I', 'needed', 'a', 'new', 'one.'], ['He', 'went', 'to', 'the', 'dentist.'], ['A', 'number', 'of', 'bullet', 'I', 'used', 'to', 'think', 'of', 'a', 'waste', 'of', 'year.'], ['It', 'was', 'a', 'little', 'scary.'], ['I', 'would', 'like', 'two', 'questions.'], ['The', 'boys', 'ran', 'away', 'from', 'me.'], ["You're", 'probably', 'tired.'], ['Tom', "doesn't", 'agree', 'with', 'you.'], ['This', 'milk', 'is', 'wonderful.'], ['I', "can't", 'tell', 'you', 'how', 'happy', 'I', 'am', 'that', "you've", 'come', 'to', 'visit', 'us.'], ['Is', 'eating', 'harder', 'again', 'if', 'you', 'are,', 'the', 'boxes', 'is', 'that', 'worth', 'me?'], ['When', 'did', 'you', 'work', 'with', 'the', 'work?'], ['Sooner', 'or', 'later,', 'we', 'can', 'be', 'able', 'to', 'die.'], ["Let's", 'go', 'and', 'get', 'a', 'walk', 'in', 'a', 'walk', 'in', 'a', 'walk', 'in', 'a', 'walk.'], ['Did', 'they', 'believe', 'that', 'you', "didn't", 'eat', 'anything?'], ['Get', 'away', 'from', 'me.'], ['What', 'do', 'you', 'want', 'to', 'see', 'while', "you're", 'there?'], ['I', "can't", 'stop', 'drinking.'], ['I', 'am', 'close', 'to', 'the', 'door.'], ['Why', "don't", 'we', 'get', 'in', 'your', 'quarters?'], ['I', 'want', 'to', 'sit', 'around', 'the', 'window.'], ['This', 'is', 'your', 'turn.'], ['I', 'had', 'a', 'weird', 'dream', 'last', 'night.'], ['We', 'discussed', 'the', 'problem', 'for', 'the', 'wrong', 'time.'], ['Is', 'it', 'yours?'], ['We', 'got', 'to', 'the', 'fire', 'when', 'the', 'fire', 'was', 'in', 'a', 'gunshot.'], ['He', 'said', 'he', 'was', 'poor.'], ['I', 'know', 'that', 'Tom', 'is', 'drunk.'], ["I'll", 'keep', 'it', 'all.'], ['Tom', 'probably', 'probably', 'probably', 'know', 'French.'], ['I', 'really', 'am', 'sorry.'], ['Return', 'this', 'box.'], ["Don't", 'make', 'me', 'laugh.'], ['I', 'am', 'old.'], ['As', 'soon', 'as', 'you', 'say', 'it', 'was', 'right.'], ["I'm", 'very', 'glad', 'to', 'see', 'you', 'again.'], ['I', 'spoke', 'with', 'the', 'girl', 'you', 'spoke', 'to', 'me.'], ['I', 'just', 'wanted', 'to', 'think', "it's", 'really', 'true.'], ["I'm", 'not', 'used', 'to', 'this', 'ship.'], ['He', 'entered', 'the', 'bank.'], ['Please', "don't", 'kill', 'me.'], ['When', 'I', 'heard', 'so', 'I', 'heard', 'to', 'cry.'], ['I', "don't", 'want', 'you', 'to', 'be', 'upset.'], ['I', "wasn't", 'sure', 'about', 'all', 'myself.'], ['You', 'need', 'to', 'obey', 'your', 'parents.'], ['I', 'read', 'every', 'one', 'of', 'reading', 'novels.'], ['You', 'know', 'me.'], ['I', 'excused', 'the', 'boxes'], ['When', 'will', 'you', 'leave?'], ['What', 'was', 'it', 'on', 'time?'], ['Why', "didn't", 'you', 'tell', 'Tom', 'that', 'you', 'were', 'here?'], ['Help', 'me', 'and', 'help', 'you.'], ["What's", 'your', 'first', 'time', 'now?'], ['I', 'guess', "I'd", 'have', 'the', 'ability', 'to', 'write', 'the', 'way', 'I', 'could.'], ['I', 'met', 'it', 'before.'], ['You', 'can', 'take', 'my', 'car', 'when', 'you', 'have', 'time.'], ['I', 'love', 'the', 'light', 'then.'], ["I'll", 'do', 'anything', 'but', 'I', 'do', 'that.'], ['I', 'invited', 'my', 'neighbors', 'to', 'neighbors.'], ['You', "don't", 'know', 'what', 'you', 'do.'], ["They're", 'twins.'], ['He', 'is', 'a', 'poet.'], ['The', 'baby', 'accused', 'me', 'of', 'breath.'], ['He', 'left', 'his', 'future', 'and', 'left.'], ['The', 'growth', 'have', 'a', 'lot', 'of', 'patients.'], ['I', 'am', 'unable', 'to', 'answer', 'that', 'question.'], ['Tom', 'is', 'a', 'fanatic.'], ['I', 'told', 'you.'], ['She', 'wants', 'him', 'to', 'go', 'with', 'her.'], ['I', 'saw', 'a', 'loud', 'crossing', 'at', 'the', 'street.'], ['Please', 'be', 'polite.'], ['I', 'can', 'teach', 'you', 'how', 'to', 'protect', 'Tom.'], ['Be', 'serious.'], ["Don't", 'worry', 'about', 'it.'], ['He', 'is', 'always', 'complaining', 'the', 'time.'], ['If', 'you', "don't", 'want', 'me', 'to', 'stay', 'here,', 'you', "I'll", 'leave.'], ['How', 'come', "you're", 'always', 'so', 'energetic?'], ['I', 'have', 'to', 'admit', 'my', 'mother.'], ['We', 'bought', 'a', 'book', 'from', 'tea.'], ['You', 'need', 'to', 'decide', 'what', 'you', 'need', 'to', 'decide', 'about.'], ['Who', 'else', 'helped', 'you?'], ['He', 'looks', 'angry.'], ["I'm", 'not', 'good', 'at', 'that.'], ['Traveling', 'is', 'out', 'of', 'these', 'days.'], ['Did', 'you', 'put', 'on', 'the', 'cream', 'of', 'mail?'], ['Tom', 'is', 'still', 'alive.'], ['Everyone', 'wants', 'to', 'let', 'him,', 'but', 'he', 'wants', 'to', 'beat', 'him,'], ['I', 'like', 'the', 'way', 'you', 'can.'], ['I', 'left', 'the', 'key', 'in', 'the', 'room.'], ["Don't", 'do', 'that', 'again.'], ["You're", 'depressed,', "aren't", 'you?'], ["That's", 'why', "I'm", 'here.'], ['I', 'hate', 'to', 'thank', 'you.'], ['Life', 'is', 'ours.'], ['She', 'told', 'him', 'that', 'she', 'was', 'hungry.'], ['Just', 'do', 'the', 'job.'], ["I'd", 'like', 'to', 'go', 'there', 'without', 'a', 'mind.'], ['He', 'is', 'the', 'only', 'one', 'as', 'friends.'], ['I', 'can', 'understand', 'your', 'point', 'of', 'view.'], ['He', 'is', 'washing', 'the', 'best', 'than', 'I', 'do.'], ['My', 'turn', 'is', 'missing.'], ['You', 'should', 'be', 'more', 'careful.'], ['The', 'cold', 'child', 'is', 'always', 'a', 'mystery.'], ['Is', 'your', 'watch', 'correct?'], ["We're", 'not', 'getting', 'anywhere.'], ['The', 'front', 'of', 'the', 'fire', 'was', 'in', 'front', 'of', 'the', 'middle', 'of', 'my', 'life.'], ["Aren't", 'you', 'surprised', 'to', 'see', 'me?'], ['I', 'drank', 'a', 'glass', 'of', 'wine', 'this', 'morning.'], ['Look', 'in', 'the', 'eyes', 'and', 'tell', 'me', 'that', 'you', "can't", 'do', 'it.'], ["Don't", 'you', 'always', 'understand?'], ['If', 'you', 'want', 'this,', "I'll", 'change', 'the', 'question.'], ['When', 'I', "don't", 'know', 'the', 'person', 'I', 'could', 'listen.'], ['Sorry', 'to', 'thank', 'you', 'sooner.'], ['I', 'never', 'felt', 'my', 'father.'], ['What', 'do', 'you', 'plan', 'to', 'do', 'with', 'the', 'money?'], ["There's", 'no', 'time.'], ['I', 'found', 'the', 'end', 'of', 'the', 'last.'], ['He', 'gave', 'us', 'an', 'interview.'], ['I', 'want', 'this', 'dog.'], ['Everyone', 'is', 'in', 'the', 'accident.'], ['He', 'is', 'good', 'and', 'good', 'care', 'of', 'energy.'], ['She', 'asked', 'him', 'to', 'marry', 'him.'], ['I', 'need', 'to', 'talk', 'to', 'you', 'privately.'], ['Could', 'I', 'help', 'you', 'money?'], ["It's", 'better', 'to', 'stay', 'in', 'the', 'way', 'rain.'], ['He', 'arrived', 'suddenly.'], ['His', 'ideas', "didn't", 'bother', 'you.'], ['He', 'suggested', 'it', 'when', 'we', 'finish', 'on', 'the', 'long', 'before', 'long', 'before', 'it', 'gets', 'cold.'], ['Tom', 'got', 'out', 'of', 'his', 'wallet', 'when', 'he', 'was', 'in', 'Boston.'], ['I', 'ran', 'with', 'everyone.'], ['Just', 'stop', 'your', 'question', 'please.'], ['My', 'grandfather', 'was', 'successful.'], ['Tom', 'arrived', 'first.'], ['Do', 'you', 'play', 'tennis', 'well?'], ['I', 'have', 'a', 'plan.'], ["You're", 'faithful.'], ['At', 'first,', 'I', "didn't", 'believe', 'his', 'advice.'], ['They', "didn't", 'keep', 'our', 'word.'], ['Anyone', 'makes', 'your', 'eggs', "isn't", 'it?'], ['All', 'of', 'the', 'songs', 'went', 'to', 'us.'], ['No', 'one', 'cares', 'anymore.'], ['He', 'sometimes', 'puts', 'me', 'on.'], ["They're", 'a', 'good', 'team.'], ['The', 'store', 'was', 'full', 'of', 'people.'], ['Please', 'be', 'here.'], ["That's", 'what', 'you', 'need', 'to', 'do.'], ['I', 'hope', 'that', 'she', 'is', 'safe.'], ['Tom', 'was', 'a', 'bad', 'person.'], ['We', 'met', 'the', 'message', 'yesterday.'], ['It', 'was', 'very', 'disappointing.'], ['Tom', 'needs', 'to', 'help', 'them.'], ['I', 'want', 'to', 'make', 'a', 'good', 'job.'], ['You', "don't", 'have', 'to', 'answer.'], ['Where', 'is', 'your', 'captain'], ['This', 'dictionary', 'is', 'washing', 'my', 'fault.'], ['Wine', 'is', 'going', 'to', 'be', 'back?'], ["I'm", 'sure', 'my', 'parents', "won't", 'let', 'me', 'go', 'by', 'myself.'], ['I', 'have', 'no', 'food.'], ['He', "doesn't", 'want', 'to', 'use', 'a', 'parents.'], ['Thank', 'thank', 'you.'], ['It', 'may', 'be', 'for', 'you.'], ['How', 'does', 'it', 'feel', 'to', 'be', 'an', 'overcoat', 'to', 'get', 'a', 'lawyer.'], ['Everything', 'makes', 'sense.'], ['These', 'boxes', 'are', 'sold', 'against', 'each', 'other.'], ['Have', 'you', 'ever', 'been', 'up', 'to', 'your', 'dipping?'], ['I', 'have', 'plenty', 'of', 'friends.'], ['She', 'was', 'surprised', 'by', 'his', 'sudden', 'appearance.'], ['Tom', 'told', 'you', 'the', 'truth.'], ['My', 'work', 'is', 'boring.'], ['Tom', 'helped', 'his', 'son', 'to', 'himself.'], ['I', 'want', 'to', 'make', 'sure', 'you', 'want', 'to', 'make', 'amends', 'for', 'you.'], ['She', 'attacked', 'him', 'with', 'her', 'fists.'], ["That's", 'one', 'of', 'them.'], ['Tom', 'called', 'his', 'trip.'], ['Tom', "wasn't", 'in', 'a', 'hurry.'], ['You', 'can', 'wake', 'up', 'the', 'plane', 'to', 'wake', 'you', 'at', 'the', 'train.'], ['Where', 'is', 'the', 'map?'], ['I', 'belong', 'to', 'the', 'tennis', 'club.'], ["Don't", 'forget', 'to', 'turn', 'off', 'the', 'TV', 'before', 'you', 'leave.'], ['I', 'suppose', 'he', 'is', 'going', 'to', 'talk', 'to', 'the', 'possibility', 'of', 'this', 'store.'], ['Please', 'forward', 'the', 'ball', 'to', 'please.'], ['Steam', 'is', 'fresh', 'out', 'of', 'the', 'engine.'], ['I', 'like', 'cookies.'], ['How', 'did', 'your', 'dog', 'drink', 'here?'], ['There', 'is', 'a', 'lot', 'of', 'cream', 'and', 'butter', 'and', 'the', 'air', 'and', 'butter', 'and', 'a', 'dirty', 'clothes', 'and', 'filled', 'with', 'oil.'], ['Tell', 'Tom', 'that', 'I', "won't", 'be', 'there.'], ['I', 'am', 'in', 'love', 'and', 'left', 'the', 'other', 'alive.'], ['I', 'slept', 'very', 'well', 'last', 'night.'], ['He', 'tends', 'to', 'get', 'our', 'plans', 'to', 'study.'], ['Take', 'off', 'your', 'right', 'back.'], ["You're", 'not', 'invited.'], ['I', "don't", 'like', 'the', 'movies.'], ['We', 'studied', 'English', 'in', 'the', 'afternoon.'], ["I'm", 'used', 'to', 'this', 'evening', 'tonight.'], ['I', 'think', "we've", 'had', 'enough.'], ['Stop', 'being', 'stupid.'], ['I', 'have', 'to', 'go', 'somewhere.'], ['A', 'captain', 'and', 'his', 'proposal', 'is', 'its', 'crew.'], ['My', 'live', 'in', 'London.'], ['It', 'was', 'hard', 'to', 'believe.'], ['Tom', 'asked', 'Mary', 'to', 'take', 'a', 'cup', 'of', 'coffee', 'for', 'him.'], ["It's", 'too', 'big.'], ['He', 'is', 'larger', 'than', 'his', 'father.'], ['May', 'I', 'take', 'a', 'message?'], ['I', 'really', 'want', 'to', 'stay.'], ['What', 'do', 'you', 'think', 'what', 'would', 'be?'], ['I', 'thought', 'I', 'wanted', 'the', 'moment', 'I', 'saw', 'you.'], ['I', 'think', 'Tom', 'is', 'crazy.'], ['Are', 'you', 'at', 'the', 'office', 'yet?'], ['We', 'have', 'a', 'problem', 'in', 'common', 'condition.'], ['Tom', "didn't", 'want', 'to', 'do', 'anything.'], ['You', 'can', 'fix', 'the', 'water', 'on', 'the', 'glass.'], ['I', 'think', 'you', 'know', 'what', 'you', 'should', 'do.'], ['His', 'father', 'is', 'out', 'of', 'his', 'father.'], ['The', 'noise', 'will', 'wake', 'you', 'the', 'baby.'], ['Somebody', 'has', 'some', 'trouble.'], ['I', 'cannot', 'make', 'myself', 'understood', 'German.'], ['I', 'paid', 'his', 'advice.'], ['No', 'one', 'had', 'not', 'to', 'read', 'in', 'the', 'park', 'every', 'day.'], ['Can', 'you', 'speak', 'for', 'more', 'slowly,', 'please?'], ['Any', 'thing', 'is', 'better', 'than', 'anything.'], ["Everybody's", 'a', 'lumberjack.'], ['They', "don't", 'have', 'much', 'to', 'do.'], ['I', 'used', 'to', 'play', 'tennis', 'with', 'him', 'at', 'least', 'play', 'Sundays.'], ['We', 'chose', 'a', 'hotel', 'near', 'the', 'museums.'], ["I'm", 'not', 'the', 'only', 'one', 'planning', 'to', 'do', 'that.'], ['I', 'want', 'to', 'know', 'what', 'love.'], ['One', 'of', 'my', 'friends', 'died', 'last', 'week.'], ['I', 'know', 'something', 'you', "don't."], ['My', 'uncle', 'told', 'me', 'that', 'he', 'bought', 'a', 'new', 'watch.'], ['Are', 'you', 'being', 'back?'], ['No', 'one', 'has', 'anything.'], ['They', 'were', 'too', 'excited.'], ['That', 'might', 'take', 'a', 'while.'], ["Who's", 'your', 'boyfriend?'], ["I'm", 'not', 'unhappy.'], ['She', 'advised', 'him', 'not', 'to', 'help', 'her', 'house,', 'but', 'he', "wouldn't", 'listen', 'to', 'himself.'], ['Is', 'there', 'something', 'in', 'particular', 'that', 'you', 'want', 'to', 'drink?'], ['She', "couldn't", 'suppress', 'his', 'emotions.'], ['The', 'coach', 'needs', 'me.'], ["I'm", 'going', 'to', 'stop', 'trying', 'to', 'be', 'friendly', 'with', 'you.'], ['Turn', 'on', 'the', 'right', 'place', 'at', 'the', 'corner.'], ['How', 'many', 'suicides', 'do', 'you', 'think', 'it', 'is', 'in', 'Boston?'], ['How', 'much', 'longer', 'are', 'the', 'new', 'TV', 'on.'], ['Whether', 'you', 'understand', 'why', 'you', "don't", 'like', 'it.'], ['We', "can't", 'agree', 'with', 'you', 'on', 'this', 'point.'], ["I'd", 'love', 'to', 'visit', 'Boston.'], ['Everyone', 'waited.'], ['She', 'is', 'busy', 'talking', 'to', 'help', 'you', 'so', 'that', 'she', "can't", 'talk', 'with', 'you.'], ["You're", 'resourceful.'], ['Are', 'you', 'over', 'the', 'morning?'], ['What', 'would', 'you', 'like', 'for', 'dessert?'], ["I'm", 'not', 'a', 'traitor.'], ["That's", 'something', 'I', 'have', 'to', 'do', 'something', 'alone.'], ["I'm", 'sure', 'that', 'he', 'will', 'soon', 'be', 'soon.'], ['Is', 'Tom', 'supposed', 'to', 'do', 'that?'], ['How', 'many', 'times', 'have', 'we', 'done?'], ['I', "haven't", 'seen', 'him', 'for', 'ages.'], ["I'm", 'not', 'the', 'heart.'], ['I', "don't", 'like', 'dancing.'], ["I'm", 'the', 'happiest', 'man', 'that', 'Tom', 'is', 'the', 'younger', 'man.'], ["You've", 'got', 'to', 'be', 'very', 'special.'], ['I', 'think', 'Tom', 'is', 'a', 'decent', 'restaurant', 'that', 'he', 'is', 'a', 'decent', 'part', 'of', 'his', 'word.'], ['I', 'wanted', 'to', 'become', 'a', 'journalist.'], ['The', 'airplane', 'is', 'rising.'], ['Tom', 'wiped', 'the', 'table', 'with', 'a', 'table.'], ['I', 'got', 'lost', 'in', 'the', 'forest.'], ['She', 'always', 'says', 'everything', 'about', 'him.'], ['Take', 'up', 'on.'], ['She', 'raised', 'their', 'children.'], ['I', 'hope', 'this', 'weather', 'holds.'], ["There's", 'a', 'great', 'piece', 'of', 'glass.'], ['Hi!', 'is', 'great!'], ['He', 'did', 'it', 'better', 'than', 'he', 'did.'], ['The', 'rebels', 'like', 'each', 'other.'], ['Who', 'will', 'have', 'out', 'of', 'rain.'], ["What's", 'the', 'matter', 'with', 'the', 'matter?'], ["I'm", 'lucky', 'to', 'have', 'you', 'paid', 'for', 'a', 'friend.'], ['He', 'got', 'the', 'key', 'to', 'find', 'of', 'the', 'result', 'before', 'yesterday.'], ['Tom', 'is', 'wearing', 'his', 'habit', 'of', 'his', 'teeth.'], ['He', 'may', 'as', 'well', 'as', 'his', 'cook', 'as', 'he', 'does.'], ['Do', 'you', 'speak', 'French', 'well?'], ["It's", 'more', 'than', 'I', 'expected.'], ["There's", 'no', 'other', 'choice.'], ["I'm", 'sorry,', 'but', 'I', "can't", 'repair', 'this', 'store', 'in', 'the', 'car', 'next', 'weekend.'], ['There', 'are', 'many', 'animals', 'in', 'the', 'park.'], ['I', 'felt', 'quite', 'uneasy.'], ['He', 'studied', 'the', 'way', 'to', 'fly.'], ['Try', 'not', 'to', 'look', 'so', 'shocked.'], ['I', 'think', 'you', 'should', 'change', 'your', 'promises.'], ['I', 'love', 'rock', 'and', 'music.'], ["Don't", 'worry', 'about', 'your', 'idea', 'about', 'it.'], ['Have', 'you', 'found', 'a', 'solution?'], ["I'm", 'going', 'to', 'work.'], ['I', 'know', 'you', 'have', 'a', 'girlfriend.'], ['I', 'want', 'you', 'to', 'be', 'a', 'friend.'], ["You're", 'not', 'going', 'to', 'believe', 'it.'], ["I'm", 'very', 'busy.'], ["He's", 'taller', 'than', 'me.'], ['It', 'is', 'exactly', 'why', 'we', 'we', 'have', 'to', 'make', 'our', 'view.'], ['He', 'drank', 'all', 'day', 'yesterday.'], ['You', 'should', 'have', 'your', 'eyes', 'examined.'], ['I', 'made', 'sacrifices.'], ['My', 'uncle', 'gave', 'me', 'his', 'car.'], ['How', 'did', 'you', 'become', 'interested', 'in', 'studying', 'languages?'], ["We've", 'all', 'seen', 'it.'], ["Don't", 'do', 'your', 'job.'], ['Tom', 'just', 'wants', 'to', 'help', 'you', 'two', 'more.'], ['We', 'have', 'fun.'], ['My', 'alarm', 'happened.'], ['All', 'of', 'these', 'letters', 'are', 'you?'], ['War', "isn't", 'bad.'], ['Trees', 'planted', 'along', 'the', 'street.'], ['Please', 'give', 'me', 'your', 'name.'], ['Can', 'we', 'speak', 'French?'], ['How', 'about', 'going', 'to', 'see', 'a', 'movie', 'tonight?'], ['Many', 'people', 'hate', 'you', 'already.'], ['The', 'climate', 'is', 'missing.'], ['I', "don't", 'think', 'I', 'can', 'help', 'you.'], ["I've", 'had', 'a', 'lot', 'of', 'fun', 'you.'], ['We', 'have', 'to', 'put', 'the', 'roof.'], ["Don't", 'leave', 'this', 'room.'], ['You', 'should', 'have', 'spoken', 'more', 'politely.'], ['What', 'kind', 'of', 'person', 'have', 'else', 'live', 'in', 'a', 'band?'], ['No', 'one', 'had', 'read', 'the', 'students', 'had', 'written', 'the', 'problem.'], ["It's", 'rather', 'than', 'pizza.'], ['No', 'one', 'is', 'at', 'home.'], ['I', 'love', 'modern', 'authors.'], ['We', 'left', 'a', 'secret', 'meeting.'], ['I', 'got', 'what', 'you', 'asked', 'for.'], ["Let's", 'go', 'to', 'the', 'trip.'], ['I', 'know', "you're", 'smarter', 'than', 'me.'], ['Be', 'a', 'good', 'boy.'], ['How', 'could', 'you', 'have', 'done', 'that?'], ['How', 'do', 'I', 'get', 'to', 'the', 'post', 'office?'], ['Are', 'you', 'still', 'at', 'it?'], ['She', 'made', 'him', 'the', 'date', 'on', 'the', 'radio.'], ['I', "can't", 'put', 'up', 'with', 'her', 'any', 'longer.'], ['What', 'a', 'beautiful', 'scene!'], ['You', "can't", 'use', 'this', 'washing', 'machine.'], ['We', 'had', 'enough', 'children', 'to', 'study.'], ['He', 'spent', 'the', 'whole', 'whole', 'whole', 'whole', 'day.'], ['It', 'appeared', 'there', 'is', 'the', 'oldest', 'we', 'got', 'married.'], ['You', 'should', 'try', 'to', 'pay', 'more', 'food.'], ['We', 'stayed', 'in', 'a', 'hot', 'time.'], ['You', 'have', 'no', 'right', 'to', 'ask.'], ['The', 'boxes', 'are', 'in', 'England.'], ['Is', 'there', 'any', 'reason', 'that', 'he', "doesn't", 'go?'], ['The', 'last', 'man', 'you', 'see', 'the', 'man', 'yesterday', 'by', 'the', 'last', 'one.'], ['She', 'folded', 'her', 'tears.'], ['Hurry', 'up,', 'guys.'], ["You're", 'being', 'prepared.'], ['Are', 'you', 'ready', 'to', 'work?'], ['No', 'one', 'noticed.'], ['The', 'sign', 'is', 'missing.'], ['I', 'came', 'to', 'my', 'closet', 'for', 'something', 'to', 'me.'], ['All', 'our', 'attempts', 'failed.'], ['Tom', "doesn't", 'remember.'], ['The', 'balloon', 'is', 'fixing', 'the', 'ball.'], ['I', 'have', 'to', 'do', 'this', 'right', 'away.'], ['I', 'am', 'staying', 'at', 'tennis.'], ['Tom', 'has', 'written', 'a', 'friend.'], ['A', 'fund', 'could', 'not', 'help', 'but', 'come', 'to', 'come', 'up', 'around', 'the', 'station', 'to', 'come', 'up', 'around', 'the', 'hotel.'], ['They', 'know', 'us.'], ['Tom', 'put', 'sugar', 'in', 'my', 'coffee.'], ['If', 'you', 'go', 'out', 'so', 'lightly', 'dressed,', "you'll", 'catch', 'a', 'cold.'], ['We', 'want', 'some', 'other', 'people.'], ["Don't", 'be', 'upset.'], ['I', 'lived', 'in', 'Boston', 'for', 'three', 'years.'], ['Can', 'you', 'help', 'a', 'call', 'please?'], ['Be', 'more', 'careful', 'from', 'now', 'on.'], ['I', 'really', 'love', 'kids.'], ['I', 'can', 'cut', 'your', 'hands', 'on', 'the', 'tip', 'on', 'the', 'tip', 'of', 'the', 'water.'], ['I', 'know', 'that', 'Tom', 'will', 'do', 'a', 'break.'], ['They', 'must', 'let', 'us', 'go.'], ['He', 'put', 'out', 'of', 'the', 'car', 'out', 'of', 'the', 'car', 'out', 'of', 'his', 'car.'], ['I', 'am', 'in', 'bed', 'now.'], ['Look', 'away', 'from', 'Tom.'], ['I', "can't", 'believe', "we're", 'going', 'to', 'make', 'it.'], ['Why', 'is', 'my', 'turn?'], ['What', 'do', 'you', 'get', 'here?'], ['Thank', 'you', 'all', 'right.'], ['I', "don't", 'really', 'have', 'a', 'weapon.'], ["There's", 'a', 'small', 'garden', 'in', 'our', 'garden.'], ['I', 'would', 'write', 'to', 'climb', 'the', 'article.'], ["I'm", 'sorry,', 'but', 'I', "can't", 'agree.'], ["I'm", 'sorry', 'that', 'he', "won't", 'be', 'a', 'dog.'], ["We're", 'going', 'to', 'do', 'everything', 'we', 'can.'], ["That's", 'exactly', 'what', 'I', 'needed.'], ['You', "can't", 'get', 'rid', 'of', 'it.'], ['His', 'clothes', 'are', 'very', 'nice.'], ['You', 'seem', 'happy.'], ['We', 'were', 'terrified.'], ["I've", 'never', 'been', 'abroad.'], ['I', 'want', 'to', 'go', 'to', 'Boston.'], ['Write', 'for', 'Tom.'], ['I', 'was', 'reading', 'such', 'a', 'book', 'remember.'], ['He', 'was', 'jealous', 'of', 'their', 'daughter.'], ['It', 'was', 'enough.'], ['I', 'met', 'him', 'last', 'year.'], ['I', 'borrowed', 'this', 'book', 'from', 'the', 'library.'], ["Don't", 'you', 'drive', 'a', 'ride?'], ['What', 'a', 'shame!'], ["I'm", 'happy', 'to', 'be', 'two', 'new', 'friends.'], ["I'd", 'like', 'to', 'find', 'out', 'what', 'this', 'is.'], ['He', 'can', 'play', 'guitar.'], ["I'm", 'being', 'between', 'you', 'and', 'me?'], ['Japan', 'is', 'what', 'he', 'grew', 'away', 'from', 'what', 'he', 'is', 'poor.'], ['We', 'were', 'friends.'], ['When', 'did', 'you', 'first', 'first', 'first', 'first', 'time', 'for', 'the', 'first', 'time?'], ['He', 'gave', 'us', 'to', 'help', 'us', 'some', 'help.'], ["I'm", 'too', 'old', 'for', 'you.'], ['I', "wouldn't", 'be', 'so', 'sure', 'about', 'that.'], ['Will', 'he', 'do', 'that?'], ['What', 'do', 'I', 'know', 'me?'], ['We', 'talked', 'about', 'it', 'without', 'a', 'joke.'], ['From', 'the', 'day', 'there', 'was', 'a', 'bit', 'outside', 'for', 'us', 'to', 'get', 'out', 'of', 'the', 'floor', 'for', 'you.'], ['May', 'I', 'have', 'a', 'glass', 'of', 'wine?'], ['It', "wasn't", 'all', 'the', 'whole', 'dog.'], ['I', 'sat', 'at', 'the', 'bar.'], ["That's", 'not', 'my', 'family', 'name', 'and', 'my', 'name', 'and', 'already', 'called', 'my', 'name', 'to', 'report', 'my', 'name.'], ["Let's", 'go', 'out', 'of', 'here', 'as', 'a', 'lot', 'of', 'things', 'and', 'Tom', 'stopped.'], ['You', 'have', 'to', 'tell', 'me.'], ["I'd", 'like', 'to', 'write', 'my', 'jacket.'], ['Mary', 'took', 'a', 'ring', 'at', 'his', 'clothes.'], ['I', "don't", 'know', 'what', 'to', 'do', 'next.'], ["Where's", 'the', 'restaurant', 'restaurant', 'now?'], ['Tom', 'is', 'a', 'very', 'good', 'farmer.'], ['You', 'drank', 'a', 'lot', 'of', 'beer', "didn't", 'you?'], ["Let's", 'go', 'and', 'see', 'a', 'walk', 'tonight.'], ['We', 'went', 'to', 'the', 'state', 'to', 'the', 'state', 'to', 'the', 'sea.'], ['He', "doesn't", 'have', 'a', 'friends.'], ["We're", 'not', 'ready', 'to', 'do', 'that.'], ['He', 'was', 'very', 'cold', 'in', 'mind.'], ['Where', 'were', 'you', 'taking', 'the', 'bus', 'go?'], ['Be', 'there', 'tonight.'], ["I'm", 'not', 'as', 'often', 'as', 'I', 'as', 'often', 'as', 'I', 'can.'], ['The', 'first', 'time', 'was', 'ten', 'years', 'ago.'], ['I', "don't", 'understand', 'what', "you're", 'talking', 'about.'], ['Why', 'does', 'he', 'like', 'me?'], ['I', 'just', 'thought', 'you', 'were', 'happy.'], ['He', 'was', 'covered', 'with', 'mud', 'from', 'head', 'to', 'foot.'], ['I', "couldn't", 'refuse.'], ['You', 'have', 'not', 'been', 'responsible', 'for', 'the', 'murder.'], ['Could', 'I', 'have', 'some', 'tea?'], ["I'm", 'sure', 'the', 'police', 'let', 'the', 'end', 'of', 'the', 'decision.'], ['Come', 'dinner', 'sometime.'], ['Not', 'knowing', 'what', 'to', 'do,', 'I', 'asked', 'for', 'advice.'], ['We', 'had', 'fun', 'with', 'them.'], ['It', 'is', 'rather', 'than', 'he', 'says.'], ['It', 'was', 'a', 'great', 'doctor.'], ['When', 'you', 'surf', 'the', 'web,', 'you', 'may', 'be', 'tracked', 'by', 'websites.'], ['Tom', 'was', 'terribly', 'frustrated.'], ['"Are', 'you', 'trying', 'to', 'tell', 'the', 'meeting', 'you', 'said', 'to', 'me.'], ["That's", 'all', 'I', 'can', 'do.'], ["Let's", 'talk', 'about', 'your', 'presence.'], ['He', 'lost', 'his', 'eyesight.'], ['I', "don't", 'expect', 'this', 'machine', 'on.'], ['Take', 'a', 'seat.'], ['I', "don't", 'know', 'who', 'they', 'are.'], ['I', 'know', 'Tom', 'did', 'that', 'by', 'myself.'], ['What', 'time', 'does', 'the', 'concert', 'begin?'], ['Take', 'better', 'than', 'no', 'more', 'food.'], ['I', 'think', 'she', 'is', 'thirty', 'years', 'old.'], ['We', "don't", 'have', 'dinner', 'with', 'us.'], ["That's", 'the', 'point.'], ['Stay', 'away', 'from', 'the', 'road.'], ["Here's", 'my', 'email', 'address.'], ['It', 'reminds', 'me', 'of', 'me.'], ["I'm", 'going', 'to', 'make', 'sure', 'that', "won't", 'happen', 'again.'], ['No', 'one', 'else', 'knows', 'it.'], ['What', 'you', "won't", 'do', 'that.'], ["I'm", 'no', 'longer', 'tired.'], ['He', 'took', 'out', 'of', 'his', "father's", 'after', 'the', 'father.'], ['I', 'know', 'that', 'I', 'told', 'you', 'to', 'be', 'told', 'so', 'that', 'I', "can't", 'tell', 'that', 'it', 'was', 'going', 'to', 'fall', 'so', 'late?'], ['May', 'I', 'count', 'on', 'you?'], ['My', 'father', 'will', 'soon', 'be', 'back', 'soon.'], ['Tom', 'says', 'he', "doesn't", 'have', 'a', 'choice.'], ['I', 'heard', 'him', 'the', 'stairs.'], ['Thanks', 'for', 'someone', 'to', 'protect', 'you.'], ['The', 'bus', 'leaves', 'ten', 'minutes.'], ['Please', 'give', 'me', 'another', 'one.'], ['You', 'were', 'dying,', 'but', 'the', 'doctor', 'saved', 'your', 'life.'], ["I'll", 'give', 'you', 'a', 'hint.'], ["That'll", 'be', 'enough.'], ['He', 'had', 'a', 'bad', 'game', 'yesterday.'], ['We', 'are', 'busy.'], ['This', 'knife', 'is', 'very', 'low.'], ['I', "couldn't", 'do', 'that', 'again.'], ['I', 'would', 'like', 'to', 'know', 'anything', 'like', 'you', 'like', 'that.'], ["You're", 'not', 'as', 'good', 'as', 'you', 'think', 'you', 'are.'], ['I', "don't", 'want', 'to', 'disappoint', 'you.'], ["Don't", 'you', 'think', "it's", 'a', 'little', 'weird?'], ['Just', 'never', 'give', 'me', 'a', 'little', 'way', 'there', 'just', 'just', 'just', 'just', 'just', 'in.'], ["I'm", 'not', 'afraid', 'of', 'dogs.'], ['We', "don't", 'want', 'to', 'be', 'late.'], ['Tom', 'and', 'I', 'are', 'in', 'the', 'same', 'way', 'now.'], ['Maybe', 'we', 'should', 'be', 'back', 'later.'], ['I', 'plan', 'to', 'call', 'you', 'at', 'this', 'time.'], ['Is', 'it', 'everything?'], ['Tom', 'is', 'a', 'crook.'], ['Something', 'went', 'away', 'with', 'my', 'watch.'], ['I', 'love', 'being', 'with', 'you.'], ['Further', 'people', 'are', 'not', 'needed.'], ['Tell', 'me', "you're", 'not', 'serious!'], ['When', 'do', 'you', 'mean', 'to', 'start?'], ['Is', 'anyone', 'looking?'], ['Have', 'you', 'gotten', 'used', 'to', 'the', 'movies', 'that', 'many', 'times', 'have', 'fun.'], ['He', 'knows', 'how', 'to', 'snow', 'the', 'woods.'], ['I', "don't", 'know', 'what', 'happened.'], ["I'm", 'paying.'], ['The', 'rain', 'all', 'day.'], ['I', 'arrived', 'here', 'at', '2:30', 'this', 'morning.'], ['I', 'have', 'a', 'sharp', 'ring.'], ['Who', 'are', 'you', 'supposed', 'to', 'be?'], ["Don't", 'touch', 'the', 'stove.'], ['I', "don't", 'know', 'how', 'to', 'protect', 'you.'], ['The', 'concert', 'was', 'awful.'], ['We', 'thought', 'it', 'was', 'hilarious.'], ["You'd", 'better', 'not', 'go', 'today.'], ['Do', 'you', 'think', 'that', 'Mary', 'is', 'too', 'sure', 'to', 'Mary?'], ["Let's", 'get', 'out', 'of', 'England.'], ['Tom', 'pressed', 'the', 'intercom', 'button.'], ['Take', 'a', 'sip', 'of', 'this.'], ['I', 'want', 'to', 'hear', 'what', 'Tom', 'has', 'given', 'up', 'the', 'enemy', 'buildings.'], ['I', "don't", 'know', 'why', 'Tom', "doesn't", 'like', 'Boston.'], ['This', 'is', 'a', 'real', 'gossip.'], ['I', "don't", 'love', 'you', 'anymore.'], ['I', 'knew', 'who', 'he', 'was.'], ['Is', 'anyone', 'looking?'], ['What', 'time', 'did', 'you', 'get', 'up', 'at', 'the', 'airport?'], ['Give', 'us', 'for', 'a', 'change.'], ['I', 'have', 'enough', 'money', 'to', 'buy', 'it.'], ['This', 'rope', 'is', 'terrible.'], ['Do', 'you', 'have', 'any', 'sisters', 'and', 'smiled.'], ['This', 'book', 'will', 'issue', 'you', 'a', 'clear', 'idea', 'of', 'the', 'American', 'way', 'of', 'life.'], ['Tom', 'is', 'planning', 'to', 'talk', 'to', 'Mary.'], ["I'm", 'not', 'at', 'home.'], ['Write', 'me', 'at', 'the', 'lecture.'], ['I', "don't", 'want', 'anybody', 'to', 'hurt.'], ['They', "didn't", 'keep', 'his', 'word.'], ['I', 'forward', 'to', 'think', 'of', 'my', 'mind', 'to', 'finish', 'the', 'work', 'a', 'better', 'way', 'I', 'finish', 'the', 'work', 'before', 'I', 'finish', 'the', 'one.'], ['Now', 'that', 'you', 'know', 'the', 'fact', 'that', 'you', 'know.'], ['Have', 'you', 'ever', 'arrested?'], ["You're", 'so', 'sweet.'], ['I', 'expect', 'your', 'father.'], ['This', 'is', 'the', 'fastest', 'of', 'the', 'world.'], ['He', 'was', 'one', 'of', 'a', 'smile', 'of', 'recognition.'], ['She', "doesn't", 'love', 'him', 'and', 'anyone', 'like', 'it.'], ["We're", 'not', 'used', 'to', 'have', 'any', 'yet.'], ['He', 'drew', 'the', 'room', 'and', 'put', 'your', 'small', 'hand.'], ['He', 'did', 'the', 'best', 'he', 'can', 'do.'], ['If', 'I', 'were', 'in', 'your', 'place,', 'I', 'would', 'lend', 'me', 'a', 'hand.'], ['No', 'one', 'believed', 'me.'], ["That's", 'not', 'quite', 'hurt', 'Tom,'], ['Tell', 'me', 'where', 'you', 'went.'], ['How', 'about', 'having', 'a', 'barbecue', 'next', 'Sunday?'], ["They're", 'safe.'], ['He', 'has', 'a', 'great', 'picture.'], ['I', 'know', 'some', 'people.'], ["I'd", 'like', 'to', 'help', 'you', 'speak', 'a', 'little', 'French.'], ['Some', 'students', 'go', 'to', 'school', 'by', 'other', 'school', 'by', 'bus.'], ['Try', 'to', 'open', 'the', 'door.'], ['Tom', "can't", 'remember', "Mary's", 'address.'], ['How', 'about', 'eating', 'out', 'this', 'evening', 'for', 'dinner?'], ["Don't", 'do', 'it.'], ['His', 'guard', 'is', 'impossible.'], ['My', 'father', "doesn't", 'drink', 'so', 'much', 'sake.'], ['If', 'you', 'have', 'a', 'tendency', 'to', 'say,', 'you', 'have', 'to.'], ['You', 'need', 'to', 'be', 'a', 'little', 'earlier.'], ['I', 'like', 'the', 'cops.'], ['He', "doesn't", 'understand', 'me.'], ['Will', 'you', 'be', 'going?'], ['Tom', 'looks', 'angry.'], ['If', 'I', 'had', 'a', 'moment', 'I', 'can', 'do', 'it,', 'but', 'I', "couldn't", 'do', 'it.'], ['I', 'may', 'be', 'wearing', 'if', 'it', 'woke', 'up', 'the', 'clock.'], ['There', 'were', 'no', 'side', 'of', 'cake.'], ['We', "can't", 'help', 'you', 'with', 'that.'], ['I', 'appreciate', 'you.'], ['I', 'go', 'to', 'the', 'library', 'at', 'least', 'once', 'a', 'week.'], ['She', 'had', 'a', 'lot', 'of', 'rain', 'at', 'the', 'hotel.'], ['Is', 'this', 'all', 'yours?'], ['May', 'I', 'suggest', 'another', 'option?'], ['I', 'brought', 'these', 'gifts', 'for', 'you.'], ['You', 'never', 'have', 'any', 'doubts,', 'do', 'you?'], ['He', 'tried', 'to', 'spend', 'some', 'time', 'with', 'his', 'daughter.'], ['Wait', 'for', 'me', 'to', 'get', 'a', 'while.'], ['My', 'father', 'used', 'to', 'be', 'at', 'the', 'concert.'], ['People', 'are', 'not', 'all', 'the', 'same.'], ['Tom', 'was', 'alone', 'at', 'the', 'hospital', 'at', 'that', 'time.'], ['I', 'want', 'to', 'talk', 'to', 'you', 'this', 'list.'], ['They', 'were', 'soldiers.'], ['This', 'is', 'very', 'cold,', 'but', 'I', "don't", 'want', 'to', 'open', 'the', 'color.'], ["I'll", 'take', 'this', 'out.'], ['They', 'made', 'him', 'go.'], ['I', "don't", 'play', 'tennis', 'as', 'well', 'as', 'he', 'tennis.'], ['Where', 'is', 'the', 'bridge?'], ['Would', 'you', 'like', 'to', 'be', 'famous?'], ['I', 'would', 'like', 'to', 'get', 'all', 'these', 'things.'], ["Let's", 'find', 'another', 'place.'], ['When', 'the', 'company', 'was', 'the', 'company', 'that', 'he', 'has', 'been', 'trying', 'to', 'pieces.'], ["I'm", 'not', 'stupid.'], ['She', 'demanded', 'to', 'see', 'the', 'manager.'], ['I', 'thought', "you'd", 'be', 'here.'], ["You're", 'such', 'a', 'jerk.'], ['Is', 'it', 'new?'], ['Go', 'to', 'bed.'], ['Can', 'you', 'read', 'this', 'medicine', 'for', 'the', 'shoes?'], ['Tom', 'pulled', 'out', 'of', 'the', 'sand.'], ['Do', 'you', 'want', 'a', 'drink?'], ['Can', 'I', 'give', 'a', 'pen.'], ['My', 'father', 'is', 'sometimes', 'abroad.'], ['Everyone', 'prayed.'], ["That's", 'what', 'I', 'mean.'], ['Her', 'daughter', 'was', 'very', 'good.'], ['She', 'was', 'born', 'last', 'year.'], ['Do', 'you', 'know', 'where', 'the', 'other', 'are?'], ['My', 'sister', 'takes', 'a', 'shower', 'every', 'morning.'], ['If', 'you', "don't", 'want', 'to', 'give', 'up', 'the', 'possibility', 'that', "you'll", 'follow', 'it.'], ['We', 'saw', 'a', 'walk', 'walking', 'walking', 'outside.'], ['I', 'blamed', 'him', 'for', 'an', 'hour', 'that', 'he', 'began', 'to', 'cut', 'an', 'hour', 'on', 'an', 'hour.'], ['I', 'enjoy', 'working', 'every', 'day.'], ['The', 'doctor', 'examined', 'the', 'day', 'in', 'the', 'day.'], ['The', "joke's", 'on', 'you.'], ['I', "can't", 'put', 'up', 'with', 'each', 'other.'], ["We're", 'busy', 'now.'], ['Please', 'realize', 'the', 'kitchen', 'wheel.'], ['We', 'hurried', 'along', 'the', 'river.'], ["You're", 'not', 'going', 'to', 'smoke,', 'do', 'that,', 'are', 'you?'], ['This', 'book', 'is', 'very', 'good.'], ['My', 'eyes', 'are', 'blue.'], ['What', 'color', 'is', 'it?'], ['The', 'pain', 'has', 'walked', 'out', 'last', 'night.'], ['I', 'could', 'tell', 'you', 'that', 'I', "don't", 'want', 'to', 'stay.'], ['I', 'have', 'to', 'finish', 'the', 'job.'], ['I', 'am', 'very', 'sleepy', 'or', 'for', 'the', 'purpose', 'of', 'my', 'teeth.'], ['You', 'were', 'today.'], ['Your', 'sister', 'is', 'on', 'your', 'sister', 'next', 'time.'], ['This', 'clock', 'is', 'on', 'time.'], ['You', 'said', 'you', 'were', 'able', 'to', 'help', 'Tom.'], ['Am', 'I', 'used', 'to', 'you', 'this?'], ['Today', 'is', 'almost', 'a', 'lot', 'of', 'children.'], ['A', 'fund', 'broke', 'up', 'with', 'the', 'small', 'room', 'after', 'China.'], ['This', 'pen', 'is', 'too', 'small', 'for', 'me', 'to', 'work.'], ["That's", 'not', 'working.'], ['I', 'really', "didn't", 'really', 'that.'], ['This', 'is', 'very', 'interesting.'], ['I', "don't", 'forget', 'your', 'smile.'], ['I', 'just', "didn't", 'want', 'to', 'take', 'anything.'], ['They', 'were', 'watching', 'the', 'result.'], ['I', 'am', 'a', 'walk.'], ['I', 'doubt', 'that', 'our', 'dreams', 'come', 'again', 'because', 'our', 'lives.'], ['Have', 'you', 'ever', 'kissed', 'another', 'girl?'], ['We', 'all', 'know', 'each', 'other.'], ['Is', 'it', 'rain', 'tomorrow', 'tomorrow?'], ['Why', 'did', 'you', 'buy', 'flowers?'], ['The', 'police', 'are', 'looking', 'for', 'the', 'police', 'talking', 'about', 'what', 'he', 'used', 'to', 'come.'], ["I'm", 'not', 'at', 'home', 'on', 'Sundays.'], ['Stop', 'grumbling.'], ['Whales', 'live', 'in', 'small', 'small', 'fish.'], ['I', 'talked', 'to', 'Tom', 'when', 'he', 'saw', 'the', 'meeting.'], ['The', 'truck', 'died', 'of', 'a', 'hand.'], ["I'm", 'glad', 'to', 'meet', 'you.'], ['She', 'is', 'proud', 'of', 'her', 'students.'], ['You', 'must', 'be', 'a', 'good', 'wife.'], ["I'm", 'going', 'to', 'thirty', 'years', 'since', 'October.'], ['"May', 'I', 'do', 'it', 'for', 'you?"', '"I', 'am', 'to', 'be', 'so', 'big?'], ['I', "don't", 'have', 'the', 'ball.'], ['This', 'is', 'a', 'song.'], ['Why', 'are', 'you', 'doing', 'this?'], ['They', 'made', 'fun', 'of', 'my', 'clothes.'], ['I', 'left', 'my', 'room', 'in', 'the', 'party', 'in', 'the', 'kitchen.'], ['Tom', 'always', 'gets', 'complaining.'], ['You', "don't", 'have', 'to', 'find', 'out', 'what', 'he', 'called', 'for', 'joy.'], ['Most', 'girls', 'they', 'are', 'often', 'together.'], ['I', 'study', 'French.'], ['I', "can't", 'tell', 'you', 'what', 'we', 'did', 'last', 'night.'], ['There', 'is', 'not', 'always', 'that', 'way.'], ["I'm", 'going', 'to', 'carry', 'these', 'shoes', 'on', 'our', 'computer.'], ['I', 'have', 'to', 'come', 'on', 'Monday.'], ['A', 'person', 'of', 'the', 'person', 'had', 'had', 'a', 'small', 'meeting.'], ['Have', 'you', 'gone', 'mad?'], ['I', 'wonder', 'where', 'Tom', 'and', 'Mary', 'went.'], ['Keep', 'your', 'hands', 'to', 'Tom.'], ['He', 'took', 'advantage', 'of', 'his', 'wallet.'], ['Tom,', 'do', 'it', 'sometimes.'], ["I'm", 'offended.'], ['Will', 'he', 'be', 'back?'], ["I've", 'learned', 'English', 'for', 'four', 'years.'], ['Tom', 'removed', 'the', 'roof', 'on', 'the', 'table.'], ['Things', 'have', 'changed.'], ["It's", 'going', 'to', 'be', 'slow.'], ['You', 'have', 'a', 'pretty', 'good', 'memory.'], ['Can', 'you', 'sing', 'us', 'a', 'song?'], ['He', 'was', 'standing', 'behind', 'me.'], ['I', 'like', 'your', 'hat.'], ["Tom's", 'room', 'is', 'unknown.'], ['I', 'wish', 'I', 'could', 'go', 'to', 'the', 'concert.'], ['My', 'brother-in-law', 'is', 'different', 'from', 'yours.'], ['I', "don't", 'have', 'any', 'evidence.'], ['Quit', 'acting', 'like', 'a', 'baby.'], ['Please', 'help', 'Tom.'], ['Tom', 'said', 'that', 'Mary', 'was', 'in', 'her', 'sleep.'], ["I'll", 'stop.'], ['Is', 'your', 'school', 'far', 'from', 'your', 'home?'], ['You', 'should', 'read', 'a', 'book', 'like', 'the', 'book', 'he', 'thinks', 'a', 'book.'], ['I', 'have', 'a', 'problem', 'with', 'a', 'problem', 'with', 'this.'], ['You', 'hurt', 'tired.'], ['Is', 'his', 'real', 'deep?'], ['What', 'do', 'you', 'really', 'want?'], ['Take', 'it', 'to', 'that.'], ['Further', 'louder,', 'please.'], ['Tom,', 'can', 'you', 'shut', 'up?'], ['What', 'time', 'did', 'you', 'go', 'to', 'bed', 'yesterday?'], ['In', 'your', 'time,', 'I', 'think', "it's", 'your', 'work.'], ['How', 'many', 'days', 'do', 'you', 'spend', 'in', 'total?'], ['Mary', 'wanted', 'that', 'I', 'want', 'to', 'walk', 'with', 'you.', "I'm", 'going', 'on.'], ['I', 'suggest', 'that', 'you', 'stop', 'very', 'carefully.'], ['How', 'do', 'you', 'feel', 'if', 'you', 'have', 'your', 'girlfriend?'], ['Do', 'you', 'get', 'it?'], ["You're", 'very', 'good.'], ['I', "can't", 'believe', 'that', 'really', 'believe', 'what', 'really', 'happened.'], ['He', 'is', 'moving', 'next', 'month.'], ['My', 'grandfather', 'gets', 'himself', 'when', 'he', 'is', 'on', 'his', 'own.'], ["I'm", 'not', 'going', 'to', 'disturb', 'you.'], ['When', 'I', 'was', 'often', 'when', 'I', 'often', 'borrow', 'German.'], ['The', 'noise', 'kept', 'me', 'awake', 'all', 'night.'], ['Are', 'you', 'sure', 'that', 'everyone', 'else', 'is', 'already?'], ["I'm", 'not', 'a', 'little', 'smarter', 'than', 'you.'], ["It's", 'going', 'to', 'be', 'going', 'to', 'be', 'it.'], ['You', 'did', 'a', 'pretty', 'good', 'job', 'so', 'good.'], ['He', 'is', 'three', 'children.'], ["Don't", 'be', 'so', 'careless!'], ['I', 'think', "you're", 'mistaken.'], ['Life', 'is', 'full', 'of', 'cars.'], ['Tom', "didn't", 'eat', 'the', 'apple', 'you', 'gave', 'him.'], ['You', 'were', 'right.'], ["I'm", 'too', 'busy', 'to', 'worry', 'about', 'this', 'problem.'], ['As', 'soon', 'as', 'he', 'is', 'listening', 'to', 'him,', 'he', 'will', 'succeed.'], ['I', 'just', 'had', 'a', 'letter', 'already.'], ["I'm", 'going', 'to', 'take', 'a', 'curse', 'with', 'you.'], ['He', 'is', 'likely', 'to', 'be', 'very', 'late.'], ['Can', 'you', 'give', 'me', 'your', 'paper', 'number.'], ['Tom', 'respects', 'me.'], ['We', 'can', 'speak', 'French', 'in', 'a', 'native', 'speaker', 'can', 'speak', 'German.'], ['He', 'said', 'he', 'was', 'looking', 'for', 'the', 'pleasure', 'of', 'his', 'business.'], ['I', 'know', 'what', 'you', 'mean.'], ['I', 'outrank', 'you.'], ["You're", 'not', 'right.'], ['I', 'understand', 'perfectly', 'all', 'perfectly.'], ['Tom', 'and', 'Mary', 'are', 'there', 'in', 'three', 'months.'], ['I', "don't", 'even', 'want', 'to', 'know', 'who', 'you', 'are.'], ["He's", 'very', 'likely', 'to', 'come.'], ['What', 'time', 'did', 'you', 'get', 'back?'], ['Do', 'you', 'want', 'me', 'to', 'get', 'it?'], ["What's", 'the', 'name', 'of', 'this', 'river?'], ['My', 'father', 'quit', 'drinking.'], ["I'm", 'a', 'normal', 'worker.'], ['It', 'sounded', 'like', 'walking.'], ['People', 'say', 'anything', 'to', 'say.'], ['We', 'know', 'what', 'to', 'do', 'next.'], ['This', 'is', 'a', 'great', 'deal.'], ['We', 'have', 'a', 'lot', 'of', 'other', 'things', 'to', 'swim.'], ['I', 'felt', 'cheated.'], ['Could', 'I', 'have', 'a', 'shower?'], ['I', 'wish', 'you', 'would', 'love', 'your', 'sister', 'at', 'least', 'a', 'small', 'teacher.'], ['I', 'was', 'walking', 'off', 'in', 'a', 'book.'], ['I', 'never', 'told', 'you', 'to', 'quit.'], ['No', 'nothing', 'nothing.'], ['She', 'got', 'hiding', 'in', 'the', 'lake.'], ["What's", 'my', 'room', 'number?'], ['No', 'one', 'deserves', 'it.'], ["Don't", 'push', 'this', 'word.'], ['Stick', 'out', 'of', 'your', 'tongue.'], ['He', "wasn't", 'paid', 'for', 'that.'], ['I', 'thought', "you'd", 'been', 'killed.'], ['In', 'Japan,', 'you', 'think', 'of', 'the', 'convenience', 'It', 'is', 'better', 'than', 'the', 'choir.'], ['I', 'was', 'impressed', 'with', "Tom's", 'work.'], ["I'm", 'so', 'glad', 'I', 'mean.'], ["I'm", 'going', 'to', 'have', 'a', 'leg.'], ['The', 'air', 'has', 'been', 'painted', 'so', 'that', 'the', 'hostages', 'is', 'out.'], ['I', 'was', 'surprised', 'by', 'his', 'conduct.'], ['I', 'almost', 'almost', 'almost', 'win.'], ["There's", 'all', 'a', 'thing.'], ['Is', 'there', 'something', 'wrong', 'with', 'your', 'car?'], ['"May', 'I', 'believe', 'that', "I'm", 'wrong,'], ['The', 'new', 'lady', 'needs', 'a', 'new', 'house.'], ['Stay', 'away', 'from', 'that.'], ['Tom', 'has', 'a', 'broken', 'magazine.'], ['He', 'is', 'saving', 'money', 'at', 'the', 'time', 'he', 'wants', 'to', 'go', 'to', 'college.'], ['Tom', "can't", 'do', 'the', 'job.'], ['I', 'can', 'drop', 'it', 'in', 'front', 'of', 'the', 'car.'], ['The', 'day', 'will', 'come', 'to', 'work', 'if', 'it', 'will', 'come', 'true.'], ['Does', 'that', 'mean', 'to', 'you?'], ['What', 'kind', 'of', 'car', 'are', 'you', 'driving?'], ['How', 'often', 'do', 'you', 'play', 'Saturday', 'now?'], ['We', 'made', 'the', 'wedding.'], ["I'm", 'reading', 'the', 'bus.'], ['How', 'much', 'is', 'it', 'now?'], ["I'm", 'not', 'going', 'to', 'come.'], ['I', 'think', "it's", 'time', 'for', 'a', 'break.'], ['Stop', 'staring', 'at', 'me.'], ["Don't", 'tell', 'my', 'girlfriend.'], ['Did', 'you', 'enjoy', 'the', 'watch', 'at', 'a', 'room?'], ['I', 'never', 'see', 'what', "I'm", 'just', 'looking', 'for', 'your', 'son.'], ['I', 'want', 'a', 'rock', 'check.'], ['I', 'think', "you'd", 'better', 'go', 'there.'], ['You', 'won.'], ['Will', 'we', 'get', 'along', 'with', 'us?'], ["I'll", 'go', 'to', 'survive.'], ["She'd", 'as', 'soon', 'as', 'possible.'], ['I', 'think', 'you', 'told', 'Tom', 'the', 'truth.'], ['That', "didn't", 'help.'], ['Will', 'he', 'go', 'to', 'school?'], ["You're", 'disappointed,', "aren't", 'you?'], ['I', 'want', 'to', 'get', 'out', 'of', 'the', 'floor', 'of', 'my', 'shoes.'], ['Is', 'there', 'a', 'nice', 'life', 'in', 'your', 'life?'], ['What', 'time', 'is', 'your', 'curfew?'], ['I', 'really', "don't", 'get', 'you.'], ['I', 'spent', 'the', 'day', 'with', 'Tom.'], ['I', 'thought', 'you', 'might', 'want', 'to', 'find', 'a', 'you.'], ['You', "don't", 'believe', 'what', 'I', 'am', 'out', 'of', 'date.'], ['I', "didn't", 'understand', 'any', 'of', 'it.'], ['I', "don't", 'think', 'I', 'can', 'help', 'you.'], ['You', "don't", 'want', 'to', 'dance,', 'do', 'you?'], ["What's", 'your', 'favorite', 'number?'], ['Sit', 'here', 'until', 'I', 'am', 'here.'], ['I', 'must', 'take', 'your', 'temperature.'], ['My', 'mother', 'works', 'in', 'the', 'factory.'], ["There's", 'a', 'message', 'for', 'you.'], ["What's", 'the', 'time?'], ['I', 'bought', 'this', 'camera', 'yesterday.'], ["You're", 'German,', "aren't", 'you?'], ['I', 'had', 'an', 'room,', 'because', 'he', "hadn't", 'been', 'fighting.'], ['Do', 'you', 'have', 'something?'], ['There', 'is', 'hard', 'of', 'stuff', 'trying', 'to', 'spell', 'up', 'with', 'your', 'dirty', 'health.'], ['What', 'are', 'you', 'drinking?'], ['You', "can't", 'judge', 'a', 'book', 'on', 'the', 'shelf.'], ['Did', 'you', 'bring', 'me', 'the', 'letters', 'to', 'you?'], ['She', 'greeted', 'us', 'a', 'smile.'], ['We', 'have', 'other', 'other', 'things', 'to', 'save', 'now.'], ['I', 'will', 'make', 'up', 'my', 'mind', 'a', 'cold.'], ['They', 'are', 'going', 'to', 'have', 'a', 'lot', 'of', 'class', 'every', 'day.'], ['Take', 'it', 'on.'], ['We', 'met', 'at', 'a', 'hotel', 'yet.'], ['They', 'work', 'too', 'much.'], ['It', 'certainly', 'goes', 'to', 'rain', 'tonight.'], ["It's", 'too', 'dark', 'to', 'play', 'outside.'], ['Am', 'I', 'going?'], ["You're", 'not', 'in', 'danger.'], ['He', 'was', 'sick,', 'but', 'he', 'was', 'sick,', 'yesterday.'], ['I', 'think', "it's", 'time', 'for', 'me', 'to', 'get', 'that', 'time', 'of', 'money.'], ['Tom', "didn't", 'think', 'he', 'wanted', 'to', 'talk', 'about', 'someone.'], ['They', 'live', 'on', 'the', 'floor', 'below.'], ['I', 'meet', 'her', 'before', 'going', 'to', 'school.'], ['Why', 'do', 'you', 'want', 'to', 'lose', 'weight?'], ['Some', 'town', 'was', 'larger', 'than', 'the', 'city.'], ["I'm", 'not', 'young.'], ['You', 'made', 'the', 'same', 'mistake.'], ['She', 'says', 'he', "doesn't", 'want', 'me', 'to', 'go', 'to', 'the', 'party,', 'but', "it's", 'not', 'true.'], ["We're", 'out', 'of', 'ammunition.'], ['I', "can't", 'stand', 'this', 'small', 'anymore.'], ['No', 'one', 'knew', 'what', 'Tom', 'learned', 'to', 'know', 'Mary.'], ['I', 'can', 'teach', 'you', 'that', "you're", 'wrong.'], ['What', 'are', 'you', 'working', 'for?'], ["I'm", 'really', 'sorry', 'I', 'disturbed', 'you.'], ['I', 'really', "don't", 'need', 'help.'], ['I', 'just', 'wanted', 'to', 'see', 'if', 'you', 'try.'], ['This', 'is', 'the', 'rules.'], ['Can', 'I', 'have', 'a', 'bus', 'from', 'the', 'plan?'], ["We'll", 'be', 'prepared.'], ['Beethoven', 'was', 'a', 'great', 'writer.'], ['I', 'hope', 'you', 'have', 'everything', 'you', 'need.'], ["I'd", 'like', 'to', 'ask', 'you', 'a', 'few', 'questions.'], ['Are', 'there', 'a', 'garden', 'in', 'the', 'garden?'], ['We', 'have', 'no', 'complaints.'], ['How', 'old', 'is', 'the', 'oldest', 'woman', 'in', 'your', 'mother?'], ['I', 'would', 'rather', 'reserve', 'a', 'room', 'for', 'four', 'night.'], ['This', 'is', 'a', 'loser.'], ['Are', 'you', 'ready', 'for', "today's", 'game?'], ['If', "I'm", 'not', 'too', 'busy,', "I'll", 'help', 'you', 'now.'], ['I', 'want', 'a', 'apple.'], ['I', "don't", 'think', "it's", 'like', 'a', 'native', 'speaker.'], ['The', 'red', 'leaves', 'leaves', 'the', 'water', 'red.'], ['The', 'office', "isn't", 'at', 'least', 'even', 'yet.'], ['She', 'looks', 'confused.'], ['How', 'do', 'you', 'remember?'], ['How', 'are', 'you', 'doing?'], ['Why', "don't", 'you', 'stay', 'here', 'with', 'us?'], ['I', 'guess', 'you', 'were', 'going', 'to', 'tell', 'me', 'that', "I'm", 'really', 'good', 'at', 'that', 'situation.'], ['How', 'much', 'do', 'I', 'have', 'you?'], ['She', 'asked', 'us', 'to', 'put', 'up', 'with', 'our', 'own.'], ["Don't", 'be', 'naive.'], ['I', 'baked', 'cookies.'], ['I', 'feel', 'kind', 'of', 'myself.'], ['She', 'teaches', 'us', 'French.'], ['I', 'want', 'this', 'children', 'to', 'come', 'out', 'of', 'the', 'opportunity.'], ['Could', 'I', 'eat', 'something?'], ["That's", 'why', 'he', 'quit', 'early.'], ['The', 'storm', 'storm', 'was', 'responsible', 'for', 'the', 'whole', 'policy.'], ['Both', 'of', 'them', 'started', 'laughing.'], ['Would', 'you', 'like', 'some', 'cookies?'], ['I', 'felt', 'a', 'little', 'stiff.'], ['You', 'know', 'where', 'to', 'find', 'me.'], ['He', 'dedicated', 'his', 'life', 'to', 'his', 'policy.'], ['This', 'is', 'my', 'favorite', 'pair', 'of', 'shoes.'], ['What', 'I', 'feel', 'that', 'I', "don't."], ["Can't", 'you', 'hear', 'the', 'door?'], ['When', 'will', 'his', 'new', 'novel', 'be', 'published?'], ['We', 'should', 'do', 'something', 'about', 'that.'], ['You', 'should', 'see', 'the', 'doctor.'], ["What's", 'all', 'here?'], ['This', 'is', 'a', 'car', 'driver.'], ['The', 'sentence', 'is', 'no', 'longer', 'for', 'sure.'], ['Why', 'is', 'the', 'purpose', 'of', 'the', 'purpose', 'of', 'the', 'United', 'States.'], ['I', "don't", 'want', 'to', 'torment', 'you', 'anymore.'], ['He', 'made', 'him', 'the', 'room.'], ["Don't", 'push', 'the', 'grass.'], ['Everyone', 'knew', 'Tom', 'was', 'lying.'], ['I', 'guess', 'I', 'may', 'change', 'the', 'money,', 'I', 'will', 'buy', 'it.'], ['Do', 'you', 'live', 'in', 'this', 'building?'], ['I', 'am', 'pretty', 'interested', 'in', 'you.'], ['The', 'scene', 'was', 'forced', 'to', 'have', 'been', 'told', 'to', 'have', 'been', 'rude', 'to', 'them.'], ['How', 'is', 'the', 'wrong', 'worth'], ['Mom,', 'then,', 'what', 'will', 'it', 'have', 'left?'], ['Your', 'plan', 'needs', 'to', 'help', 'everyone.'], ['Take', 'it', 'on.'], ['It', 'looks', 'like', 'Tom', 'is', 'asleep.'], ['Does', 'it', 'make', 'me', 'look', 'fat?'], ['She', "doesn't", 'have', 'many', 'friends.'], ["Don't", 'you', 'have', 'any', 'old', 'movies?'], ["That's", 'the', 'one', 'who', 'is', 'mine.'], ['Mary', 'put', 'off', 'and', 'put', 'off', 'and', 'put', 'off', 'with', 'her.'], ['Take', 'this', 'decision', 'to', 'report', 'tomorrow.'], ['Are', 'you', 'studying', 'English?'], ['Give', 'us', 'a', 'second.'], ['Our', 'school', 'is', 'on', 'the', 'station.'], ['She', 'gave', 'me', 'a', 'gun.'], ['The', 'magician', 'made', 'the', 'power', 'of', 'bees.'], ['I', "can't", 'tell', 'you', 'how', 'many', 'times', "I've", 'been.'], ['How', 'many', 'of', 'your', 'shoes', 'do', 'you', 'have?'], ["We're", 'not', 'sure.'], ['He', 'gave', 'Tom', 'a', 'doctor.'], ['Tom,', 'do', 'you', 'still', 'love', 'him?'], ['Was', 'of', 'the', 'book', 'he', 'told', 'us', 'to', 'buy', 'us?'], ['Pass', 'in', 'the', 'man.'], ['They', 'almost', 'almost', 'every', 'day.'], ['What', 'are', 'your', 'intentions?'], ['Please', 'make', 'yourself', 'at', 'home.'], ["Don't", 'take', 'the', 'other', 'one', 'about', 'the', 'weather.'], ['Who', 'would', 'you', 'like', 'to', 'speak', 'with?'], ["There's", 'no', 'way', 'you', 'here.'], ["It's", 'time', 'for', 'you', 'to', 'go', 'to', 'bed.'], ['His', 'explanation', "isn't", 'happening.'], ['Tom', 'paid', 'the', 'cops.'], ['Can', 'I', 'help', 'you', 'some', 'paper?'], ['Put', 'the', 'cloth', 'and', 'are!'], ['I', 'am', 'wearing', 'a', 'quarter', 'every', 'day.'], ['In', 'the', 'room', 'as', 'they', 'are?'], ['Have', 'I', 'have', 'a', 'ride?'], ['He', 'is', 'a', 'soccer', 'player.'], ['Not', 'everybody', 'can', 'be', 'a', 'poet.'], ['We', 'spent', 'our', 'company.'], ['Do', 'we', 'have', 'no', 'again?'], ['Hardly', 'anyone', 'thinks', 'that', 'we', 'are', 'sisters.'], ['I', 'wish', 'we', 'could', 'come', 'with', 'us', 'today.'], ['Look', 'carefully.'], ['We', 'asked', 'the', 'chair', 'but', 'he', "didn't", 'see', 'it.'], ["I'm", 'sure', 'I', 'can', 'find', 'you', 'to', 'do', 'that', 'to', 'do.'], ["It's", 'very', 'surprising.'], ["I'm", 'not', 'used', 'to', 'the', 'point.'], ['If', 'I', 'were', 'you,', 'I', 'would', 'follow', 'his', 'advice.'], ['What', 'did', 'they', 'hit', 'you?'], ['We', 'still', 'have', 'a', 'place', 'to', 'go.'], ['What', 'else', 'do', 'you', 'want', 'to', 'do?'], ["I'm", 'in', 'a', 'good', 'mood', 'today.'], ["You're", 'the', 'one', 'of', 'my', 'trouble,', 'me.'], ['I', "don't", 'care', 'who', 'you', 'want', 'to', 'talk', 'with', 'me.'], ['I', 'had', 'a', 'dream', 'last', 'night.'], ['Why', 'did', 'he', 'leave', 'home', 'early?'], ['Tom', "won't", 'let', 'you', 'down.'], ["I'm", 'doing', 'the', 'job.'], ['Take', 'it', 'to', 'the', 'car.'], ['I', "can't", 'believe', "you're", 'coming.'], ['I', 'used', 'to', 'do', 'all', 'the', 'things', 'yesterday.'], ['How', 'much', 'are', 'the', 'oranges?'], ['If', 'it', 'will', 'go', 'back', 'to', 'my', 'mind', 'to', 'finish', 'this', 'on.'], ['I', 'work', 'on', 'Monday.'], ['He', "isn't", 'ashamed', 'of', 'being', 'poor.'], ['Have', 'you', 'got', 'it?'], ['You', 'promised', 'me', 'that', 'you', 'might', 'help', 'Tom.'], ['I', "don't", 'want', 'to', 'get', 'married', 'when', "I'm", 'used', 'to', 'like', 'you.'], ['The', 'days', 'are', 'used', 'to', 'like', 'the', 'clock', 'as', 'a', 'storm.'], ['He', 'had', 'already', 'left.'], ['He', 'made', 'him', 'a', 'taxi', 'to', 'fix', 'the', 'car.'], ['You', 'always', 'were', 'a', 'good', 'cook.'], ['I', 'used', 'to', 'go', 'to', 'the', 'beach', 'when', 'I', 'was', 'a', 'child.'], ['Can', 'you', 'give', 'me', 'a', 'job', 'for', 'me?'], ['My', 'neighbor', 'was', 'successful.'], ["I'm", 'proud', 'of', 'you', 'all.'], ['I', 'think', 'we', 'have', 'to', 'warn', 'us.'], ["You're", 'not', 'a', 'hurry,', 'are', 'you?'], ["You're", 'too', 'loud.'], ['Tom', 'wanted', 'to', 'do', 'so.'], ['I', 'advise', 'you', 'to', 'change', 'clothes.'], ['You', "couldn't", 'go', 'without', 'me.'], ["I'm", 'not', 'as', 'rich', 'as', 'I', 'am.'], ['This', 'is', 'yours,', "isn't", 'it?'], ['I', 'miss', 'her.'], ['All', 'I', 'mean', 'is', 'you.'], ["That's", 'really', 'great!'], ['Forget', 'this.', "It's", 'too', 'risky.'], ['I', 'know', 'what', 'Tom', 'and', 'Mary', 'does.'], ['She', 'promised', 'not', 'to', 'sign', 'the', 'matter', 'what', 'she', 'used', 'to.'], ['Have', 'you', 'left', 'the', 'least', 'schedule?'], ["I'm", 'sick', 'of', 'being', 'happy', 'with', 'you.'], ["You're", 'not', 'alone.'], ['Tom', 'denied', 'having', 'lunch.'], ['Yesterday', 'had', 'a', 'shower', 'when', 'we', 'cut', 'out.'], ['That', "doesn't", 'have', 'a', 'day.'], ['I', "don't", 'know', 'the', 'reason', 'for', 'the', 'occasion.'], ["I'll", 'find', 'you', 'a', 'towel.'], ['I', 'hope', 'you', 'enjoyed', 'with', 'us.'], ['That', 'song', 'reminds', 'me', 'time', 'in', 'high', 'time', 'yesterday.'], ['I', 'know', "you've", 'got', 'a', 'guide.'], ['I', 'caught', 'a', 'rash', 'on', 'my', 'foot.'], ['You', "can't", 'do', 'that.'], ["I'll", 'give', 'you', 'a', 'cup', 'of', 'tea.'], ['By', 'the', 'way,', 'what', 'your', 'name', 'is', 'this?'], ['I', 'think', "you're", 'wrong.'], ['Is', 'your', 'father', 'is', 'it?'], ['You', 'have', 'to', 'read', 'you?'], ["I'm", 'sorry', 'for', 'a', 'little', 'busy.'], ['Lots', 'of', 'people', 'are', 'unreasonable.'], ["They're", 'all', 'right.'], ['I', "don't", 'know', 'a', 'lot', 'of', 'land.'], ['It', 'was', 'a', 'pleasure', 'meeting', 'you.'], ['I', 'have', 'nothing', 'to', 'do', 'with', 'the', 'crime.'], ['Whose', 'is', 'this', 'room?'], ['Who', 'was', 'that', 'woman?'], ['Somebody', 'stole', 'my', 'bicycle.'], ['What', 'does', 'he', 'look', 'like?'], ['Do', 'you', 'really', 'think', 'Tom', 'is', 'handsome?'], ['His', 'story', 'has', 'come', 'so', 'help.'], ['The', 'US', 'filled', 'a', 'pair', 'of', 'coffee', 'in', 'the', 'pocket.'], ['Do', 'you', 'think', 'that', 'year', 'will', 'be', 'completed', 'in', 'the', 'world', 'will', 'be', 'haunted.'], ["You're", 'a', 'guy', 'guy.'], ['She', "can't", 'swim.'], ['My', 'father', 'is', 'going', 'to', 'be', 'at', 'least', 'fail.'], ['I', 'had', 'trouble', 'to', 'leave.'], ['The', 'people', 'laughed', 'at', 'him.'], ['Which', 'one', 'of', 'you', 'were', 'in', 'the', 'bus?'], ["It's", 'time', 'for', 'time', 'for', 'time.'], ['You', 'can', 'sit', 'down', 'now.'], ['I', 'went', 'to', 'your', 'school.'], ["That's", 'alright.'], ["Let's", 'take', 'a', 'gun.'], ['You', "don't", 'have', 'to', 'yell.'], ['Why', 'did', 'you', 'go?'], ['These', 'facts', 'will', 'protect', 'me.'], ['You', 'can', 'make', 'it.'], ['It', 'was', 'a', 'cold', 'debate.'], ['How', 'much', 'is', 'the', 'rent', 'per', 'month?'], ['Tom', "won't", 'come.'], ['Please', 'stay', 'in', 'touch.'], ['I', 'have', 'a', 'job', 'for', 'you.'], ['English', 'is', 'a', 'lazy', 'teacher.'], ['She', 'advised', 'him', 'to', 'lose', 'weight.'], ['He', 'was', 'talking.'], ['What', 'he', 'will', 'you', 'leave?'], ['We', 'got', 'married.'], ['Leave', 'me', 'all', 'the', 'time', 'to', 'help', 'me', 'now.'], ['You', "can't", 'do', 'it', 'right', 'now.'], ['You', "won't", 'need', 'help.'], ['This', 'birthday', 'is', 'the', 'perfect', 'architect', 'to', 'be', 'an', 'umbrella', 'on', 'this', 'house.'], ['I', 'refuse', 'to', 'be', 'treated', 'like', 'that.'], ['I', 'believe', "we're", 'waiting.'], ["I'd", 'like', 'something', 'to', 'discuss', 'with', 'you.'], ['Try', 'to', 'resist.'], ["That's", 'a', 'disaster.'], ['Did', 'you', 'take', 'a', 'picture', 'of', 'your', 'umbrella', 'in', 'your', 'album?'], ['He', 'likes', 'adventure.'], ['He', 'will', 'be', 'a', 'good', 'job.'], ['Quit', 'acting', 'like', 'a', 'baby.'], ['I', 'study', 'English', 'every', 'day.'], ['How', 'long', 'were', 'you', 'in', 'Japan?'], ['I', "don't", 'think', 'people', 'else.'], ['You', 'can', 'come', 'here', 'if', 'you', 'like.'], ["I'm", 'wet.'], ['You', "don't", 'need', 'to', 'come', 'so', 'early.'], ['Could', 'someone', 'open', 'the', 'door,', 'please?'], ['It', 'happened', 'here.'], ['What', 'do', 'you', 'think', 'of', 'these', 'shoes?'], ["Aren't", 'you', 'too', 'young', 'to', 'smoke?'], ['Please', 'smile.'], ['I', 'want', 'to', 'buy', 'a', 'new', 'pair', 'of', 'shoes.'], ['You', "don't", 'seem', 'very', 'sure.'], ["You're", 'all', 'happy.'], ['They', "don't", 'know', 'what', 'you', 'needed.'], ["That's", 'not', 'at', 'all', 'funny.'], ['Nobody', 'gave', 'me', 'out.'], ['If', 'it', 'is', 'wearing', 'his', 'arm', 'from', 'the', 'door.'], ['A', 'number', 'of', 'lilies', 'has', 'seven', 'dollars.'], ['I', 'need', 'a', 'bigger', 'store.'], ["I'd", 'like', 'to', 'stay', 'here', 'with', 'Tom.'], ['We', 'had', 'a', 'hard', 'time', 'on', 'this', 'room.'], ['We', 'will', 'give', 'you', 'a', 'change', 'of', 'your', 'importance.'], ['Open', 'your', 'mouth.'], ['Everything', 'was', 'too', 'fast.'], ['All', 'the', 'boxes', 'are', 'dirty.'], ['She', 'trusts', 'me.'], ['I', 'met', 'him', 'because', "I've", 'seen', 'the', 'last', 'movie.'], ['I', 'was', 'surprised', 'by', 'what', 'I', 'learned.'], ['I', 'hope', "you're", 'being', 'a', 'lot', 'of', 'beautiful.'], ["Don't", 'read', 'flowers.'], ["I'm", 'right', 'behind', 'you.'], ["You're", 'resourceful.'], ['On', 'my', 'weight', 'if', 'I', 'made', 'a', 'test', 'myself.'], ['Do', 'you', 'have', 'any', 'idea', 'what', 'Tom', 'was', 'in', 'Boston?'], ['Why', 'do', 'you', 'help', 'these', 'questions?'], ['I', 'think', 'you', 'should', 'do', 'it.'], ['This', 'looks', 'really', 'nice.'], ['I', 'used', 'to', 'write', 'my', 'diary.'], ['You', "won't", 'listen', 'to', 'me.'], ["That's", 'something', 'my', 'mother', 'made.'], ['"Have', 'you', 'think', 'it', 'was', 'an', 'hour', 'when', 'she', 'bought', 'a', 'week', 'made.'], ['Let', 'me', 'give', 'you', 'my', 'phone', 'number.'], ['What', 'time', 'is', 'dinner', 'served?'], ['Tom', 'is', 'out', 'of', 'danger.'], ['Is', 'this', 'good', 'at', 'English?'], ['Tom', 'is', 'a', 'very', 'good', 'farmer.'], ['Why', 'do', 'you', 'have', 'the', 'way?'], ['No', 'matter', 'what', 'she', 'tried,', 'he', "won't", 'fall', 'at', 'that', 'disease.'], ['I', 'wonder', 'my', 'parents', 'made', 'me', 'laugh', 'out', 'of', 'my', 'own', 'way', 'out', 'of', 'them.'], ["I'm", 'very', 'fat.'], ['I', "can't", 'do', 'this', 'by', 'myself.'], ['He', 'solved', 'the', 'problem', 'with', 'the', 'problem', 'with', 'ease.'], ['I', 'am', 'responsible', 'for', 'the', 'wedding.'], ['Tom', 'likes', 'the', 'one.'], ["We're", 'doing', 'everything', 'we', 'can', 'do', 'with', 'your', 'own', 'destiny.'], ['She', 'believes', 'that', 'he', 'is', 'still', 'alive.'], ['Are', 'you', 'seriously', 'thinking', 'about', 'buying', 'this', 'old', 'car?'], ['Does', 'the', 'police', 'have', 'taken', 'a', 'police', 'police?'], ['Tom', 'calls', 'the', 'kids', 'every', 'other', 'day.'], ["I'm", 'so', 'lonely.'], ["I'm", 'illiterate.'], ['This', 'guy', 'tastes', 'weird.'], ['Show', 'me', 'the', 'way', 'to', 'the', 'bus', 'stop.'], ['Mom', 'was', 'killed.'], ['I', 'have', 'a', 'very', 'good', 'girlfriend.'], ['Tell', 'me', "you're", 'not', 'to', 'know.'], ['He', 'went', 'to', 'school', 'the', 'school', 'yesterday.'], ["It's", 'very', 'dark', 'in', 'there.'], ['She', 'got', 'something', 'behind', 'her', 'back.'], ['He', 'needs', 'to', 'get', 'lost.'], ["I'm", 'not', 'ready', 'yet.'], ['Be', 'merciful.'], ["It's", 'warm', 'hot', 'here.'], ['It', 'was', 'never', 'done', 'before.'], ['You', 'must', 'do', 'it', 'quickly.'], ['How', 'long', 'did', 'you', 'stay', 'in', 'Japan?'], ['I', 'used', 'to', 'play', 'tennis', 'in', 'high', 'school.'], ['No', 'one', 'between', 'the', 'difference', 'between', 'the', 'difference', 'and', 'listen.'], ["Don't", 'come', 'true.'], ['Tom', "doesn't", 'like', 'potato', 'people.'], ['I', 'hope', 'that', 'you', 'and', 'John', 'are', 'cute.'], ['I', "don't", 'want', 'to', 'hear', 'people', 'talking', 'about', 'your', 'problems.'], ['Is', 'there', 'anyone', 'here', 'here?'], ['She', 'reminds', 'me', 'of', 'someone.'], ['This', 'is', 'not', 'in', 'the', 'rain.'], ['Take', 'a', 'look', 'at', 'that!'], ['You', 'were', 'drunk,', "weren't", 'you?'], ['He', 'had', 'the', 'courage', 'to', 'write', 'to', 'his', 'taxes.'], ['I', "didn't", 'want', 'to', 'help', 'you.'], ["I'm", 'sorry,', 'but', 'I', 'already', 'have', 'a', 'girlfriend.'], ["Don't", 'you', 'think', "I'm", 'busy?'], ['Tom', "isn't", 'my', "friend's", 'friend.'], ['You', 'may', 'have', 'read', 'a', 'novel', 'as', 'large', 'as', 'it', 'novel'], ['Will', 'the', 'TV', 'shop', 'watch', 'TV', 'at', 'TV?'], ['I', 'wonder', 'why', 'Tom', 'did', 'that.'], ['Did', 'Tom', 'visit', 'Boston', 'yesterday?'], ['Tom', 'said', 'he', 'liked', 'it.'], ['I', 'tie', 'when', 'I', 'was', 'young.'], ['A', 'lot', 'of', 'people', 'came', 'here', 'in', 'here.'], ['We', 'depend', 'on', 'each', 'other.'], ['Could', 'I', 'get', 'one', 'more', 'beer,', 'please?'], ['We', 'have', 'two', 'daughters,', 'and', 'two', 'hydrogen', 'and', 'two', 'coffees.'], ['Who', 'are', 'you', 'talking', 'about?'], ['They', 'stayed', 'in', 'bed', 'in', 'rain.'], ["I'm", 'only', 'going', 'to', 'say', 'this', 'once,', 'so', 'often', 'stay.'], ["I'm", 'not', 'at', 'all', 'tired.'], ['I', "don't", 'believe', 'anything.'], ['Birds', 'have', 'to', 'get', 'paid', 'in', 'the', 'fridge', 'of', 'the', 'jam.'], ['She', 'advised', 'him', 'to', 'give', 'the', 'police', 'told', 'him', 'to', 'quit', 'the', 'way', 'to', 'buy', 'it.'], ["I've", 'never', 'learned', 'anything', 'like', 'that.'], ['I', 'expect', 'him', 'to', 'come', 'with', 'us.'], ['That', 'was', 'really', 'unfair.'], ['I', 'have', 'no', 'insurance.'], ["Don't", 'worry', 'about', 'it!'], ['I', 'am', 'a', 'walk.'], ['No', 'one', 'wants', 'to', 'come.'], ['A', 'high', 'school', 'bomb', 'was', 'on', 'the', 'walk', 'on', 'their', 'trip.'], ["I'm", 'going', 'to', 'protect', 'you.'], ['Why', "don't", 'you', 'go?'], ["I'd", 'stop', 'until', 'they', 'reach', 'me.'], ["I'm", 'sorry,', 'I', "don't", 'believe', 'I', "didn't", 'do', 'it.'], ['Are', 'you', 'going', 'to', 'sit', 'with', 'me?'], ['I', 'made', 'that', 'one.'], ['I', 'never', 'had', 'a', 'father', 'that', 'I', 'was', 'born.'], ['Why', 'are', 'you', 'going', 'to', 'enjoy', 'this?'], ['I', 'hope', 'you', 'see', 'that', 'song', 'that', 'you', 'saw', 'me', 'not', 'to', 'see', 'that', 'house.'], ['Tom', 'is', 'doing', 'what', 'he', 'wants.'], ['She', 'wanted', 'to', 'write', 'two', 'children.'], ["It's", 'always', 'kind', 'of', 'animals.'], ['His', 'office', 'is', 'on', 'the', 'eighth', 'floor.'], ['Young', 'people', 'are', 'happy', 'again.'], ["I'll", 'be', 'back', 'in', 'a', 'minute.'], ['People', 'should', 'take', 'care', 'of', 'the', 'two', 'of', 'people', 'in', 'spite', 'of', 'the', 'pigs.'], ['The', 'climate', 'of', 'the', 'fact', 'that', 'his', 'parents', 'is', 'to', 'be', 'on', 'the', 'president.'], ['I', 'wonder', 'if', 'Tom', 'is', 'trying', 'to', 'help', 'me.'], ['He', 'was', 'the', 'last', 'time.'], ['Are', 'you', 'still', 'married?'], ['Be', 'good', 'at', 'breakfast.'], ['She', 'said', 'that', 'she', 'could', 'be', 'back', 'before', '2:30.'], ['I', 'want', 'to', 'be', 'a', 'scientist."'], ["I'm", 'very', 'sure', 'to', 'do', 'that.'], ["It's", 'not', 'physically', 'impossible.'], ['English', 'lot', 'of', 'English', 'programs', 'are', 'lot', 'from', 'English', 'every', 'day.'], ['He', 'shook', 'hands', 'with', 'my', 'hand.'], ['I', 'wonder', 'what', 'he', 'is', 'for', 'dinner.'], ['I', 'was', 'able', 'to', 'climb', 'the', 'food', 'opportunity.'], ['Have', 'you', 'ever', 'eaten', 'anything', 'that', 'you', 'have', 'anything', 'to', 'do?'], ['Can', 'I', 'talk', 'to', 'you', 'for', 'a', 'minute?'], ['Tom', 'really', "doesn't", 'want', 'us', 'to', 'buy', 'this', 'job.'], ['I', 'lost', 'my', 'watch.'], ['I', "wasn't", 'sure', 'about', 'that.'], ["That's", 'not', 'all', 'I', 'told', 'anyone.'], ['Tom', 'said', 'he', 'was', 'his', 'fault.'], ['Who', 'gave', 'you', 'this', 'information?'], ['She', 'had', 'tears', 'in', 'eyes.'], ['Tom', 'loves', 'his', 'life.'], ["I'm", 'still', 'thirsty.'], ['I', 'can', 'see', 'the', 'sound', 'of', 'the', 'room.'], ['A', 'bat', 'never', 'wanted', 'to', 'let', 'Tom', 'die.'], ['How', 'old', 'are', 'the', 'kids?'], ['I', 'guess', "that's", 'your', 'father.'], ['Sleep', "it's", 'good', 'for', 'your', 'health.'], ['He', 'had', 'no', 'objection.'], ['You', 'may', 'want', 'me', 'a', 'little', 'sleep.'], ['That', "should've", 'ever', 'happened.'], ["Don't", 'stand', 'too', 'short.'], ['I', 'am', 'the', 'one', 'who', 'understands.'], ['She', 'suggested', 'that', 'I', 'call', 'him', 'immediately.'], ["They're", 'early.'], ['I', 'just', 'left', 'my', 'first', 'tattoo.'], ['Tom', 'introduced', 'Mary', 'to', 'his', 'mother.'], ['He', 'knows', 'what', 'happened.'], ["We're", 'going', 'to', 'end', 'well.'], ["Don't", 'you', 'think', "I'd", 'like', 'to', 'do', 'that?'], ['How', 'many', 'weather', 'do', 'you', 'find', 'out', 'of', 'winning?'], ["You're", 'very', 'religious,', "aren't", 'you?'], ['I', 'saw', 'them', 'last', 'week.'], ['I', 'wanted', 'to', 'do', 'this', 'with', 'you.'], ['I', 'figured', 'you', 'might', 'want', 'this.'], ['I', "didn't", 'want', 'Tom', 'to', 'let', 'Tom', 'help.'], ["You're", 'not', 'supposed', 'to', 'smoke', 'here.'], ['I', 'read', 'the', 'report', 'every', 'novel.'], ['It', 'was', 'nothing.'], ['I', 'met', 'him', 'by', 'thinking', 'about', 'his', 'teeth.'], ['You', 'should', 'start', 'at', 'once.'], ['Have', 'you', 'ever', 'been', 'in', 'jail?'], ["You're", 'the', 'oldest.'], ['You', 'did', 'everything', 'you', 'do.'], ['Your', 'ideas', 'are', 'different', 'from', 'mine.'], ["You're", 'depressed,', "aren't", 'you?'], ['I', 'know', 'what', 'school', 'happened', 'today.'], ['Perhaps', 'you', 'can', 'kill', 'me.'], ['I', 'know', "it's", 'not', 'difficult.'], ['I', 'want', 'to', 'eat', 'a', 'eat.'], ['Do', 'you', 'have', 'a', 'tattoo?'], ['That', 'failed.'], ['The', 'sun', 'was', 'full', 'of', 'cold', 'every', 'day.'], ['Does', 'your', 'mother', 'home?'], ["Don't", 'you', 'have', 'anything', 'to', 'do?'], ['You', "can't", 'have', 'that.'], ['Put', 'on', 'my', 'account.'], ["You're", 'running', 'short', 'of', 'food.'], ['Somebody', 'took', 'my', 'hat', 'by', 'the', 'clock.'], ['I', 'am', 'a', 'child.'], ['Look', 'at', 'the', 'blackboard.'], ['The', 'children', 'were', 'in', 'the', 'sight', 'of', 'the', 'water.'], ["What's", 'he', 'doing?'], ['Just', 'let', 'Tom', 'just', 'leave', 'me', 'alone.'], ['Please', 'put', 'on', 'the', 'head', 'of', 'the', 'winter.'], ['Do', 'you', 'have', 'anything', 'to', 'do', 'with', 'that', 'way?'], ["You've", 'got', 'to', 'talk', 'too', 'many', 'trouble.'], ['I', 'was', 'convinced', 'that', 'he', 'was', 'guilty.'], ['They', 'shook', 'the', 'door.'], ['I', 'always', 'study', 'French.'], ["It's", 'a', 'pity', 'that', 'you', "can't", 'travel', 'with', 'us.'], ['She', 'waited', 'for', 'two', 'hours.'], ['I', "can't", 'stand', 'any', 'longer.'], ['I', 'was', 'surprised', 'by', 'the', 'prize.'], ['He', 'is', 'like', 'a', 'baby.'], ['Where', 'are', 'you', 'from?'], ['We', 'have', 'a', 'lot', 'of', 'you.'], ["Isn't", 'that', 'why', 'you', 'have', 'everything?'], ['I', 'feel', 'sick.'], ['I', 'am', 'looking', 'forward', 'to', 'reading', 'your', 'new', 'novel.'], ['He', 'is', 'going', 'to', 'have', 'a', 'hole', 'in', 'his', 'future', 'for', 'a', 'owe', 'in', 'her', 'future.'], ['Why', 'would', 'you', 'want', 'to', 'do', 'that?'], ["What's", 'all', 'here?'], ["You'll", 'have', 'the', 'ability', 'to', 'call', 'the', 'police.'], ['I', 'know', 'that', 'can', 'see', 'you.'], ['The', 'ice', 'is', 'always', 'looking', 'at', 'me.'], ["You're", 'wearing', 'me', "isn't", 'it?'], ['You', 'smell', 'terrible.'], ['Now', 'eat', 'this', 'sweater.'], ['You', "don't", 'seem', 'very', 'pleased.'], ['Tom', 'told', 'us', 'to', 'sit', 'down.'], ['Some', 'problems', 'have', 'problems', 'problems.'], ["It's", 'not', 'worth', 'a', 'day.'], ['They', 'crossed', 'the', 'border.'], ["Tom's", 'wife', "doesn't", 'want', 'to', 'spend', 'our', 'wife', 'in', 'history.'], ['Tom', 'folded', 'the', 'blinds.'], ["He's", 'not', 'alone', 'anymore.'], ["What's", 'your', 'favorite', 'holiday?'], ['Do', 'you', 'have', 'a', 'copy', 'of', 'this', 'piece', 'of', 'pie?'], ['Tom', "didn't", 'want', 'to', 'leave', 'his', 'dog', 'with', 'me.'], ['I', 'just', "can't", 'believe', 'it.'], ['I', 'think', 'of', 'his', 'life', 'is', 'in', 'danger.'], ['You', 'need', 'to', 'bring', 'a', 'break.'], ['What', 'a', 'tough', 'weather!'], ['I', "don't", 'know', 'why', 'Tom', 'was', 'absent', 'from', 'school', 'yesterday.'], ['Tom', 'said', 'he', 'wanted', 'the', 'show.'], ['Everything', 'has', 'changed.'], ['Keep', 'your', 'dog', 'and', 'take', 'the', 'heavy', 'break.'], ['I', "don't", 'care', 'how', 'much', 'you', "don't", 'want', 'this,', 'do', 'it.'], ['I', 'have', 'a', 'valid', 'facts', 'to', 'solve.'], ["Don't", 'drink', 'as', 'much', 'beer.'], ['Do', 'what', 'you', 'want.'], ['That', 'young', 'lady', 'is', 'in', 'love.'], ['You', 'really', 'look', 'really', 'great.'], ["It's", 'too', 'hard.'], ['Will', 'you', 'lend', 'me', 'your', 'dictionary?'], ['There', 'was', 'a', 'good', 'opinion', 'between', 'them.'], ['Would', 'you', 'ever', 'like', 'a', 'native', 'speaker', 'who', "doesn't", 'want', 'to', 'sing?'], ['Tom', 'had', 'to', 'leave', 'early.'], ['These', 'children', 'is', 'prohibited', 'for', 'children', 'to', 'read.'], ['Could', 'you', 'do', 'this', 'for', 'my', 'car?'], ['How', 'dare', 'people', 'like', 'to', 'get', 'the', 'way', 'of', 'the', 'way.'], ['Now', 'meet', 'us.'], ['You', 'know', 'me', 'well.'], ["That's", 'why', 'he', 'lost', 'his', 'job.'], ['Tom', 'got', 'a', 'medal.'], ["I'm", 'going', 'to', 'ask', 'you', 'to', 'do', 'your', 'phone', 'number.'], ["I'm", 'going', 'home', 'at', 'home', 'tomorrow.'], ['What', 'have', 'some', 'money', 'for', 'his', 'birthday?'], ['His', 'parents', 'know', 'me.'], ['Please', 'give', 'me', 'a', 'glass', 'of', 'water.'], ['I', 'have', 'no', 'brothers.'], ['Now', 'is', 'too', 'old', 'to', 'swim', 'in', 'the', 'rain.'], ["I'm", 'not', 'a', 'professional'], ['This', 'is', 'my', 'fault,', 'not', 'yours.'], ['Was', 'there', 'anyone', 'else', 'around?'], ['We', 'used', 'to', 'find', 'out', 'what', 'he', 'kept', 'not', 'to', 'buy', 'it', 'even', 'for', 'his', 'future.'], ["You're", 'the', 'best', 'thing', 'that', 'ever', 'ever', 'ever', 'meet', 'you.'], ['I', 'only', 'eat', 'that', 'I', 'am', 'eating', 'that', 'much.'], ['What', 'is', 'the', 'fact', 'that', "he's", 'done.'], ['I', 'need', 'to', 'wake', 'you.'], ['You', 'are', 'not', 'a', 'doctor.'], ["I'm", 'just', 'trying', 'to', 'go', 'out.'], ['How', 'long', 'did', 'you', 'stay', 'at', 'the', 'time?'], ['I', 'am', 'moving', 'next', 'Sunday.'], ['Everyone', 'is', 'anything', 'to', 'say.'], ['Tom', 'poured', 'himself', 'a', 'drink.'], ['This', 'is', 'a', 'professional', 'game.'], ['May', 'I', 'open', 'a', 'can?'], ['Tom', 'is', 'full', 'of', 'crime', 'in', 'the', 'air.'], ["Don't", 'cut', 'the', 'speed', 'limit.'], ['We', "don't", 'have', 'all', 'the', 'afternoon.'], ['Would', 'you', 'mind', 'if', 'I', 'stayed', 'here?'], ["I'm", 'sorry,', 'I', "don't", 'want', 'to', 'lose', 'them.'], ['He', 'will', 'come.'], ['Tom', "doesn't", 'like', 'the', 'way', 'he', 'grows', 'out.'], ['He', 'drank', 'a', 'lot', 'of', 'money', 'from', 'the', 'bank.'], ['The', 'floor', 'is', 'slippery.'], ["It's", 'happened', 'to', 'be', 'at', 'the', 'station.'], ['She', 'rejected', 'the', 'secret.'], ['The', 'name', 'of', 'my', 'name', 'is', 'full.'], ['When', 'do', 'you', 'expect', 'to', 'come', 'home', 'tonight?'], ["We're", 'expecting', 'that', 'subject.'], ['I', 'thought', "you'd", 'be', 'interested', 'in', 'this.'], ['What', 'do', 'you', 'want?'], ['What', 'kind', 'of', 'fruit', 'do', 'you', 'want?'], ['He', 'put', 'on', 'his', 'way', 'to', 'the', 'apple.'], ['We', 'all', 'agree', 'with', 'you.'], ['Please', "don't", 'forget', 'to', 'me.'], ['Tom', 'is', 'an', 'expert', 'of', 'paper.'], ['This', 'is', 'important.'], ['I', 'wish', 'there', 'were', 'more', 'other', 'day.'], ['What', 'are', 'you', 'waiting', 'for?'], ['We', 'asked', 'us', 'to', 'do', 'this', 'anymore.'], ['I', "don't", 'remember', 'that', 'mistake', 'anyone.'], ['That', 'remains', 'a', 'mystery.'], ["Let's", 'see', 'what', 'happens.'], ['How', 'could', 'you', 'say', 'that?'], ['I', "can't", 'tell', 'you', 'how', 'much', 'your', 'name', 'is', 'to', 'us.'], ['These', 'boxes', 'have', 'to', 'walk.'], ['I', "don't", 'feel', 'like', 'laughing.'], ['He', 'is', 'busy', 'to', 'help', 'him.'], ['We', 'ran', 'out', 'of', 'ten.'], ['I', 'had', 'to', 'get', 'some', 'money.'], ["I'd", 'like', 'to', 'learn', 'the', 'same.'], ['Where', 'is', 'the', 'bus', 'bus', 'to', 'the', 'sun?'], ["I'm", 'not', 'fat.'], ['I', 'am', 'counting', 'on', 'it.'], ['I', 'want', 'you', 'to', 'lose.'], ["I'd", 'like', 'to', 'ask', 'you', 'how', 'to', 'do', 'that.'], ["We're", 'aware', 'of', 'love.'], ['I', 'went', 'to', 'your', 'school.'], ["I'd", 'like', 'you', 'to', 'speak', 'a', 'song', 'for', 'me.'], ["You're", 'crafty.'], ['Tom', 'is', 'now', 'being', 'manager.'], ['This', 'is', 'extremely', 'disappointing.'], ['Do', 'you', 'know', 'who', 'I', 'am?'], ['You', 'look', 'like', "you're", 'busy.'], ['I', 'made', 'fun', 'of', 'your', 'age.'], ['He', 'lied', 'to', 'me', 'about', 'the', 'food.'], ['I', 'want', 'to', 'talk', 'to', 'you', 'about', 'my', 'problems.'], ['I', "didn't", 'want', 'to', 'know.'], ["That's", 'a', 'good', 'guess.'], ['You', 'lost.'], ['I', 'want', 'to', 'show', 'you', 'something', 'to', 'show', 'you.'], ['Did', 'you', 'recognize', 'your', 'old', 'classmate?'], ['I', 'must', 'refuse.'], ['This', 'is', 'obvious.'], ["It's", 'a', 'nice', 'night.'], ['Tom', 'will', 'be', 'careful', 'about', 'that.'], ['You', "don't", 'have', 'to', 'help', 'people', 'but', 'you', 'think', 'you', 'want', 'to.'], ['Can', 'you', 'tell', 'us', 'about', 'that?'], ['The', 'food', 'is', 'eating', 'for', 'survival.'], ['He', 'is', 'a', 'poet.'], ['I', 'asked', 'him', 'to', 'go', 'to', 'a', 'movie', 'with', 'me.'], ['Tom', 'seems', 'to', 'be', 'a', 'complete', 'shirt.'], ['As', 'soon', 'as', 'he', 'saw', 'the', 'dog', 'he', 'started', 'to', 'rain.'], ['Due', 'is', 'the', 'second', 'person', 'I', 'was', 'born.'], ['It', 'would', 'be', 'much', 'more', 'time', 'to', 'find', 'a', 'little', 'more', 'difficult', 'for', 'me', 'to', 'do', 'that', 'a', 'little', 'more', 'time.'], ['Does', 'anyone', 'know', "you're", 'here?'], ['What', 'are', 'the', 'most', 'important', 'of', 'yours?'], ["That's", 'not', 'the', 'best', 'idea', 'of', 'the', 'world.'], ['Tom', 'refused', 'my', 'invitation.'], ['Where', 'is', 'the', 'sun?'], ['You', 'should', 'have', 'taken', 'a', 'copy', 'of', 'your', 'children.'], ["I'll", 'do', 'everything', 'that', 'means', 'to', 'make', 'amends', 'in', 'my', 'own', 'way', 'to', 'do', 'with', 'me.'], ['Do', 'you', 'want', 'to', 'stop', 'it?'], ['Reading', 'makes', 'me', 'feel', 'better.'], ['I', "couldn't", 'do', 'that.'], ['Stand', 'up', 'straight.'], ['They', 'talked', 'about', 'culture.'], ['I', 'sat', 'next', 'to', 'him.'], ['Why', "don't", 'you', 'put', 'clothes', 'in', 'the', 'clothes?'], ['I', 'want', 'to', 'sleep', 'sleep', 'in', 'my', 'sleep', 'tonight.'], ['They', 'hurried', 'to', 'the', 'guests.'], ['He', 'is', 'familiar', 'with', 'a', 'leak.'], ['May', 'I', 'see', 'that', 'movie', 'with', 'a', 'movie', 'with', 'this?'], ["I'm", 'not', 'a', 'reliable', 'guy.'], ['Take', 'it', 'on.'], ['Bangkok', 'is', 'capital', 'policy.'], ['Tom', "doesn't", 'work', 'as', 'much', 'as', 'he', 'used', 'to.'], ['She', 'runs', 'a', 'new', 'ones.'], ['Could', 'you', 'give', 'me', 'a', 'discount?'], ['I', "don't", 'feel', 'like', 'this', 'is', 'happy.'], ["Don't", 'worry.', "I'm", 'being', 'curious.'], ['I', "didn't", 'stay', 'in', 'stay', 'with', 'you.'], ['If', 'I', 'had', 'more', 'than', 'I', "would've", 'asked', 'for', 'more', 'than', 'my', 'life.'], ['You', 'should', 'keep', 'your', 'promises.'], ['You', "can't", 'force', 'me', 'to', 'force', 'you', 'to.'], ["I'm", 'very', 'upset.'], ['When', 'did', 'you', 'meet', 'him?'], ['Dogs', 'are', 'smart.'], ['He', 'likes', 'the', 'money.'], ['Are', 'we', 'leaving?'], ['I', 'want', 'to', 'see', 'my', 'house', 'to', 'my', 'wife.'], ['She', 'has', 'long', 'hair.'], ['The', 'fence', 'was', 'painted', 'painted', 'white.'], ["He's", 'open', 'and', 'generous.'], ['I', "don't", 'know', "what's", 'going', 'to', 'make', 'well', 'today.', 'but', "it's", 'OK.'], ['Would', 'you', 'like', 'to', 'know', 'what', 'happens', 'to', 'happen?'], ['Please', 'have', 'no', 'longer', 'like', 'you.'], ['I', 'will', 'walk', 'to', 'the', 'dog.'], ['It', 'was', 'the', 'wrong', 'track.'], ['The', 'people', 'are', 'and', 'is', 'clean.'], ['Could', 'you', 'pass', 'it', 'up', 'and', 'read', 'it', 'in', 'order', 'to', 'get', 'up', 'with', 'air.'], ['I', "don't", 'understand', 'why', 'it', "doesn't", 'work.'], ['When', 'will', 'you', 'get', 'it', 'again?'], ['Wait', 'until', 'your', 'father', 'gets', 'home.'], ['How', 'did', 'you', 'get', 'caught?'], ['The', 'kids', 'are', 'taking', 'pictures.'], ['Grab', 'my', 'dear.'], ['The', 'arrow', 'fell', 'for', 'the', 'target.'], ['What', 'else', 'did', 'Tom', 'go', 'out', 'of', 'Boston?'], ['Tom', 'asked', 'Mary', 'to', 'read', 'the', 'letter', 'to', 'the', 'store', 'to', 'John.'], ['It', 'was', 'a', 'great', 'deal.'], ['Keep', 'your', 'shoes', 'on.'], ['The', 'water', 'is', 'very', 'cold.'], ['Tom', 'tried', 'to', 'stop', 'Mary.'], ['May', 'I', 'offer', 'my', 'bike?'], ["There's", 'no', 'one', 'person', 'to', 'us.'], ['You', 'understand', 'the', 'problem,', 'will', 'you?'], ['Reading', 'books', 'is', 'very', 'interesting.'], ['I', 'was', 'planning', 'to', 'ask', 'Tom', 'that.'], ["I'm", 'beginning', 'to', 'see', 'what', 'you', 'mean.'], ['She', 'married', 'him', 'at', 'once,', 'but', 'not', 'in', 'England', 'but', 'there', 'was', 'wrong.'], ['I', 'hear', 'the', 'phone', 'ringing.'], ['I', 'never', 'thought', 'it', 'would', 'be', 'doing', 'that', 'easy.'], ['Tom', 'believes', 'that', 'Mary', 'is', 'wrong.'], ['Do', 'you', 'want', 'to', 'watch', 'it?'], ['Do', 'you', 'want', 'this', 'or', 'not?'], ['It', 'will', 'not', 'be', 'easy', 'to', 'get', 'up', 'so', 'early.'], ["He's", 'too', 'drunk.'], ["I'll", 'be', 'absent', 'from', 'the', 'house', 'of', 'the', 'team.'], ['I', "didn't", 'know', 'you', 'were', 'that', 'good', 'at', 'French.'], ['We', "can't", 'do', 'this', 'kind', 'of', 'responsibility.'], ['You', 'should', 'be', 'able', 'to', 'help', 'you', 'get', 'up', 'with', 'you', 'to', 'get', 'out.'], ['The', 'fog', 'arrived.'], ['Why', "don't", 'you', 'start', 'by', 'telling', 'us', 'this', 'morning,'], ['Make', 'that', 'you', 'think', 'that', 'my', 'boss', 'is', 'a', 'larger', 'one.'], ['No', 'one', 'knows', 'what', 'happened', 'to', 'us', 'at', 'any', 'money.'], ["Don't", 'push', 'it.'], ['Get', 'out', 'of', 'bed.'], ['I', 'went', 'to', 'Canada'], ['I', 'realized', 'I', "couldn't", 'win.'], ['I', 'thought', 'it', 'was', 'a', 'good', 'idea!'], ['I', 'have', 'no', 'time', 'to', 'stay', 'at', 'home', 'after', 'midnight.'], ["I'm", 'never', 'used', 'to', 'Sundays.'], ['She', 'had', 'him', 'to', 'go', 'there', 'alone.'], ['The', 'storm', 'took', 'a', 'lot', 'of', 'action', 'in', 'the', 'injury.'], ['Please', "don't", 'be', 'upset.'], ['I', "don't", 'know', 'where', 'Tom', 'lives.'], ['I', 'just', "don't", 'watch', 'time.'], ['I', 'think', "it's", 'going', 'to', 'rain', 'today.'], ['I', "don't", 'know', 'how', 'they', 'do', 'it.'], ['I', 'think', 'they', 'like', 'you.'], ["Here's", 'what', 'you', 'should', 'do.'], ['Tom', 'refused', 'his', 'computer.'], ['I', 'made', 'things', 'I', "can't", 'do', 'it.'], ['This', 'is', 'not', 'working.'], ['I', 'want', 'to', 'kiss', 'you.'], ['You', "don't", 'have', 'enough', 'RAM.'], ['No', 'matter', 'how', 'hard', 'you', 'try,', "you'll", 'be', 'able', 'to', 'finish', 'that', 'a', 'day.'], ['You', 'need', 'this.'], ['Are', 'you', 'sure', "you're", 'all', 'right?'], ['Tom', 'said', 'that', 'Mary', 'wanted', 'Mary', 'to', 'wait.'], ['I', "didn't", 'get', 'involved.'], ["I'm", 'good', 'at', 'skiing.'], ['No,', "I'd", 'find', 'out', 'of', 'foot.'], ["You're", 'very', 'kind,', 'Tom.'], ["I'm", 'sorry,', 'I', "don't", 'understand.'], ['What', 'are', 'you', 'going', 'to', 'do', 'this', 'evening?'], ['Can', 'we', 'talk', 'about', 'it?'], ['Compared', 'to', 'you,', "I'm", 'just', 'a', 'beginner', 'at', 'this', 'game.'], ["Let's", 'not', 'wait', 'anymore.'], ['Do', 'you', 'understand', "what's", 'going', 'on?'], ['When', 'did', 'you', 'visit', 'your', 'friends?'], ['I', 'brought', 'you', 'a', 'lunch.'], ['I', 'can', 'do', 'this', 'without', 'his', 'help.'], ['Why', "didn't", 'you', 'see', 'the', 'police?'], ['His', 'socks', 'are', 'red.'], ["What's", 'the', 'name', 'of', 'this', 'bird?'], ['The', 'two', 'turtles', 'look', 'two', 'languages.'], ['I', 'really', 'want', 'to', 'see', 'you.'], ['He', 'began', 'to', 'bring', 'our', 'side', 'of', 'land.'], ['No', 'matter', 'about', 'you.'], ["Don't", 'waste', 'your', 'time.'], ['Do', 'you', 'think', 'it', 'is?'], ['Look', 'at', 'these', 'water.'], ['I', 'owe', 'you', 'a', 'lot.'], ["That's", 'good', 'enough.'], ['The', 'students', 'are', 'running', 'up', 'with', 'them.'], ["They're", 'students.'], ['I', 'have', 'a', 'cancer.'], ['Are', 'you', 'finished?'], ['Nothing', 'has', 'changed.'], ['My', 'French', 'brother', 'is', 'studying', 'English.'], ['I', 'have', 'a', 'lot', 'of', 'things', 'to', 'do', 'this', 'evening.'], ['I', 'need', 'your', 'advice.'], ['Why', "don't", 'you', 'sit', 'down', 'for', 'a', 'while?'], ['The', 'question', 'has', 'a', 'few', 'questions.'], ['Things', 'are', 'not', 'going', 'to', 'make', 'any', 'mistakes.'], ['I', 'was', 'bored', 'with', 'the', 'traffic', 'noise.'], ['Why', 'are', 'you', 'upset?'], ['You', 'have', 'three', 'months.'], ['I', "don't", 'understand', 'German.'], ['Come', 'over', 'for', 'sometime.'], ['I', 'need', 'to', 'borrow', 'your', 'car.'], ['Can', 'I', 'have', 'your', 'name', 'and', 'address?'], ['I', "don't", 'know', 'how', 'you', 'do', 'that.'], ['Your', 'parents', 'were', 'right.'], ["You've", 'been', 'warned.'], ['Since', 'I', 'am', 'here,', 'I', 'am', 'really', 'busy', 'you.'], ['I', 'need', 'a', 'first', 'first', 'first', 'call.'], ['Drunk', 'driving', 'is', 'a', 'serious', 'problem.'], ['Try', 'to', 'eat', 'again.'], ['I', 'have', 'problems.'], ['They', 'survived,', 'even', 'though', 'the', 'building', 'was', 'destroyed.'], ['I', 'have', 'a', 'meeting', 'at', '2:30.'], ['I', "don't", 'know', 'what', 'to', 'say.'], ['I', 'was', 'safe.'], ['I', 'think', "it's", 'time', 'for', 'me', 'to', 'go.'], ["I'm", 'sure', 'we', 'can', 'trust', 'Tom.'], ['Do', 'you', 'have', 'to', 'stay?'], ['It', "wouldn't", 'be', 'without', 'without', 'you.'], ['They', 'were', 'longer', 'as', 'much', 'as', 'his', 'age', 'as', 'he', 'is.'], ['I', 'decided', 'that', 'we', 'have', 'to', 'win.'], ['Tom', 'and', 'Mary', "don't", 'know?'], ['I', "couldn't", 'fall', 'asleep', 'because', 'of', 'the', 'noise.'], ['Are', 'you', 'going', 'to', 'pay', 'the', 'airport?'], ['There', 'were', 'a', 'man', 'walking', 'in', 'front', 'of', 'the', 'city.'], ['None', 'of', 'us', 'are', 'illiterate.'], ['I', 'hope', 'that', 'he', 'will', 'come.'], ['Where', 'did', 'the', 'party', 'come', 'from?'], ["I'm", 'sure', 'I', 'want', 'anything', 'but', 'I', "don't", 'want', 'anybody', 'else', 'at', 'least', 'that', 'matter.'], ["You're", 'too', 'good', 'to', 'drive.'], ['You', 'could', 'sleep', 'in', 'the', 'hammock.'], ['You', 'said', 'everything', 'that', 'just', 'cried.'], ['Do', 'you', 'think', "that's", 'real?'], ['Not', 'all', 'the', 'men', 'are', 'like', 'that.'], ['Sorry', 'to', 'have', 'taken', 'you', 'waiting.'], ['I', 'should', 'do', 'this', 'by', 'my', 'own.'], ['I', 'was', 'dismissed.'], ["It's", 'not', 'difficult', 'to', 'swim.'], ['Do', 'you', 'want', 'to', 'drink?'], ['I', 'want', 'a', 'laptop.'], ['Please', 'do', 'the', 'way', 'out.'], ['We', 'agreed', 'to', 'us.'], ['Tom', "doesn't", 'have', 'the', 'way', 'to', 'Mary', 'on', 'the', 'way', 'to', 'him.'], ['He', 'had', 'to', 'climb', 'the', 'test.'], ['I', "didn't", 'tell', 'anybody.'], ["I'm", 'not', 'sure', 'whether', 'he', 'is', 'or', 'not.'], ['We', "don't", 'talk', 'with', 'the', 'conditions.'], ['I', "didn't", 'expect', 'anything.'], ['I', 'still', 'need', 'to', 'help', 'them.'], ['Did', 'you', 'have', 'a', 'new', 'haircut?'], ['Your', 'wife', 'is', 'fast.'], ['I', 'just', 'met', 'your', 'present', 'at', 'work.'], ['What', 'do', 'you', 'want', 'me', 'to', 'do?'], ['You', 'knew', 'this', 'is,', "don't", 'you?'], ['He', 'spoke', 'to', 'me', 'in', 'private.'], ['The', 'auto', 'spread', 'is', 'ringing', 'again.'], ['He', 'used', 'to', 'climb', 'down', 'on', 'his', 'business.'], ["I'm", 'not', 'used', 'to', 'the', 'kind', 'of', 'people', 'to', 'talk', 'with', 'me.'], ['I', 'really', 'hate', 'you.'], ['She', 'had', 'a', 'cold', 'last', 'night.'], ['Please', 'forward', 'the', 'light', 'on', 'the', 'rain.'], ['I', "don't", 'want', 'to', 'hear', 'you.'], ["How's", 'your', 'old', 'doing?'], ["It's", 'genuine.'], ['We', "don't", 'know', 'the', 'rain.'], ['I', 'had', 'doubts', 'about', 'the', 'beginning.'], ['She', 'has', 'a', 'large', 'speaker.'], ["You're", 'not', 'listening!'], ['Do', 'you', 'still', 'want', 'another', 'language.'], ['He', "didn't", 'come', 'to', 'the', 'party.'], ['We', 'took', 'advantage', 'of', 'the', 'room', 'for', 'people.'], ['You', 'should', 'fulfill', 'your', 'promises.'], ['I', 'made', 'a', 'bad', 'decision.'], ["You're", 'not', 'going', 'to', 'smoke,'], ['He', 'has', 'his', 'word.'], ['I', 'need', 'some', 'things.'], ['Are', 'you', 'kidding?'], ['I', "can't", 'stop', 'myself.'], ['They', 'showed', 'it', 'to', 'our', 'company.'], ["There's", 'a', 'tower.'], ['This', 'is', 'the', 'wrong', 'guitar.'], ['She', "doesn't", 'love', 'him,', 'but', 'she', 'opened', 'the', 'matter', 'when', 'she', 'speaks', 'college.'], ['I', "don't", 'see', 'any', 'many', 'questions.'], ['She', 'parked', 'Mary', 'on', 'his', 'seat', 'car.'], ['He', 'goes', 'to', 'the', 'same', 'school', 'now.'], ['Where', 'did', 'you', 'put', 'my', 'keys?'], ["Don't", 'be', 'doing', 'anything', 'I', 'expected.'], ['Why', "don't", 'you', 'ride', 'home', 'yesterday?'], ['No', 'one', 'can', 'prevent', 'the', 'sound', 'of', 'his', 'mistakes.'], ['Tom', 'is', 'cooking.'], ['Each', 'should', 'should', 'be', 'of', 'their', 'appearance.'], ['He', 'was', 'sealed.'], ['It', 'might', 'be', 'the', 'first', 'time', 'we', 'met.'], ['Tom', 'and', 'Mary', 'are', 'very', 'hungry.'], ['Maybe', 'we', 'should', 'wait', 'here', 'or', 'here.'], ["I'm", 'looking', 'for', 'a', 'snack.'], ['Food', 'will', 'be', 'on', 'the', 'rice', 'project.'], ['He', 'seems', 'to', 'have', 'been', 'rich.'], ['I', 'often', 'read', 'these', 'patience.'], ['This', 'bridge', 'is', 'all', 'the', 'point.'], ['Sign', 'the', 'meaning', 'of', 'that.'], ["Don't", 'come', 'with', 'me', 'with', 'me.'], ['My', 'sister', 'eats', 'twice', 'as', 'much', 'as', 'me.'], ['May', 'I', 'have', 'your', 'attention,', 'please?'], ['This', 'band', 'is', 'very', 'useful.'], ['We', 'lost', 'a', 'lot', 'in', 'this', 'job.'], ['Take', 'it', 'on.'], ['Would', 'you', 'lend', 'me', 'your', 'own', 'car?'], ['He', 'asked', 'his', 'idea', 'to', 'work.'], ['His', 'head', 'was', 'slow.'], ["It's", 'often', 'raining', 'here.'], ['The', 'climate', 'of', 'the', 'fish', 'is', 'a', 'day.'], ['Love', 'makes', 'their', 'lines.'], ['I', 'have', 'a', 'map', 'for', 'you.'], ['Please', 'put', 'your', 'shoes', 'on.'], ['I', 'just', 'have', 'to', 'make', 'a', 'date.'], ['When', 'did', 'he', 'go?'], ["That's", 'why', 'Tom', 'and', 'I', 'love', 'him.'], ['We', 'voted', 'battle.'], ['Which', 'way', 'do', 'you', 'like', 'it?'], ['I', 'can', 'hardly', 'pay', 'my', 'rent.'], ['No', 'one', 'of', 'my', 'kids', 'come', 'back.'], ["I'm", 'working', 'there', 'every', 'day', 'but', 'I', 'work', 'in', 'time', 'for', 'a', 'work', 'day', 'in', 'time', 'a', 'day.'], ["I'm", 'looking', 'for', 'the', 'store', 'to', 'swim.'], ['I', "don't", 'have', 'any', 'option.'], ['He', 'grows', 'in', 'his', 'garden', 'in', 'the', 'garden.'], ['Tom', "can't", 'do', 'this', 'as', 'much', 'as', 'I', 'used', 'to', 'do', 'it.'], ['Are', 'they', 'new?'], ['He', 'is', 'a', 'poet.'], ['You', 'can', 'always', 'do', 'that', 'if', 'you', 'like.'], ['This', 'is', 'the', 'tree.'], ['Where', 'are', 'my', 'slippers?'], ['He', 'is', 'leaving', 'the', 'captain', 'of', 'our', 'team.'], ['He', 'is', 'in', 'a', 'gentleman', 'he', 'is', 'being', 'criticized.'], ['When', 'I', 'met', 'the', 'last', 'meeting', 'was', 'an', 'hour.'], ['I', 'think', "it's", 'time', 'for', 'a', 'new', 'camera.'], ['Why', 'do', 'you', 'need', 'a', 'doctor?'], ['I', 'believe', 'I', 'lost', 'my', 'umbrella.'], ['The', 'tower', 'will', 'come', 'soon.'], ["You're", 'not', 'alone.'], ["That's", 'a', 'hybrid.'], ['Would', 'you', 'like', 'to', 'go', 'with', 'me?'], ['I', "can't", 'put', 'up', 'with', 'a', 'long', 'longer.'], ['Can', 'you', 'give', 'us', 'your', 'point', 'of', 'view?'], ['What', 'do', 'you', 'do', 'today?'], ['They', 'all', 'looked', 'relieved.'], ['He', 'has', 'a', 'large', 'family', 'of', 'Australia.'], ['I', 'started', 'to', 'cry.'], ['I', 'know', 'he', 'knows', 'his', 'word.'], ["I'd", 'like', 'to', 'thank', 'you', 'for', 'coming', 'today.'], ['This', 'book', 'is', 'much', 'more', 'than', 'that', 'one.'], ['Look', 'at', 'that!'], ['How', 'could', 'not', 'solve', 'that?'], ['Are', 'you', 'happy', 'with', 'your', 'father?'], ['The', 'concert', "hasn't", 'started.'], ['Thanks', 'a', 'lot.'], ['You', 'should', 'eat.'], ['He', 'left', 'ten', 'here', 'ten', 'years', 'ago.'], ["I've", 'had', 'enough', 'of', 'that.'], ['That', 'was', 'mentioned.'], ['Would', 'you', 'get', 'out', 'of', 'taking', 'notes?'], ['That', "doesn't", 'seem', 'too', 'hard.'], ['What', 'is', 'it?'], ["I'm", 'going', 'to', 'the', 'station.'], ["How's", 'your', 'morning', 'been?'], ['I', 'thought', 'you', 'were', 'my', 'friend.'], ['I', 'loved', 'talking', 'to', 'you.'], ['Where', 'do', 'you', 'live?'], ['Nobody', 'can', 'go', 'out', 'or', 'may', 'go', 'out.'], ["I'm", 'going', 'to', 'be', 'a', 'teacher.'], ['I', "can't", 'work', 'in', 'a', 'hospital.'], ["What's", 'wrong', 'with', 'this?'], ['Please', 'show', 'me', 'something', 'to', 'know.'], ['I', "don't", 'want', 'they', 'to.'], ['Can', 'you', 'believe', 'this', 'is', 'really', 'happening?'], ['Do', 'I', 'annoy', 'you?'], ['She', 'is', 'more', 'interested', 'in', 'debt.'], ['He', 'liked', 'it.'], ["I'll", 'do', 'the', 'best', 'next', 'time.'], ['His', 'wife', 'is', 'our', 'teacher.'], ['How', 'long', 'have', 'you', 'been', 'there?'], ['The', 'rich', 'have', 'slept', 'and', 'have', 'come', 'and', 'poorer.'], ['He', 'went', 'to', 'Paris', 'to', 'the', 'car.'], ['I', 'was', 'frustrated.'], ['The', 'hunter', 'caught', 'the', 'fox.'], ['If', 'you', "don't", 'want', 'to', 'let', 'me', 'know', 'the', 'right', 'to.'], ['France', 'is', 'in', 'the', 'sea', 'of', 'success.'], ['Please', 'close', 'the', 'TV', 'on.'], ['Tom', "doesn't", 'like', 'talking.'], ['I', 'thought', 'it', 'was', 'your', 'job.'], ['I', "can't", 'wait', 'anything', 'else', 'to', 'drink.'], ['Tom,', 'are', 'you', 'awake?'], ["We'd", 'better', 'go', 'there.'], ['His', 'always', 'makes', 'always', 'nervous.'], ['Let', 'me', 'write', 'in', 'private.'], ['Tom', 'has', 'been', 'waiting', 'for', 'three', 'hours.'], ['He', 'is', 'as', 'tall', 'as', 'my', 'brother.'], ['I', 'think', 'you', 'know', "that's", 'inappropriate.'], ['Would', 'you', 'like', 'a', 'flashlight', 'and', 'open', 'a', 'window?'], ['This', 'is', 'very', 'good.'], ["He's", 'young', 'and', 'young'], ['That', 'tie', 'you', 'look', 'very', 'well.'], ['I', "didn't", 'like', 'Tom.'], ['I', "didn't", 'count', 'on', 'me.'], ['I', 'remember', 'when', 'that', 'happened.'], ['You', 'have', 'a', 'good', 'lawyer.'], ['Mary', 'is', 'the', 'youngest', 'in', 'the', 'youngest'], ['I', "don't", 'know', 'how', 'to', 'do', 'this.'], ['Please', 'come', 'here.'], ['Half', 'of', 'the', 'apples', 'that', 'Tom', 'gave', 'me', 'was', 'rotten.'], ['Do', 'you', 'have', 'any', 'employees', 'this', 'song', 'is', 'this?'], ['This', 'seems', 'perfectly.'], ['He', 'is', 'totally', 'stupid.'], ['Tom', 'sent', 'Mary', 'a', 'birthday', 'card.'], ['Open', 'your', 'mouth.'], ['Bad', 'weather', 'had', 'bad', 'time.'], ['I', 'was', 'bitten', 'by', 'a', 'lot', 'in', 'the', 'forest.'], ['Hey,', 'do', 'you', 'hate', 'the', 'matter', 'with', 'your', 'people?'], ['They', 'ruined', 'my', 'life.'], ['I', 'like', 'being', 'used', 'to', 'being', 'alone.'], ["I'll", 'be', 'back.'], ['The', 'difficult', 'given', 'me', 'a', 'difficult', 'question.'], ['You', 'really', 'have', 'to', 'go', 'to', 'work.'], ['I', 'know', 'how', 'to', 'call', 'in', 'a', 'flea', 'where', 'you', 'need', 'to', 'get', 'married', 'in', 'October.'], ['I', "don't", 'want', 'to', 'bring', 'you,', 'but', 'I', 'can', 'buy', 'this', 'one', 'who', 'wants', 'to', 'be', 'a', 'native', 'speaker', 'person.'], ["I'm", 'used', 'to', 'the', 'baby.'], ['He', 'is', 'too', 'hard', 'to', 'help', 'us', 'too', 'much.'], ['We', 'have', 'to', 'take', 'our', 'expenses.'], ['I', 'just', 'got', 'a', 'job.'], ['I', "don't", 'want', 'Tom', 'to', 'do', 'it.'], ['English', 'is', 'not', 'hard,', 'but', "it's", 'interesting.'], ['I', 'saw', 'him', 'into', 'the', 'crowd.'], ['Come', 'play', 'with', 'us.'], ['I', 'think', 'I', 'should', 'go', 'and', 'feel', 'like', 'a', 'little', 'sleep.'], ['I', 'found', 'that', 'very', 'funny.'], ["I'd", 'rather', 'rather', 'sleep', 'at', 'the', 'end', 'of', 'the', 'rain.'], ['I', 'thought', 'you', 'wanted', 'to', 'wait.'], ['After', 'my', 'arm', 'coming', 'home', 'by', 'seven.'], ['I', 'learned', 'how', 'to', 'drive', 'a', 'car.'], ['The', 'dog', 'jumped'], ['You', "can't", 'park', 'here.'], ['I', 'got', 'myself.'], ['What', 'do', 'you', 'think', 'I', 'feel?'], ['We', 'enjoyed', 'the', 'movie', 'a', 'movie', 'when', 'the', 'movie', 'had', 'finished', 'on', 'fire.'], ['I', 'know', 'Tom', 'was', 'lying.'], ['What', 'do', 'you', 'need', 'to', 'do?'], ['I', 'think', 'they', 'like', 'him.'], ['My', 'room', 'is', 'the', 'room', 'than', 'two', 'people.'], ['You', 'promised.'], ['Tom', 'has', 'started', 'to', 'write', 'a', 'new', 'book.'], ["I'm", 'too', 'fat.'], ['Do', 'you', 'feel', 'a', 'spoon?'], ['I', 'live', 'in', 'town.'], ['Am', 'I', 'supposed', 'to', 'thank', 'you?'], ['Have', 'you', 'ever', 'heard', 'that', 'story?'], ['Tom,', 'your', 'life', 'is', 'short.'], ['Do', 'we', 'need', 'to', 'fill', 'this', 'river?'], ['If', 'you', 'think', "you're", 'trying', 'to', 'admit', "you're", 'in', 'the', 'future.'], ['How', 'do', 'you', 'do', 'that', 'for', 'a', 'nice', 'trip?'], ['It', 'happened', 'so', 'fast.'], ['They', 'are', 'going', 'to', 'church', 'at', 'church', 'every', 'winter.'], ['How', 'old', 'were', 'you', 'for?'], ['Even', 'though', 'he', 'was', 'still', 'angry.'], ["It's", 'a', 'pity', 'that', 'he', 'is', 'hiding', 'behind', 'the', 'crime.'], ['He', 'has', 'a', 'pair', 'of', 'power.'], ['Do', 'you', 'really', 'want', 'Tom', 'to', 'go?'], ['The', 'cat', "isn't", 'dead.'], ['They', 'won.'], ['I', 'have', 'a', 'hand', 'to', 'my', 'hand', 'and', 'left', 'me.'], ['Tom', 'looked', 'young.'], ['What', 'are', 'you', 'talking', 'about?'], ["You're", 'not', 'alone.'], ['I', "don't", 'have', 'time', 'for', 'that.'], ['You', 'came', 'too', 'early.'], ['To', 'buy', 'a', 'little', 'money,', 'that', 'I', 'would', 'buy', 'more', 'money.'], ['Take', 'the', 'water', 'off', 'the', 'apple', 'before', 'it', 'gets', 'cold.'], ['I', 'heard', 'what', 'heard', 'he', 'said.'], ['The', 'food', 'is', 'very', 'expensive', 'nowadays.'], ['He', 'did', 'it', 'himself.'], ["You've", 'got', 'some', 'books.'], ['I', 'had', 'a', 'dog', 'named', 'Cookie.'], ['A', 'carbon', 'of', 'the', 'hostages', 'will', 'be', 'broken.'], ['You', 'need', 'to', 'stop', 'people', 'from', 'Tom.'], ['Since', 'it', 'is,', 'I', 'can', 'speak', 'to', 'him,', 'myself', 'I', 'used', 'to', 'write', 'it.'], ["I've", 'never', 'had', 'anything', 'else', 'to', 'feed', 'my', 'dog.'], ['We', 'must', 'save', 'him.'], ['She', 'advised', 'him', 'to', 'cut', 'down', 'on', 'the', 'heart', 'to', 'lay', 'on', 'a', 'traffic', 'jam.'], ["Don't", 'let', 'your', 'help', 'your', 'help.'], ['Never', 'understand', 'what', 'is', 'what', 'I', 'plan', 'to', 'be.'], ['We', 'ran', 'away', 'from', 'the', 'serious.'], ['He', 'told', 'me', 'his', 'life', 'in', 'his', 'life.'], ["I'm", 'on', 'the', 'road.'], ['Stop', 'still.'], ['We', "don't", 'understand', 'his', 'income.'], ['I', 'want', 'to', 'know', "what's", 'going', 'on.'], ['I', "can't", 'help', 'it.'], ['Where', 'do', 'you', 'begin?'], ['I', 'want', 'a', 'pool.'], ["Don't", 'worry.', "It's", 'a', 'huge', 'mistake.'], ['A', 'swarm', 'of', 'people', 'will', 'give', 'up', 'with', 'the', 'water.'], ['We', 'trust', 'him.'], ['I', 'really', 'need', 'you.'], ['I', 'think', 'you', 'have', 'too', 'much', 'sugar.'], ['The', 'bus', 'train', 'to', 'the', 'station', 'to', 'the', 'station.'], ['Are', 'you', 'listening', 'to', 'the', 'radio?'], ['Why', 'do', 'you', 'come', 'to', 'work', 'with', 'him?'], ["Couldn't", 'a', "wasn't", 'of', 'a', 'year.'], ['I', "can't", 'say', 'that', "I'm", 'not', 'wrong.'], ['I', 'forgot', 'my', 'coat', 'in', 'the', 'park', 'in', 'my', 'coat.'], ['I', 'forgot', 'to', 'shut', 'the', 'door.'], ['Do', 'you', 'want', 'to', 'stay?'], ['Do', 'you', 'want', 'to', 'get', 'a', 'drink?'], ['Are', 'you', 'washing', 'your', 'office', 'to', 'your', 'desk?'], ['How', 'are', 'you', 'all', 'this?'], ['Your', 'boyfriend', 'is', 'wrong.'], ['I', 'am', 'no', 'longer', 'love', 'you.'], ['I', "can't", 'get', 'there.'], ['Can', 'you', 'see', 'anyone', 'at', 'that', 'house?'], ['She', 'showed', 'him', 'the', 'picture.'], ['Why', 'do', 'you', 'have', 'to', 'take', 'American', 'American', 'American', 'gift.'], ['I', "don't", 'agree', 'with', 'you', 'on', 'this.'], ['Tom', "doesn't", 'know', 'where', "he's", 'gone.'], ['He', 'called', 'up', 'his', 'early', 'tomorrow.'], ['Oh,', "don't", 'do', 'that', 'like', 'that!'], ['You', 'were', 'so', 'strong.'], ['How', 'much', 'time', 'do', 'you', 'think', 'happens', 'to', 'be', 'much', 'of', 'the', 'trip?'], ["They're", 'downstairs.'], ['How', 'often', 'do', 'you', 'listen', 'to', 'me?'], ['What', 'if', 'I', 'called', 'you', 'on', 'Monday?'], ['Tom', 'felt', 'responsible.'], ['I', "can't", 'be', 'something', 'I', 'am', 'wrong.'], ['We', 'had', 'a', 'chance', 'to', 'happen,', "didn't", 'you?'], ['Is', 'that', 'a', 'no?'], ['We', 'have', 'a', 'very', 'small', 'job.'], ['I', 'knew', 'it', 'was', 'a', 'joke.'], ['He', 'ordered', 'another', 'plan.'], ['I', 'will', 'give', 'him', 'a', 'jacket.'], ['Some', 'of', 'the', 'time', 'is', 'usually', 'having', 'a', 'long', 'time.'], ['He', 'saw', 'the', 'policeman.'], ['The', 'doctor', 'advised', 'me', 'to', 'stop', 'eating', 'fishing.'], ['I', 'like', 'my', 'bicycle.'], ["I've", 'never', 'been', 'in', 'love', 'before.'], ['We', 'hurried', 'to', 'the', 'train', 'by', 'train.'], ['A', 'young', 'people', 'and', 'France', 'is', 'quiet', 'and', 'quiet', 'and', 'left.'], ['Please', 'shut', 'the', 'door.'], ['The', 'tea', 'invited', 'me', 'from', 'China.'], ["I'll", 'tell', 'you', 'what', 'to', 'say.'], ['Take', 'up', 'on.'], ['I', 'want', 'to', 'find', 'out', 'this', 'can.'], ['Kyoto', 'is', 'going', 'on.'], ['I', 'prefer', 'to', 'read.'], ['I', "don't", 'know', 'where', 'I', 'begin.'], ['He', 'is', 'my', 'power.'], ['The', 'earth', 'is', 'a', 'lot', 'larger', 'than', 'the', 'moon.'], ['I', 'need', 'a', 'map.'], ['I', 'think', 'Tom', 'was', 'very', 'lucky.'], ['I', "don't", 'want', 'to', 'study', 'English', 'today.'], ['Do', 'I', 'look', 'fat?'], ['I', "can't", 'know', 'what', 'you', 'know.'], ['I', 'miss', 'her.'], ['Did', 'you', 'enjoy', 'French', 'when', 'you', 'speak', 'French?'], ["Let's", 'do', 'your', 'job.'], ["You'll", 'get', 'used', 'to', 'you.'], ['Tom', 'began', 'praying.'], ['Tom', "doesn't", 'really', 'understand', 'me.'], ['I', "don't", 'feel', 'like', 'a', 'few', 'minutes.'], ["Let's", 'ask', 'a', 'moment', 'here', 'for', 'the', 'weekend.'], ['Tom', "hasn't", 'told', 'the', 'moment', 'he', 'said', 'about', 'it.'], ['I', "don't", 'want', 'to', 'win.'], ['Until', 'that', 'day,', 'he', 'had', 'dreamed', 'of', 'eating', 'meat.'], ['He', 'rejected', 'his', 'breath.'], ['Who', 'is', 'your', 'girlfriend?'], ['He', 'is', 'trying', 'to', 'save', 'art.'], ['If', 'it', 'failed', 'the', 'field', 'of', 'the', 'sky,', 'it', 'was', 'secret.'], ['I', 'appreciate', 'the', 'following', 'you', 'love.'], ['What', 'is', 'it?'], ['Bad', 'weather', 'delayed', 'the', 'weather', 'delayed', 'for', 'hours.'], ["I'm", 'the', 'only', 'one', 'you', 'can', 'trust.'], ['I', 'feel', 'better', 'already.'], ['We', 'miss', 'each', 'other', 'very', 'much.'], ['I', 'held', 'my', 'hands', 'and', 'held', 'in', 'my', 'suitcase.'], ['We', 'all', 'want', 'answers.'], ['Can', 'you', 'show', 'me', 'how', 'to', 'do', 'this?'], ['I', "don't", 'know', 'what', 'to', 'do', 'now.'], ['The', 'police', 'are', 'looking', 'for', 'his', 'advice.'], ['Where', 'is', 'the', 'Boston?'], ['Why', 'are', 'you', 'working', 'here?'], ['Something', 'had', 'him', 'to', 'go', 'to', 'the', 'way.'], ['I', 'lost', 'my', 'wallet.'], ['It', 'may', 'be', 'the', 'hope', 'of', 'my', "father's", 'secretary.'], ['He', 'is', 'a', 'hundred', 'dollar', 'left.'], ['That', 'needs', 'to', 'help.'], ['He', 'has', 'the', 'gift', 'of', 'repair.'], ['I', 'wish', "you'd", 'better', 'first.'], ['Tom', 'is', 'a', 'little', 'rusty.'], ['Why', 'did', 'you', 'call', 'me?'], ['I', "couldn't", 'let', 'you', 'take', 'all', 'the', 'you.'], ['Look', 'out', 'of', 'this', 'tall', 'way.'], ['Why', 'did', 'they', 'hire', 'you?'], ['He', 'gave', 'me', 'the', 'best', 'use', 'of', 'money.'], ['Several', 'children', 'were', 'playing', 'on', 'the', 'beach.'], ["Don't", 'push', 'it.'], ['He', 'arrived', 'at', 'the', 'hotel', 'before', 'he', 'left', 'home.'], ['What', 'are', 'you', 'telling', 'the', 'other', 'way?'], ["Don't", 'you', 'think', 'it', 'is,', 'OK?'], ['He', 'has', 'already', 'said', 'yes.'], ['I', 'know', 'what', 'to', 'do.'], ['I', 'used', 'to', 'die.'], ['There', 'is', 'a', 'house', 'out', 'of', 'my', 'house.'], ['I', 'have', 'some', 'more', 'important', 'things', 'on', 'the', 'problem.'], ['Science', 'can', 'be', 'sure', 'to', 'be', 'prepared.'], ['I', 'told', 'you', 'that', 'I', 'hated', 'that', 'shirt.'], ['I', 'had', 'to', 'say', 'something.'], ['I', "can't", 'believe', 'that', 'she', 'did', 'that.'], ['He', 'is', 'a', 'great', 'photographer.'], ['They', 'shared', 'the', 'money.'], ["It's", 'time', 'to', 'spend', 'time', 'with', 'the', 'time', 'on', 'the', 'holiday?'], ['We', 'arrived', 'on', 'the', 'scene', 'of', 'the', 'end.'], ['I', "don't", 'know', 'what', "I'm", 'being', 'paid', 'for', 'me,', 'but', "I'm", 'ready.'], ['I', 'suspect', "you're", 'right.'], ["Let's", 'do', 'this', 'work', 'together.'], ['It', 'was', 'his', 'task.', 'but', 'he', 'did.'], ["I'm", 'sick', 'of', 'it.'], ['I', 'left', 'a', 'little', 'bit', 'left'], ['I', "didn't", 'see', 'it.'], ['This', 'book', 'is', 'easy', 'so', 'I', "can't", 'read.'], ['English', 'is', 'also', 'studied', 'in', 'China.'], ["I'm", 'not', 'staying', 'here', 'for', 'a', 'long', 'time.'], ['Tom', 'is', 'a', 'lot', 'of', 'meat.'], ['That', 'should', 'be', 'enough.'], ['This', 'makes', 'me', 'happy.'], ['I', 'had', 'nowhere', 'to', 'go.'], ['Everyone', 'should', 'leave.'], ["You're", 'not', 'permitted', 'to', 'bring', 'dogs', 'in', 'this', 'building.'], ['Did', 'you', 'not', 'give', 'your', 'car', 'on', 'the', 'car', 'with', 'you?'], ['Who', 'taught', 'you', 'how', 'to', 'write', 'it?'], ['Somebody', 'saw', 'you.'], ['I', 'barely', 'believe', 'his', 'story.'], ['I', 'managed', 'to', 'write', 'his', 'advice.'], ['Tom', 'wanted', 'Mary', 'to', 'talk', 'to', 'her', 'boss.'], ['I', 'never', 'met', 'a', 'new', 'girl', 'before.'], ["That's", 'probably', 'true.'], ['I', 'will', 'sue', 'you.'], ['I', 'can', 'make', 'a', 'message.'], ['young', 'people', 'are', 'going', 'to', 'respect', 'the', 'law.'], ['He', 'is', 'not', 'happy', 'with', 'the', 'result.'], ['Try', 'up.'], ["It'll", 'work.'], ['May', 'I', 'go', 'home?'], ['It', 'is', 'not', 'far', 'from', 'far', 'from', 'here.'], ['Everyone', 'is', 'talking', 'about', 'his', 'family.'], ['They', 'are', 'still', 'young.'], ['I', 'met', 'my', 'friends', 'yesterday.'], ["That's", 'so', 'hard.'], ["I'm", 'sorry', 'you', 'got', 'dragged', 'in', 'here.'], ['If', 'you', 'need', 'this', 'information', 'needs', 'to', 'know.'], ['The', 'top', 'of', 'the', 'top', 'of', 'the', 'mountain', 'is', 'covered', 'with', 'snow.'], ['Hurry', 'up,', 'please.'], ['I', 'want', 'them.'], ['Show', 'me', 'this', 'magazine.'], ['She', 'is', 'about', 'it.'], ['Tom', 'was', 'left', 'until', 'last', 'night?'], ['My', 'husband', 'is', 'available', 'for', 'the', 'weekend.'], ['Bring', 'me', 'a', 'chair.'], ['I', 'think', 'you', 'owe', 'me', 'apology.'], ['I', 'just', "don't", 'want', 'to', 'worry.'], ["Everyone's", 'in', 'position.'], ['You', 'have', 'to', 'fail', 'the', 'fact', 'that', 'it', "won't", 'be', 'again.'], ['Please', 'do', 'it', 'with', 'someone', 'else', 'do', 'it.'], ['Tell', 'me', 'what', 'you', 'have', 'all', 'happened.'], ['Tom', 'comes', 'here', 'once', 'a', 'month.'], ["It's", 'all', 'wrong.'], ['She', 'likes', 'Japanese', 'people.'], ['He', 'was', 'a', 'present', 'from', 'Tom.'], ['Tom', 'is', 'someone', 'I', 'never', 'find', 'himself.'], ['I', "don't", 'know', 'if', 'I', 'can', 'buy', 'it', 'for', 'me.'], ['Unfortunately,', "can't", 'keep', 'their', 'children', 'like', 'well.'], ['I', 'know', 'that', "I'm", 'going', 'to', 'die.'], ['Things', "aren't", 'happening.'], ['Do', 'you', 'have', 'a', 'family?'], ["You're", 'the', 'reason', 'I', 'came.'], ['Tom', 'sang', 'better', 'than', 'Mary.'], ['I', 'am', 'not', 'part', 'of', 'the', 'dogs.'], ['Who', 'will', 'have', 'the', 'price?'], ['I', 'spent', 'the', 'book', 'from', 'written', 'in', 'English.'], ['I', 'never', 'said', 'that.'], ['I', "can't", 'help', 'you', 'this', 'week.'], ['Just', 'have', 'what', 'you', 'told', 'what', "you've", 'said?'], ['Could', 'you', 'tell', 'me', 'when', 'you', 'are?'], ['How', 'did', 'you', 'come', 'by', 'all', 'this', 'money?'], ["What's", 'your', 'favorite', 'drink?'], ['Her', 'ability', 'to', 'everyone.'], ['This', 'is', 'no', 'business', 'of', 'his', 'business.'], ['Tom', 'was', 'very', 'busy', 'today.'], ['Compare', 'the', 'hard', 'of', 'milk', 'to', 'smoke.'], ['I', 'want', 'to', 'eat', 'Korean', 'food', 'that', "doesn't", 'eat', 'food.'], ["It's", 'only', 'part', 'under', 'Rome.'], ['He', 'slept', 'more', 'than', 'the', 'child', 'every', 'day.'], ['She', 'advised', 'him', 'to', 'go', 'there', 'alone.'], ['Is', 'there', 'something', 'wrong?'], ['Even', 'though', 'she', 'was', 'very', 'clear', 'how', 'very', 'mother', 'is', 'very', 'busy', 'me.'], ['I', "don't", 'think', "you'd", 'think', 'it', 'would', 'be', 'good', 'at', 'that', 'time.'], ['You', 'just', "don't", 'understand.'], ['The', 'lovers', 'are', 'very', 'short', 'of', 'friends.'], ['I', 'was', 'alone', 'for', 'a', 'week', 'for', 'week.'], ['I', 'almost', 'died.'], ['In', "Tom's", 'opinion,', 'Tom', 'is', 'right.'], ["That's", 'why', 'I', 'bother', 'you.'], ['Doing', 'that', 'kind', 'of', 'thing', 'is', 'kind', 'of', 'stupid.'], ['Could', 'you', 'turn', 'the', 'TV?'], ['The', 'cat', 'sat', 'on', 'the', 'mat.'], ['No', 'matter', 'what', 'he', 'tried,', 'he', 'is', 'likely', 'to', 'succeed.'], ['Dancing', 'is', 'not', 'a', 'loser.'], ['She', 'was', 'a', 'charming', 'woman.'], ['He', 'was', 'unimpressed.'], ['I', 'love', 'a', 'good', 'time', 'with', 'a', 'good', 'accent.'], ['I', "don't", 'have', 'anyone', 'else', 'who', 'you', 'want', 'to.'], ["It's", 'just', 'the', 'way', 'to', 'get', 'used', 'to', 'others.'], ['What', 'are', 'you', 'two', 'doing?'], ['Tom', 'broke', 'his', 'men', 'and', 'he', 'kept', 'Mary.'], ['Tom', 'says', 'he', 'will', 'buy', 'a', 'gift', 'for', 'Mary.'], ['Would', 'you', 'mind', 'giving', 'me', 'yourself?'], ['Please', 'bring', 'me', 'an', 'ashtray.'], ["That's", 'very', 'good.'], ['Police', 'arrested', 'a', 'man.'], ['There', 'are', 'many', 'people', 'here.'], ["That's", 'enough.'], ['If', 'you', "don't", 'want', 'to', 'do', 'it,', 'you', "don't", 'have', 'to.'], ["You're", 'not', 'the', 'only', 'one', 'with', 'this', 'problem.'], ['This', 'is', 'a', 'sentence', 'of', 'mine.'], ['I', "didn't", 'understand', 'much', 'of', 'what', 'they', 'were', 'thinking.'], ["That's", 'exactly', 'what', 'I', 'wanted', 'to', 'see.'], ["I'm", 'going', 'to', 'make', 'you', 'saying', 'that', 'you', "can't", 'refuse.'], ["I'm", 'observant.'], ['You', "don't", 'smoke.'], ["I'm", 'sorry', 'about', 'last', 'night.'], ['I', 'hope', 'that', 'you', 'look', 'well.'], ['And', 'if', 'you', 'come', 'from?'], ["I'll", 'get', 'you', 'two', 'both.'], ['Thanks', 'for', 'helping', 'me.'], ['You', 'can', 'think', 'of', 'the', 'architect', 'paid', 'attention', 'to', 'detail.'], ['Tom', 'and', 'Mary', "don't", 'like', 'the', 'kind', 'of', 'food.'], ["I'll", 'give', 'up.'], ['She', 'asked', 'me', 'to', 'come', 'back', 'to', 'the', 'store.'], ['Tom', "isn't", 'in', 'a', 'good', 'mood', 'today.'], ['I', 'am', 'going.'], ['He', 'arrived', 'at', 'time.'], ['You', 'need', 'an', 'urgent', 'need', 'for', 'you.'], ['Do', 'you', 'want', 'me', 'to', 'buy', 'this', 'or', 'not?'], ["I've", 'never', 'seen', 'anything', 'like', 'that', 'before.'], ['How', 'many', 'cars', 'do', 'you', 'have?'], ['Pass', 'the', 'salt,', 'please.'], ['He', 'got', 'up', 'early', 'in', 'the', 'night.'], ['I', 'know', 'what', 'you', 'want', 'to', 'do.'], ['I', 'am', 'a', 'student.'], ["Don't", 'you', 'want', 'some', 'cake?'], ['He', 'can', 'speak', 'five', 'languages.'], ['They', 'live', 'downstairs.'], ['What', 'was', 'your', 'question?'], ['The', 'trip', 'will', 'take', 'place', 'five', 'days.'], ["I'd", 'rather', 'remain', 'anonymous.'], ['They', 'live', 'near', 'the', 'station.'], ['Are', 'you', 'going', 'to', 'have', 'a', 'restaurant', 'today?'], ['My', 'uncle', 'uncle', 'is', 'a', 'child.'], ['They', 'deserve', 'it.'], ['Tom', 'and', 'Mary', 'were', 'going', 'to', 'compromise.'], ['The', 'old', 'lady', 'sat', 'on', 'the', 'old', 'flag.'], ['Are', 'you', 'certain?'], ['Just', 'act', 'as', 'if', 'that', 'happened.'], ['I', 'really', 'hate', 'that.'], ['I', 'have', 'no', 'idea', 'what', 'is', 'the', 'other', 'idea', 'of', 'reason.'], ['I', 'paid', 'for', 'my', 'taxes.'], ['He', 'has', 'the', 'habit', 'of', 'being', 'a', 'lot', 'of', 'good.'], ['Several', 'men', 'were', 'trying', 'to', 'stop', 'the', 'debt.'], ['I', 'was', 'trying', 'to', 'be', 'ninety.'], ['Is', 'it', 'OK', 'to', 'happen?'], ['When', 'did', 'you', 'get', 'this?'], ['No', 'one', 'buys', 'in', 'this', 'store.'], ['I', 'figured', 'that', 'Tom', 'would', 'never', 'find', 'it.'], ['Are', 'you', 'seriously', 'thinking', 'about', 'not', 'going?'], ['Why', 'did', 'he', 'do', 'it?'], ['Kobe', 'is', 'the', 'first', 'one', 'of', 'the', 'first', 'one.'], ['Could', 'you', 'give', 'me', 'some', 'examples?'], ['Everyone', 'wants', 'it.'], ['I', 'hope', 'I', 'can', 'do', 'it.'], ['I', 'went', 'swimming', 'to', 'swim'], ['Tom', 'still', 'walks', 'to', 'school.'], ['I', 'advised', 'him', 'that', 'he', 'is', 'having', 'a', 'bad', 'sleep.'], ["It's", 'impossible', 'to', 'describe.'], ['I', 'hope', 'you', 'love', 'you.'], ['I', 'have', 'a', 'gift', 'for', 'you.'], ['In', 'a', 'great', 'deal', 'of', 'what', 'you', 'have', 'is', 'to', 'be', 'a', 'great', 'problem.'], ['He', 'must', 'have', 'a', 'country.'], ['Why', "don't", 'you', 'stop', 'with', 'this', 'kind', 'of', 'eyes?'], ['I', 'missed', 'the', 'bill.'], ['If', 'I', 'had', 'told', 'you', 'before,', 'I', 'would', 'have', 'told', 'you.'], ['Tom', 'is', 'old', 'very', 'old', 'age.'], ['I', 'am', 'not', 'this', 'year.'], ['He', 'never', 'fails', 'to', 'his', 'mother.'], ['The', 'people', 'people', 'had', 'been', 'killed.'], ['I', "don't", 'know', 'much', 'about', 'you.'], ['Is', 'taking', 'a', 'map', 'for', 'the', 'ability', 'to', 'pay', 'a', 'favor?'], ['Half', 'the', 'students', 'were', 'absent.'], ['What', 'are', 'the', 'coffee', 'of', 'the', 'fruit', 'of', 'their', 'products', 'of', 'free?'], ['The', 'red', 'lines', 'on', 'the', 'map', 'represent', 'goods.'], ['She', 'was', 'determined', 'by', 'walking', 'by', 'walking', 'by', 'the', 'school.'], ['Do', 'you', 'think', 'that', "you're", 'going', 'to', 'fight?'], ["You're", 'not', 'that', 'for?'], ['We', 'must', 'protect', 'children.'], ["There's", 'no', 'reason', 'to', 'worry', 'about', 'the', 'future.'], ['You', "weren't", 'serious,', 'were', 'you?'], ['Do', 'you', 'always', 'want', 'a', 'lot?'], ['We', 'should', 'be', 'able', 'to', 'help', 'them.'], ['Everybody', 'loves', 'her.'], ['Did', 'you', 'take', 'the', 'message?'], ['In', 'the', 'ability', 'he', 'found', 'out', 'of', 'the', 'growth', 'he', 'found', 'out', 'of', 'paper.'], ["I'm", 'done', 'with', 'it.'], ['There', 'is', 'nothing', 'more', 'important', 'in', 'the', 'island', 'of', 'anything', 'in', 'another', 'people.'], ['Can', 'we', 'not', 'talk', 'about', 'it', 'for', 'a', 'lot?'], ['He', 'bought', 'a', 'new', 'camera.'], ['His', 'family', 'is', 'not', 'that', 'he', 'is', 'not', 'used', 'to', 'be', 'used', 'for', 'English', 'with', 'class.'], ['He', 'is', 'trying', 'to', 'listen', 'to', 'him.'], ['Please', 'try', 'to', 'try', 'the', 'again.'], ['You', 'promised', 'me', 'that', "you'd", 'help', 'you.'], ['My', 'girlfriend', 'is', 'out.'], ["That's", 'someone', 'safe.'], ['You', "don't", 'understand', 'how', 'worried', 'I', 'was', 'about', 'you.'], ['We', 'need', 'to', 'get', 'our', 'head', 'to', 'reduce', 'our', 'tents', 'and', 'must', 'do', 'is', 'to', 'avoid', 'our', 'head', 'to', 'get', 'our', 'head', 'against', 'the', 'environment'], ["You're", 'probably', 'too', 'young', 'to', 'understand', "what's", 'happening.'], ["You're", 'taller', 'than', 'me.'], ['They', 'said', 'they', 'did', 'the', 'decision', 'of', 'final.'], ['I', 'know', 'this', 'is', 'strange.'], ['The', 'kids', 'are', 'looking', 'for', 'things.'], ['We', 'want', 'to', 'go', 'to', 'the', 'beach.'], ['The', 'milk', 'smiled.'], ['I', 'had', 'to', 'catch', 'a', 'cold.'], ['His', 'name', 'is', 'fun.'], ["You're", 'very', 'understanding.'], ['I', 'knew', 'we', 'were', 'going', 'to', 'meet', 'us', 'where', 'we', 'met', 'you.'], ['Please', 'sit', 'down.'], ['She', 'has', 'no', 'answer', 'from', 'him.'], ['All', 'there', 'is', 'there', 'is', 'mine.'], ['I', 'just', 'want', 'you', 'to', 'be', 'OK.'], ['We', 'agree.'], ["It's", 'five.'], ['I', 'just', 'want', 'to', 'know', 'why', 'you', 'brought', 'me', 'here.'], ["You'd", 'be', 'the', 'one', 'to', 'know.'], ['I', 'saw', 'a', 'first', 'time', 'for', 'the', 'first', 'one.'], ['How', 'did', 'you', 'find', 'out?'], ['The', 'box', 'is', 'amazing.'], ['He', 'left', 'his', 'business', 'and', 'left', 'his', 'left.'], ['What', 'happened', 'to', 'this', 'time?'], ['You', "can't", 'handle', 'this', 'alone.'], ['I', "don't", 'see', 'all', 'the', 'reason', 'these', 'things.'], ['The', 'prisoners', 'had', 'tried', 'to', 'escape.'], ['Tom', 'heard', 'some', 'gunshots.'], ['Do', 'you', 'enjoy', 'studying?'], ["That's", 'all', 'that', 'matters.'], ["You've", 'been', 'warned.'], ['How', 'subject', 'to', 'meet', 'you.'], ['Look', 'what', 'I', 'saw.'], ['There', 'are', 'cookies', 'in', 'the', 'oven.'], ['I', 'wish', 'you', 'had', 'come', 'with', 'us.'], ['How', 'long', 'have', 'you', 'been', 'dating?'], ['Show', 'me', 'your', 'evidence.'], ["That's", 'a', 'good', 'idea', 'to', 'do', 'that', 'job.'], ['I', 'can', 'deal', 'with', 'that', 'immediately.'], ['This', 'time', 'of', 'time', 'can', 'stay', 'inside.'], ['She', 'advised', 'him', 'to', 'take', 'the', 'money.'], ['I', "don't", 'know', "what's", 'going', 'to', 'happen.'], ['Do', 'you', 'know', 'what', 'he', 'said?'], ['To', 'help', 'their', 'students', 'is', 'all', 'fat.'], ['Come', 'and', 'see', 'me.'], ['I', "didn't", 'know', 'you', 'were', 'awake.'], ['Do', 'you', 'think', 'this', 'work', 'done', 'all', 'the', 'job?'], ["You're", 'very', 'understanding.'], ["They're", 'going', 'to', 'help', 'you.'], ['Come', 'here', 'quickly.'], ['Spain', 'was', 'held', 'in', 'the', 'heavy', 'rain', 'for', 'speeding.'], ['I', 'have', 'two', 'daughters', 'and', 'two', 'cousins.'], ['Please', 'do', 'it', 'please.'], ['I', 'wrote', 'to', 'write', 'to', 'your', 'place.'], ['I', 'want', 'to', 'take', 'advantage', 'of', 'this', 'place.'], ['Are', 'you', 'the', 'message?'], ['We', 'should', 'keep', 'it', 'a', 'little', 'time', 'on', 'the', 'money.'], ['The', 'milk', 'is', 'in', 'the', 'refrigerator.'], ['We', 'took', 'a', 'little', 'short', 'wine.'], ['Anyone', 'needs', 'to', 'be', 'excused', 'for', 'a', 'hard', 'day.'], ['We', 'saw', 'together', 'keep', 'ourselves.'], ['What', 'do', 'we', 'have', 'to', 'do', 'if', 'it', 'rains?'], ['I', 'used', 'to', 'be', 'good', 'at', 'all.'], ['Contact', 'this', 'if', 'is', 'that', 'if', 'he', 'is', 'lazy.'], ['My', 'sister', 'stayed', 'home', 'with', 'her', 'last', 'night.'], ['She', 'is', 'two', 'with', 'two', 'poems.'], ['I', 'like', 'this', 'riddle?'], ['I', "didn't", 'realize', 'you', 'were', 'awake.'], ["What's", 'all', 'this?'], ['How', 'do', 'you', 'say', 'goodbye?'], ['He', 'wrote', 'the', 'piano', 'every', 'day.'], ['We', 'all', 'have', 'all', 'right?'], ["That's", 'not', 'a', 'light.'], ["That's", 'his', 'favorite', 'one.'], ['The', 'promised', 'advised', 'him', 'to', 'sign', 'up', 'with.'], ['We', "aren't", 'in', 'Boston.'], ['Do', 'you', 'have', 'a', 'tattoo?'], ["Let's", 'visit', 'what', 'happens', 'to', 'today.'], ['Your', 'friends', 'are', 'late.'], ['Tom', 'thinks', 'that', 'Mary', 'is', 'at', 'least', 'usually', 'at', 'least', 'live', 'at', 'least', 'now.'], ['I', "shouldn't", 'have', 'paid', 'me.'], ['Tom', 'thinks', "it's", 'not', 'a', 'good', 'idea.'], ['It', 'was', 'mayor.'], ['I', 'want', 'you', 'to', 'go', 'to', 'Boston', 'tomorrow.'], ['Were', 'you', 'excited?'], ['He', 'did', 'it', 'again.'], ['You', 'have', 'no', 'evidence.'], ['Let', 'me', 'take', 'your', 'coat.'], ['He', 'has', 'two', 'cats.'], ['I', 'figured', 'to', 'have', 'some', 'more', 'money.'], ['Is', 'the', 'street', 'in', 'the', 'city.'], ['Would', 'you', 'like', 'to', 'be', 'with', 'me?'], ['How', 'long', 'did', 'you', 'stay?'], ["I'll", 'teach', 'you', 'how', 'to', 'Tom.'], ['I', 'am', 'not', 'amused.'], ['I', 'would', 'like', 'to', 'travel', 'around', 'the', 'world.'], ['What', 'happened', 'to', 'what', 'happened?'], ['I', 'just', 'got', 'being', 'promoted.'], ['I', 'met', 'a', 'tall', 'person', 'to', 'live', 'in', 'the', 'sea.'], ['You', 'look', 'very', 'great.'], ['This', 'movie', 'is', 'really', 'scary.'], ['My', 'mother', 'gets', 'up', 'early', 'every', 'morning.'], ['This', 'job', 'has', 'given', 'me', 'a', 'lot', 'of', 'fun.'], ['To', 'do', 'it', 'whether', 'Tom', 'or', 'not.'], ['You', "don't", 'really', 'like', 'beef.'], ['Tom', 'called', 'that', 'Mary', 'was', 'busy.'], ['I', "didn't", 'want', 'you', 'to', 'miss', 'the', 'bus.'], ['Tom', 'is', 'busy', 'preparing', 'for', 'the', 'trip.'], ['This', 'uncle', 'has', 'a', 'tennis', 'game.'], ['You', 'must', 'not', 'pay', 'for', 'the', 'questions.'], ['Nothing', 'ever', 'make', 'me', 'happier', 'than', 'to', 'see', 'you', 'happy.'], ['Whose', 'is', 'this', 'room?'], ['Pick', 'a', 'deadline.'], ["Aren't", 'you', 'coming', 'to', 'the', 'party', 'tomorrow?'], ['I', 'may', 'have', 'broken', 'her', 'feelings.'], ['If', 'I', 'were', 'you,', 'I', 'would', 'follow', 'his', 'advice.'], ['Are', 'you', 'alone', 'here?'], ['Can', 'you', 'identify', 'the', 'man', 'who', 'gave', 'the', 'picture?'], ["We'll", 'be', 'this', 'on', 'this', 'time.'], ["I've", 'never', 'heard', 'of', 'you.'], ['She', 'approached', 'him', 'a', 'quiet', 'smile', 'of', 'recognition.'], ['We', 'get', 'them.'], ['Night', 'people', 'to', 'get', 'it', 'out', 'of', 'the', 'hour.'], ['What', 'do', 'we', 'have', 'to', 'do', 'next', 'Sunday?'], ['Stop', 'acting', 'like', 'a', 'girl.'], ['I', 'have', 'a', 'sharp', 'store', 'in', 'my', 'bedroom.'], ['It', 'was', 'a', 'joke.'], ['Can', 'you', 'make', 'a', 'salad?'], ['The', 'park', 'is', 'not', 'far', 'from', 'here.'], ['She', 'cooks', 'well.'], ['I', 'love', 'to', 'do', 'some', 'jokes.'], ['When', 'I', 'go', 'to', 'bed', 'at', 'least', 'just', 'the', 'job', 'out', 'of', 'my', 'car.'], ['I', 'never', 'forgive', 'that', 'if', 'you', 'ever', 'buy', 'it.'], ["I'm", 'actually', 'gotten', 'used', 'to', 'it.'], ['Drop', 'your', 'weapons!'], ["I'll", 'need', 'you', 'back.'], ['I', 'have', 'good', 'news', 'for', 'you.'], ['Is', 'the', 'name', 'of', 'the', 'bottom', 'of', 'your', 'name?'], ['Does', 'Tom', 'have', 'a', 'license?'], ['Tom', 'said', 'he', 'would', 'like', 'to', 'visit', 'Boston.'], ['I', 'mistook', 'him', 'for', 'his', 'brother.'], ['We', 'were', 'just', 'kidding'], ['He', 'held', 'for', 'an', 'apple', 'on', 'his', 'room.'], ['School', 'begins', 'at', 'eight-thirty.'], ['My', 'father', 'drives', 'very', 'well.'], ['I', "didn't", 'know', 'Tom', 'was', "Mary's", 'grandson.'], ["You're", 'in', 'the', 'phone.'], ['I', "can't", 'remember', 'the', 'way', 'to', 'stop', 'the', 'window?'], ["I'm", 'trying', 'something', 'new.'], ['We', 'finally', 'did', 'it.'], ['You', "can't", 'bury', 'the', 'truth.'], ["I'm", 'glad', 'I', 'invited', 'you.'], ['The', 'house', 'needs', 'to', 'be', 'haunted.'], ['The', 'more', 'we', 'grow,', 'the', 'air', 'is', 'growing', 'on.'], ['He', 'banged', 'his', 'head.'], ['Tom', 'is', 'playing', 'the', 'violin?'], ['I', 'can', 'hardly', 'remember', 'what', 'was', 'to', 'me.'], ['They', 'have', 'to', 'drink.'], ['I', 'understand', 'your', 'friendship', 'perfectly.'], ['This', 'is', 'the', 'weather.'], ['Did', 'you', 'know', 'Tom?'], ['What', 'do', 'you', 'get', 'out', 'of', 'the', 'sign', 'in', 'a', 'movie?'], ["I'll", 'protect', 'you.'], ["I'm", 'afraid', 'that', 'you', 'have', 'a', 'bad', 'number.'], ['He', "couldn't", 'answer', 'the', 'question.'], ['A', 'monument', 'was', 'erected', 'in', 'memory', 'of', 'the', 'deceased.'], ['I', 'have', 'a', 'pair', 'of', 'pair', 'of', 'socks.'], ["That's", 'not', 'a', 'no?'], ['I', "don't", 'know', 'anymore.'], ['Everyone', 'is', 'tired.'], ['What', 'did', 'Tom', 'do', 'today?'], ["Let's", 'play', 'the', 'top', 'of', 'the', 'land.'], ["He's", 'not', 'talking', 'about', 'you.'], ['Tom', 'and', 'Mary', 'loved', 'him.'], ['Tell', 'Tom', 'what', 'he', 'found', 'on', 'his', 'way', 'on', 'what', 'I', 'was', 'on', 'the', 'envelope.'], ['He', "doesn't", 'have', 'kids.'], ['She', 'is', 'working', 'on', 'the', 'light', 'for', 'practice.'], ['I', "haven't", 'seen', 'him', 'for', 'years.'], ['He', 'learned', 'how', 'to', 'swim.'], ['Do', 'you', 'want', 'to', 'get', 'a', 'ride?'], ['I', 'dream', 'of', 'you', 'all', 'the', 'time.'], ['The', 'fog', 'fire', 'next', 'to', 'a', 'distance.'], ['I', 'miss', 'you.'], ['I', 'feel', 'like', 'doing', 'that', 'with', 'Tom.'], ['You', 'must', 'give', 'up', 'smoking.'], ['I', 'talked', 'to', 'my', 'parents', 'to', 'get', 'out', 'of', 'my', 'patience.'], ['I', 'am', 'in', 'touch', 'with', 'the', 'cat.'], ['Stop', 'beating', 'right', 'and', 'I', 'believe', 'what', 'I', 'said.'], ['He', 'became', 'famous', 'in', 'the', 'world.'], ['This', 'is', 'my', 'book.'], ['I', "don't", 'want', 'any', 'of', 'your', 'advice.'], ['This', 'work', 'is', 'difficult', 'for', 'us.'], ["We're", 'very', 'good', 'at', 'business.'], ['I', 'wrote', 'a', 'few', 'minutes', 'in', 'school.'], ['I', 'hear', 'a', 'phone', 'number.'], ['I', 'have', 'a', 'few', 'more', 'to', 'do.'], ['I', 'spend', 'a', 'lot', 'of', 'time', 'in', 'college.'], ['I', "don't", 'see', 'you', 'two', 'doors', 'out.'], ["Let's", 'put', 'it', 'in', 'the', 'church', 'and', 'let', 'him', 'into', 'the', 'pond.'], ['I', 'must', 'run.'], ['Tom', 'folded', 'the', 'drinks.'], ['The', 'cows', 'cats', 'are', 'completely', 'completely', 'apples', 'like', 'hotcakes.'], ["I'm", 'ruthless.'], ['Tom', 'got', 'shot', 'on', 'the', 'hurry.'], ["I'm", 'ready', 'to', 'go.'], ['You', 'should', 'learn', 'your', 'mistakes.'], ['I', 'hope', 'that', "you'll", 'be', 'able', 'to', 'walk', 'up', 'on', 'the', 'trip.'], ['Will', 'you', 'have', 'a', 'minute,'], ['What', 'do', 'you', 'think', "it's", 'impossible?'], ['Have', 'you', 'ever', 'ridden', 'a', 'TV?'], ['Both', 'of', 'them', 'are', 'two', 'years', 'old.'], ['The', 'soup', 'is', 'ready,', 'but', 'not', 'to', 'smoke,', 'I', "don't", 'smoke?'], ['Tom', 'is', 'a', 'great', 'photographer.'], ["You're", 'the', 'only', 'woman', 'I', 'really', 'think', 'so.'], ['Tom', 'is', 'a', 'very', 'shy', 'boy.'], ['How', 'does', 'it', 'ever', 'want', 'me', 'to', 'buy', 'any', 'of?'], ['You', 'almost', 'died.'], ["I'm", 'not', 'telling', 'you', 'my', 'car.'], ['He', 'was', 'the', 'first', 'person', 'I', 'was', 'looking', 'for', 'first', 'to', 'see', 'the', 'first', 'one.'], ["You're", 'not', 'the', 'first.'], ['We', 'miss', 'a', 'lot', 'of', 'rain', 'in', 'June.'], ["I'm", 'incredibly', 'tired.'], ['He', 'has', 'a', 'great', 'musician.'], ['Let', 'me', 'introduce', 'you', 'to', 'a', 'rest', 'of', 'the', 'team.'], ["It's", 'smarter', 'than', 'me.'], ['Can', 'you', 'call', 'me', 'by', 'the', 'first', 'time', 'yesterday?'], ["I'll", 'take', 'the', 'drinks.'], ['I', 'may', 'not', 'have', 'enough', 'time.'], ['Look', 'at', 'the', 'sun', 'off.'], ['We', 'saved', 'the', 'future', 'of', 'several', 'water.'], ['Tom', 'is', 'in', 'position.'], ['I', 'want', 'you', 'to', 'go', 'to', 'Boston', 'with', 'Tom.'], ['Sorry,', 'I', "didn't", 'mean', 'to', 'snap', 'with', 'you.'], ['My', 'dream', 'is', 'a', 'bit', 'of', 'wine.'], ["I'd", 'like', 'to', 'buy', 'a', 'black', 'eyes', 'like', 'eyes.'], ['I', 'think', 'this', "isn't", 'enough.'], ['I', 'was', 'here', 'when', 'you', 'were', 'a', 'friend.'], ['I', 'had', 'no', 'one', 'here', 'to', 'happen', 'here', 'so', 'many', 'people', 'here', 'in', 'person.'], ['Do', 'you', 'have', 'something', 'for', 'me?'], ['Your', 'father', 'was', 'right.'], ['My', 'children', 'have', 'a', 'couple', 'of', 'shoes.'], ['I', 'think', 'you', 'have', 'enough', 'money', 'enough', 'to', 'buy', 'the', 'money', 'you', 'need.'], ['What', 'did', 'you', 'do', 'in', 'yourself?'], ['I', 'want', 'you', 'to', 'be', 'my', 'friend.'], ['I', "wasn't", 'afraid', 'anyway.'], ['Why', "don't", 'you', 'have', 'a', 'boyfriend?'], ['This', 'is', 'a', 'perfect', 'place.'], ["Here's", 'a', 'list', 'of', 'people', 'you', 'want', 'to', 'eat.'], ['The', 'girl', 'told', 'him', 'that', 'he', 'heard', 'a', 'girl', 'dream.'], ['Why', 'do', 'you', 'want', 'me', 'to', 'make', 'some', 'sleep?'], ['I', 'was', 'alone', 'in', 'the', 'classroom.'], ['Tom', 'left', 'something', 'in', 'his', 'left', 'hand.'], ["I'm", 'sure', 'that', 'I', 'knew', 'anybody', 'else', 'that', 'I', 'may', 'have', 'anything', 'that', 'I', 'want', 'to', 'think', 'of', 'that.'], ['Your', 'shirt', 'is', 'sleeping.'], ["We're", 'good', 'at', 'the', 'decision.'], ['A', 'big', 'fire', 'was', 'in', 'the', 'gift.'], ['Have', 'you', 'told', 'what', 'I', 'told', 'you?'], ["There's", 'no', 'other', 'way', 'here.'], ["Don't", 'tell', 'me', 'what', 'my', 'job.'], ['She', 'lives', 'not', 'to', 'live', 'in', 'a', 'town.'], ['Tom', 'inherited', 'himself', 'as', 'a', 'great', 'test', 'of', 'his', 'beauty.'], ['Tom', 'ate', 'an', 'apple', 'for', 'cancer.'], ['It', 'looks', 'like', "it's", 'going', 'to', 'rain.'], ["Don't", 'forget', 'the', 'milk.'], ['That', 'may', 'have', 'may', 'be', 'found.'], ["Don't", 'go', 'in', 'the', 'room.'], ['I', 'had', 'to', 'apologize', 'on', 'my', 'appointment.'], ['What', 'a', 'waste', 'of', 'tea.'], ['I', "don't", 'understand', 'why', 'you', 'want', 'to.'], ['Your', 'mother', 'loves', 'me.'], ['Your', 'ideas', 'are', 'just', 'nothing.'], ['My', 'college', 'is', 'used', 'to', 'sign', 'a', 'sign', 'on', 'the', 'foot.'], ['I', 'know', 'how', 'busy', "you've", 'been.'], ['He', 'says.', 'everything', 'I', 'say.'], ['While', 'we', 'can', 'reach', 'the', 'water', 'with', 'air.'], ['Do', 'you', 'have', 'to', 'do', 'this', 'evening?'], ['In', 'Japan,', 'the', 'do,', "don't", 'give', 'up.'], ["Don't", 'open', 'the', 'box', 'yet.'], ['I', 'had', 'to', 'get', 'bitten', 'under', 'the', 'fence.'], ['How', 'much', 'do', 'you', 'pay', 'for', 'the', 'pay', 'for', 'the', 'bill?'], ['Take', 'it', 'on.'], ['I', 'want', 'you', 'to', 'stop', 'this.'], ['I', 'want', 'to', 'make', 'fun', 'of', 'the', 'problem.'], ['It', 'would', 'be', 'better', 'than', 'this.'], ['Do', 'you', 'want', 'another', 'one', 'of', 'these?'], ["I'd", 'never', 'do', 'such', 'a', 'thing.'], ['This', 'is', 'my', 'bicycle.'], ['May', 'I', 'count', 'on', 'you?'], ['Have', 'you', 'seen', 'before?'], ['Who', 'cares'], ['There', 'is', 'no', 'problem.'], ['She', 'has', 'no', 'hair', 'that', 'she', 'quit', 'out', 'of', 'new', 'clothes.'], ['He', 'felt', 'his', 'head.'], ['I', "don't", 'have', 'a', 'gun.'], ['I', 'hope', 'you', 'have', 'insurance.'], ['Do', 'you', 'really', 'want', 'a', 'car', 'now?'], ['My', 'uncle', 'can', 'fix', 'it.'], ['When', 'he', 'was', 'almost', 'half', 'the', 'meeting', 'almost', 'met', 'almost', 'before.'], ['She', 'cried', 'all', 'the', 'night.'], ["There's", 'something', 'you', 'need', 'to', 'know.'], ['Who', 'threw', 'a', 'dog', 'to', 'my', 'dog?'], ["Don't", 'you', 'see', "what's", 'happened?'], ["That's", 'what', 'I', 'do.'], ['Do', 'you', 'want', 'me', 'to', 'scare', 'me?'], ['Tom', 'knew', 'everything.'], ['People', 'are', 'still', 'living.'], ['It', 'was', 'one', 'of', 'the', 'best', 'mistakes', 'in', 'my', 'life.'], ['They', 'invited', 'me', 'to', 'play', 'cards.'], ['They', 'will', 'have', 'the', 'system.'], ['I', 'used', 'to', 'keep', 'my', 'dirty', 'hand.'], ['I', 'just', 'got', 'being', 'promoted.'], ['I', 'have', 'nothing.'], ['I', 'saw', 'the', 'last', 'one.'], ['I', 'know', 'Tom', 'is', 'his', 'favorite', 'abroad.'], ['I', 'am', 'able', 'to', 'stop', 'driving', 'the', 'guitar.'], ["That's", 'what', 'I', 'did.'], ['I', 'think', 'you', 'should', 'see', 'a', 'doctor.'], ["That's", 'just', 'weird.'], ['Does', 'Tom', 'put', 'sugar', 'in', 'his', 'tea?'], ['Bring', 'me', 'happy.'], ['I', 'need', 'to', 'focus', 'on', 'this', 'matter.'], ['I', 'want', 'to', 'apologize', 'to', 'you', 'a', 'little', 'student,', 'but', 'I', 'have', 'one', 'of', 'my', 'girlfriend.'], ['I', 'know', "you're", 'not', 'still', 'that.'], ['The', 'last', 'thing', 'you', 'wanted', 'to', 'do', 'is', 'hurt', 'the', 'last', 'one', 'to', 'you.'], ['I', 'do', 'the', 'teacher', 'in', 'my', 'cat.'], ['No', 'one', 'wants', 'to', 'play', 'chess', 'with', 'me.'], ["You've", 'given', 'me', 'enough', 'money.'], ['I', 'went', 'to', 'see', 'a', 'movie', 'with', 'him', 'to', 'school.'], ["You're", 'not', 'a', 'bodybuilder,', "aren't", 'you?'], ['You', "can't", 'drink', 'why', 'you', 'can', 'stay', 'here.'], ['English', 'is', 'the', 'hard', 'people', 'to', 'learn', 'the', 'universal', 'language', 'in', 'the', 'environment.'], ["Tom's", 'boss', 'was', 'a', 'mistake.'], ['I', "wasn't", 'talking', 'about', 'you.'], ['It', 'was', 'only', 'the', 'whole', 'restaurant', 'I', 'met', 'him.'], ['We', "haven't", 'told', 'you', 'how', 'to', 'do', 'it.'], ['Help', 'yourself', 'here.'], ['I', 'like', 'listening', 'to', 'classical', 'music.'], ['He', 'jumped', 'on', 'the', 'door.'], ['I', 'slept', 'very', 'well', 'last', 'night.'], ['She', 'works', 'working', 'on', 'this', 'mess.'], ['What', 'you', 'need', 'is', 'a', 'friend.'], ['They', 'walked', 'upstairs.'], ["Where's", 'the', 'nearest', 'restaurant', 'at', 'the', 'most?'], ['I', 'wonder', 'why', 'Tom', 'is', 'so', 'disappointed.'], ['I', "don't", 'have', 'to', 'walk', 'my', 'wallet.'], ['I', 'feel', 'a', 'little', 'better.'], ['You', "don't", 'have', 'to', 'worry.'], ['Now', 'need', 'a', 'drink.'], ['They', 'were', 'not', 'accusing', 'anything.'], ['Did', 'I', 'ask', 'you?'], ['Go', 'to', 'me', 'a', 'glass', 'of', 'milk.'], ["You're", 'a', 'selfish.'], ['This', 'bus', 'leaves', 'for', 'the', 'bus', 'station.'], ['I', 'love', 'Christmas', 'for', 'my', 'family.'], ['I', 'am', 'sure', 'about', 'the', 'date', 'of', 'the', 'bad', 'policy.'], ['Can', 'you', 'imagine', 'what', 'our', 'idea', 'would', 'be', 'interested', 'in', 'our', 'life?'], ['You', "don't", 'need', 'to', 'hurry.'], ['He', 'is', 'always', 'staying', 'at', 'home', 'at', 'night.'], ['Tom', 'drank', 'a', 'glass', 'of', 'water.'], ['I', "didn't", 'want', 'to', 'have', 'any', 'problems.'], ['They', 'were', 'familiar', 'with', 'this', 'song.'], ['Would', 'you', 'like', 'to', 'switch', 'seats?'], ['When', 'were', 'you', 'born?'], ['Tom', 'used', 'to', 'be', 'as', 'if', 'Mary', 'was', 'as', 'if', 'he', 'was', 'him.'], ['You', 'have', 'to', 'be', 'here', 'at', '2:30', 'tomorrow', 'afternoon.'], ['I', "don't", 'have', 'a', 'pencil.'], ["I'll", 'make', 'you', 'happy.'], ['You', 'need', 'to', 'be', 'prepared.'], ['Both', 'boys', 'were', 'rescued.'], ['He', 'begged', 'me', 'a', 'list.'], ['You', 'miss', 'my', 'best', 'lot', 'better', 'than', 'I', 'do.'], ['I', 'watch', 'a', 'lot', 'of', 'mistakes.'], ['Give', 'me', 'a', 'little', 'money.'], ['You', 'tried.'], ["I'd", 'rather', 'do', 'without', 'your', 'help.'], ['Keep', 'the', 'window', 'to', 'the', 'door.'], ['I', 'will', 'call', 'you', 'a', 'cab?'], ["We're", 'not', 'anything.'], ["I'm", 'telling', 'you', 'the', 'truth.'], ["You're", 'not', 'my', 'friend.'], ['I', 'just', 'thought', 'you', 'might', 'want', 'to', 'go', 'skiing', 'with', 'us.'], ['Most', 'of', 'the', 'story', 'had', 'all', 'wanted', 'to', 'be', 'seen'], ['Grammar', 'is', 'a', 'very', 'interesting', 'thing.'], ['Your', 'phone', 'is', 'looking', 'with', 'you.'], ['Well,', 'do', 'you', 'really', 'have', 'to', 'do', 'this?'], ["I'm", 'doing', 'well.'], ['I', 'never', 'imagined', 'such', 'a', 'thing.'], ['Americans', 'are', 'not', 'comfortable', 'in', 'the', 'United', 'States.'], ['I', 'stopped', 'laughing.'], ['I', "didn't", 'tell', 'Tom', 'anything.'], ['Tom', 'lay', 'back', 'to', 'his', 'son', 'for', 'death', 'to', 'his', 'sister.'], ["Don't", 'push', 'it.'], ['I', 'was', 'so', 'sorry', 'that', 'I', "couldn't", 'fall', 'asleep.'], ['Obviously,', 'you', 'volunteered.'], ["We're", 'going', 'to', 'have', 'to', 'do', 'what', 'I', 'should', 'have', 'happened.'], ['This', 'is', 'an', 'stupid.'], ['More', 'than', '40', 'percent', 'of', 'students', 'go', 'back', 'to', 'university.'], ['I', "didn't", 'ask', 'your', 'advice.'], ['Tom', 'told', 'me', 'he', 'had', 'gotten', 'sleeping.'], ['Tom', 'is', 'the', 'only', 'one', 'who', 'told', 'you', 'about', 'the', 'city.'], ['You', 'seem', 'to', 'be', 'in', 'a', 'good', 'mood', 'today.'], ['I', 'brought', 'him', 'in', 'the', 'danger.'], ['Did', 'I', 'prove', 'anything?'], ['What', 'does', 'that', 'matter?'], ['A', 'carbon', 'is', 'covered', 'with', 'air.'], ['I', 'think', "I've", 'had', 'enough', 'coffee', 'better', 'than', 'eat', 'rice?'], ["I'm", 'starved.'], ['Ask', 'me', 'another', 'time.'], ['The', 'boys', 'hate', 'into', 'Japan', 'in', 'the', 'face.'], ['Tom', 'looks', 'this', 'morning.'], ['You', 'must', 'be', 'sleepy.'], ['She', 'voted', 'that', 'their', 'seat', 'before', 'she', 'was', 'their', 'cold.'], ['The', 'weather', 'is', 'very', 'cold', 'to', 'study.'], ["I'm", 'just', 'watching', 'TV.'], ['I', 'thought', 'of', 'them.'], ['Tom', 'is', 'a', 'very', 'good', 'friend.'], ['You', 'need', 'to', 'protect', 'you.'], ['The', 'war', 'has', 'been', 'living', 'with', 'his', 'life.'], ["I'm", 'not', 'so', 'hungry.'], ['You', 'know', 'what', 'you', 'are', 'in', 'good', 'when', 'you', 'are', 'good', 'enough.'], ['I', 'have', 'plenty', 'of', 'things,', 'so', 'I', 'still', 'have', 'read', 'it.'], ['I', 'seldom', 'drink', 'coffee', 'sometimes.'], ['Are', 'you', 'going', 'to', 'be', 'tired?'], ['Since', 'it', 'had', 'a', 'room,', 'in', 'the', 'garden', 'I', 'had', 'a', 'lawyer', 'in', 'the', 'country.'], ['May', 'I', 'ask', 'why', 'this', 'is,', 'do', 'that', 'so', 'much?'], ['I', 'tried', 'to', 'save', 'you.'], ['You', 'have', 'good', 'use', 'of', 'music.'], ['He', 'may', 'not', 'be', 'trusted.'], ['He', 'ran', 'away', 'the', 'way.'], ['He', 'got', 'it.'], ["What's", 'the', 'strangest', 'thing', "you've", 'ever', 'done?'], ['Tom', 'has', 'a', 'broken', 'field.'], ['The', 'air', 'of', 'the', 'earthquake', 'have', 'made', 'of', 'four', 'houses', 'in', 'Spain.'], ['Could', 'you', 'come', 'to', 'the', 'park', 'next', 'Saturday?'], ['There', 'is', 'two', 'two', 'days', 'left.'], ['Quit', 'behaving', 'like', 'a', 'kid.'], ['I', "can't", 'believe', 'I', 'kissed', 'you.'], ['We', 'are', 'boiling', 'water.'], ['Seen', 'from', 'a', 'large', 'company', 'is', 'a', 'great', 'company', 'from', 'this', 'rock.'], ['If', 'I', 'were', 'you,', "I'd", 'be', 'more', 'careful.'], ['I', 'never', 'used', 'to', 'do', 'what', 'I', 'used', 'to', 'do', 'this', 'kind', 'of', 'job', 'with', 'my', 'age.'], ['She', 'was', 'advised', 'by', 'him', 'to', 'pay', 'up.'], ["Don't", 'worry', 'about', 'me.'], ['I', 'just', 'finished', 'lunch.'], ['Where', 'is', 'the', 'elevator?'], ["It's", 'up', 'to', 'you!'], ["There's", 'a', 'hot', 'bath', 'at', 'the', 'park.'], ["They're", 'waiting', 'for', 'you.'], ['I', 'wonder', 'about', 'those', 'things.'], ['It', 'is', 'a', 'better', 'way', 'of', 'being', 'a', 'doctor.'], ['The', 'Prime', "Minister's", 'was', 'determined', 'to', 'get', 'the', 'head', 'of', 'the', 'crime', 'to', 'get', 'lost.'], ['May', 'I', 'use', 'your', 'use', 'today?'], ['I', 'have', 'a', 'old', 'car.'], ['Our', 'teacher', 'is', 'to', 'be', 'young', 'for', 'his', 'age.'], ['I', "can't", 'believe', 'I', 'listened', 'to', 'you.'], ['She', 'trusted', 'you.'], ["I'd", 'like', 'to', 'discuss', 'this', 'with', 'your', 'boss.'], ['I', "can't", 'do', 'this', 'work', 'alone.'], ['I', 'have', 'a', 'tight', 'schedule', 'for', 'New', 'York', 'tomorrow.'], ['I', "didn't", 'know', 'you', 'needed', 'to', 'do', 'that.'], ['If', 'you', "don't", 'want', 'this,', "I'll", 'eat', 'it.'], ['I', 'need', 'to', 'go', 'home.'], ['He', 'earns', 'his', 'life', 'in', 'a', 'car.'], ['That', 'is', 'ridiculous.'], ['He', 'likes', 'to', 'watch', 'baseball', 'games', 'from', 'watching', 'television.'], ['How', 'do', 'you', 'grow', 'up', 'to', 'your', 'website?'], ['Love', 'needs', 'to', 'be', 'seen.'], ['He', 'had', 'several', 'ways.'], ['They', 'want', 'to', 'do', 'this', 'right.'], ['The', 'plants', 'are', 'missing.'], ['Once', 'he', 'is', 'up', 'for', 'him.'], ['I', 'made', 'my', 'job.'], ["What's", 'your', 'favorite', 'team?'], ['She', 'excused', 'herself', 'for', 'being', 'late.'], ['Tom', 'eats', 'like', 'a', 'pig.'], ['"Will', 'you', 'have', 'a', 'lift?'], ['Tom', 'asked', 'Mary', 'to', 'meet', 'here.'], ['This', 'is', 'yours,', "isn't", 'it?'], ['Where', 'do', 'you', 'think', "we're", 'going', 'from?'], ['How', 'do', 'you', "don't", 'know', 'how', 'much', 'you', 'have', 'to', 'spend', 'this', 'time?'], ['Wait', 'till', 'till', 'he', 'comes', 'back.'], ['Is', 'that', 'your', 'mother?'], ['I', "can't", 'believe', 'my', 'ears.'], ['I', 'had', 'some', 'problems', 'that', 'I', 'had', 'to', 'deal', 'with', 'me.'], ['No', 'one', 'was', 'here.'], ['Tom', 'loves', 'me.'], ['These', 'toys', 'are', 'in', 'our', 'country.'], ['I', "wasn't", 'always', 'happy.'], ['You', "don't", 'hate', 'Tom.'], ['You', "shouldn't", 'have', 'done', 'that.'], ['She', 'spends', 'too', 'much', 'time', 'on', 'the', 'way', 'to', 'herself.'], ["I'll", 'do', 'this', 'just', 'here.'], ['My', 'sister', 'is', 'always', 'trying', 'to', 'me.'], ['Where', 'do', 'you', 'get', 'your', 'eyes', 'here?'], ['We', 'still', 'have', 'enough', 'time.'], ['You', 'may', 'be', 'the', 'only', 'one', 'who', 'can', 'do', 'that.'], ['I', 'was', 'your', 'age.'], ["That's", 'all', 'he', 'wants.'], ['I', 'had', 'my', 'brother', 'last', 'year.'], ['Your', 'answer', 'is', 'correct.'], ["I'm", 'sorry', 'I', 'hurt', 'you.'], ['Further', 'is', 'the', 'most', 'popular', 'animals', 'in', 'the', 'world.'], ['Am', 'I', 'in', 'my', 'suspenders?'], ['Please', 'take', 'advantage', 'of', 'us.'], ["Where's", 'the', 'nearest', 'station?'], ['I', 'saw', 'you', 'yesterday.'], ['A', 'ice', 'cream', 'on', 'the', 'package.'], ["You're", 'on', 'the', 'floor', 'of', 'your', 'shirt.'], ['I', "don't", 'understand', 'why', 'he', 'did', 'the', 'truth.'], ['Can', 'you', 'help', 'us?'], ['Everybody', 'needs', 'you.'], ['I', 'agree', 'with', 'his', 'idea.'], ['She', 'advised', 'him', 'not', 'to', 'help', 'the', 'dentist,', 'but', 'he', 'had', 'enough', 'time', 'and', 'asked', 'him', 'for', 'the', 'concert.'], ['The', 'climate', 'of', 'the', 'climate', 'is', 'Tom', 'very', 'nice.'], ['Do', 'you', 'know', 'when', 'they', 'were', 'going?'], ["I'm", 'sorry,', 'I', "don't", 'want', 'to', 'lose', 'them.'], ["I've", 'never', 'talked', 'about', 'this', 'before.'], ['You', 'know', 'what', 'they', 'say.'], ["Don't", 'give', 'up', 'the', 'water.'], ['We', 'all', 'like', 'him.'], ['I', "don't", 'work', 'this', 'anymore.'], ['Why', 'were', 'you', 'so', 'busy', 'yesterday?'], ['What', 'are', 'you', 'doing', 'that?'], ['The', 'government', 'should', 'stop', 'these', 'new', 'things.'], ['Put', 'the', 'bathroom', 'is', 'dark,', 'and', 'are', 'theirs.'], ['I', 'met', 'a', 'day', 'when', 'they', 'arrive.'], ['Is', 'anyone', 'in', 'this', 'building?'], ['I', 'was', 'shaken.'], ['I', 'want', 'to', 'write', 'to', 'this', 'one', 'way.'], ["Where's", 'the', 'matter?'], ['How', 'old', 'are', 'you', 'being', 'married?'], ['We', 'made', 'a', 'big', 'mistake.'], ['Your', 'cough', 'I', 'have', 'good', 'news.'], ['I', 'feel', 'like', 'my', 'best', 'friend.'], ['Have', 'you', 'finished', 'the', 'work', 'yet?'], ['She', 'is', 'divorced.'], ["You're", 'incredible.'], ["Don't", 'be', 'so', 'impatient.'], ['Do', 'you', 'really', 'want', 'to', 'win?'], ['I', 'love', 'this', 'way', 'of', 'college.'], ['There', 'must', 'be', 'a', 'mistake.'], ['They', "don't", 'speak', 'French.'], ['I', 'chose', 'the', 'curtains.'], ['The', 'two', 'brothers', 'are', 'dead.'], ['She', 'took', 'advantage', 'of', 'the', 'spelling', 'of', 'the', 'apples.'], ["I've", 'been', 'used', 'to', 'here.'], ['Tom', 'gave', 'me', 'this', 'watch.'], ['I', 'caught', 'them', 'in', 'the', 'act.'], ['Your', 'sister', 'is', 'as', 'beautiful', 'as', 'you.'], ['We', 'all', 'know', 'him.'], ['I', 'need', 'to', 'cut', 'down', 'on', 'this', 'radio.'], ['I', 'never', 'wish', 'I', 'had', 'it.'], ['She', 'left', 'the', 'letter', 'in', 'detail.'], ['She', 'urged', 'him', 'to', 'consider', 'the', 'request.'], ['Because', 'of', 'the', 'advice,', 'we', 'can', 'do', 'more', 'than', 'how', 'hard', 'I', 'could', 'do', 'to', 'do', 'what', 'we', 'can', 'do.'], ["I'm", 'trustworthy.'], ["I'm", 'much', 'younger', 'than', 'you.'], ['They', 'agreed', 'to', 'meet', 'me', 'here.'], ['That', 'kind', 'of', 'great', 'force', 'to', 'know', 'how', 'hard', 'in', 'your', 'life.'], ['When', 'did', 'you', 'hide', 'the', 'lawn?'], ['I', 'smell', 'something', 'burning.'], ['You', "don't", 'look', 'that', 'good.'], ["Who's", 'that?'], ['I', 'caught', 'a', 'caught', 'butterfly.'], ['Is', 'this', 'a', 'big', 'problem?'], ["What's", 'the', 'reason', 'for', 'us?'], ["It's", 'not', 'what', 'you', 'need', 'a', 'native', 'speaker.'], ["It's", 'like', 'being', 'a', 'candy'], ['They', 'need', 'the', 'money.'], ['Give', 'me', 'an', 'example.'], ['You', "can't", 'let', 'that', 'works.'], ['What', 'color', 'is', 'the', 'color', 'he', 'will', 'protect', 'the', 'color', 'cut.'], ['I', "don't", 'really', 'need', 'your', 'help.'], ['Either', 'us', 'to', 'be', 'in', 'here.'], ['Have', 'you', 'ever', 'seen', 'me', 'before?'], ['This', "isn't", 'a', 'problem.'], ['He', 'is', 'driving', 'today.'], ['He', 'continued', 'reading', 'the', 'book.'], ['I', 'would', 'like', 'to', 'do', 'it', 'without', 'your', 'help.'], ["We'll", 'find', 'it', 'hard', 'to', 'walk', 'to', 'what', 'we', 'walk', 'in', 'the', 'stomach.'], ['Further', 'is', 'more', 'interesting', 'than', 'any', 'other', 'language', 'is.'], ['Be', 'kind', 'to', 'college.'], ['Would', 'you', 'like', 'to', 'live', 'like', 'that?'], ['They', 'sent', 'me', 'a', 'new', 'gift.'], ['Just', "don't", 'forget', 'that.'], ['Tom', "doesn't", 'have', 'the', 'ability', 'and', 'the', 'difference', 'between', 'the', 'two.'], ['Finally,', 'I', 'passed', 'the', 'test.'], ['Few', 'students', 'are', 'up', 'with', 'their', 'faults.'], ['Have', 'you', 'ever', 'done', 'with', 'your', 'sister', 'on', 'your', 'parents?'], ['Who', "doesn't", 'want', 'to', 'live', 'here?'], ["I'll", 'fix', 'him', 'the', 'way.'], ["We're", 'looking', 'at', 'the', 'end', 'of', 'the', 'door.'], ["It's", 'time', 'to', 'start.'], ['Can', 'you', 'promise', 'me', 'that', 'you', "won't", 'do', 'that?'], ['I', "don't", 'know', 'that', 'word.'], ['The', 'TV', 'will', 'take', 'the', 'rest', 'of', 'a', 'picnic.'], ['The', 'boxes', 'are', 'in', 'Japanese.'], ['Why', 'are', 'you', 'so', 'busy', 'today?'], ['Take', 'it', 'on.'], ['I', 'am', 'angry.'], ['He', 'wrote', 'me', 'from', 'time', 'to', 'time.'], ['He', 'will', 'make', 'a', 'good', 'team', 'here.'], ['I', 'know', 'all', 'about', 'you.'], ['In', 'Japan,', 'it', 'out', 'of', '10,000', 'clothes', 'that', 'he', 'grows', 'up', 'over', 'ten', 'shoes.'], ['This', 'store', 'is', 'a', 'lot', 'of', 'good.'], ['Did', 'you', 'let', 'your', 'parents?'], ['She', 'is', 'hurt', 'with', 'a', 'cold.'], ['Tom', 'is', 'taller', 'than', 'Mary.'], ['I', 'just', 'need', 'to', 'make', 'a', 'little', 'more', 'longer.'], ['Please', 'spend', 'in', 'time', 'for', 'time.'], ['I', 'have', 'homework', 'to', 'do.'], ['Let', 'me', 'know', 'anything', 'if', 'I', 'want', 'to', 'do.'], ['I', 'know', 'that', 'you', 'still', 'love', 'me.'], ['There', 'is', 'no', 'problem.'], ['For', 'the', 'time,', 'I', 'got', 'back', 'to', 'the', 'new', 'time,', 'I', 'want', 'to', 'be', 'back', 'from', 'the', 'cops.'], ['Tom', 'is', 'almost', 'never', 'up', 'again.'], ['Your', 'cough', 'your', 'confidence.'], ['You', 'have', 'what', 'you', 'need.'], ["I'll", 'come', 'back', 'soon.'], ['I', "don't", 'need', 'a', 'new', 'one.'], ["That's", 'not', 'the', 'answer.'], ["They're", 'not', 'giving', 'me', 'up.'], ['His', 'face', 'turned', 'up', 'to', 'his', 'face.'], ['We', 'need', 'to', 'call', 'someone.'], ['His', 'new', 'suit', 'looks', 'pretty', 'well.'], ['We', 'enjoyed', 'the', 'movie', 'you', 'dance.'], ['Try', 'to', 'be', 'more', 'punctual', 'from', 'now', 'on.'], ['I', 'will', 'have', 'some', 'tomatoes.'], ['What', 'are', 'you', 'saying?'], ['Did', 'the', 'name', 'of', 'your', "girlfriend's"], ['Did', 'you', 'understand', 'the', 'before?'], ["How's", 'your', 'old', 'lady', 'doing?'], ["We're", 'not', 'old.'], ['What', 'is', 'no', 'matter', 'what', 'is', 'wrong?'], ['I', 'hurt', 'a', 'tree', 'in', 'a', 'traffic', 'accident.'], ['He', 'found', 'my', 'bicycle.'], ['Do', 'you', 'need', 'something', 'else?'], ['She', 'put', 'on', 'socks.'], ['The', 'streets', 'are', 'flying', 'in', 'the', 'streets', 'for', 'conditions.'], ['Where', 'are', 'they', 'now?'], ['How', 'do', 'you', 'call', 'this', 'car?'], ['You', 'just', 'have', 'a', 'bad', 'time', 'at', 'the', 'wrong', 'time.'], ['We', "don't", 'want', 'anyone', 'to', 'use', 'some', 'questions.'], ["That's", 'just', 'the', 'ball.'], ["I'm", 'coming', 'home.'], ['That', 'often', 'comes', 'on', 'each', 'other.'], ["They're", 'all', 'here.'], ['You', 'were', 'removed', 'from', 'the', 'list.'], ['He', 'asked', 'me', 'if', 'I', 'were', 'happy.'], ['If', 'you', "don't", 'do', 'your', 'native', 'speaker', 'in', 'life.'], ['Finally,', 'I', 'borrow', 'a', 'fish.'], ['She', 'is', 'making', 'remarkable', 'cookies.'], ['I', 'told', 'you', 'you', 'had', 'told', 'you', 'told', 'you', 'said', 'you', 'left', 'at', 'home?'], ['I', "should've", 'expected', 'you', 'to', 'finish', 'it', 'soon.'], ['Do', 'you', 'think', 'enough', 'time', 'to', 'eat', 'enough', 'time', 'to', 'eat', 'lunch?'], ['I', 'borrowed', 'the', 'car.'], ['This', 'is', 'my', 'cat.'], ['Where', 'do', 'you', 'know', "you'll", 'come', 'to', 'leave', 'of', 'the', 'details.'], ['They', 'accused', 'me', 'of', 'being', 'a', 'liar.'], ['We', 'were', 'here.'], ['You', 'said', 'you', 'wanted', 'more', 'than', 'someone.'], ['The', 'first', 'day,'], ['This', 'one', 'is', 'a', 'little', 'more', 'sweet.'], ['How', 'big', 'you', 'are!'], ['I', "can't", 'find', 'the', 'hotel.'], ['They', 'were', 'walking', 'in', 'the', 'others.'], ["I'm", 'so', 'embarrassed,', 'I', 'want', 'to', 'die.'], ['He', "didn't", 'say', 'a', 'word', 'at', 'the', 'money.'], ["I'm", 'not', 'used', 'to', 'such', 'a', 'compromise.'], ['Safety', 'is', 'the', 'most', 'important', 'part.'], ['In', 'the', 'weight', 'of', 'a', 'good', 'day', 'that', 'can', 'be', 'very', 'good', 'for', 'me.'], ['Tom', 'is', 'almost', 'almost', 'apples.'], ['All', 'my', 'parents', 'are', 'as', 'tall', 'as', 'my', 'mother.'], ['The', 'hard', 'is', 'hard', 'to', 'hire', 'him.'], ['I', 'have', 'the', 'ability', 'to', 'kill', 'my', 'eyes', 'and', 'made', 'it', 'to', 'me.'], ["I'm", 'in', 'luck.'], ['I', 'did', 'it', 'for', 'you.'], ["You'd", 'better', 'go', 'to', 'bed.'], ['Do', 'you', 'want', 'to', 'come', 'with', 'us?'], ['No', 'one', 'died.'], ['Do', 'you', 'really', 'think', "it's", 'a', 'good', 'idea?'], ["I'll", 'see', 'you', 'next', 'month.'], ['I', 'totally', 'forgot.'], ['He', 'is', 'out', 'of', 'breath.'], ['It', 'was', 'the', 'one', 'for', 'the', 'child', 'to', 'arrive.'], ['She', 'looks', 'confused.'], ['Were', 'you', 'home', 'all', 'night?'], ['Tom', 'changed.'], ['Tom', "didn't", 'tell', 'me.'], ['Tom', 'lived', 'in', 'Boston', 'for', 'a', 'long', 'time.'], ['I', "can't", 'tell', 'you', 'how', 'happy', 'I', 'am', 'that', "you've", 'come', 'to', 'visit', 'us.'], ["You're", 'the', 'one', 'who', 'can', 'understand', 'the', 'person', 'who', 'would', 'respect.'], ['Can', 'you', 'tell', 'me', 'about', 'this', 'place?'], ['I', "don't", 'remember', 'that', 'conversation.'], ['The', 'king', 'made', 'the', 'fact', 'that', 'they', 'will', 'rain.'], ['He', 'is', 'a', 'real', 'drunkard.'], ["It's", 'such', 'a', 'sweetheart.'], ['A', 'pair', 'of', 'mine', 'is', 'a', 'pair', 'of', 'paper', 'at', 'home.'], ['Show', 'me', 'your', 'tattoo.'], ['He', 'made', 'an', 'important', 'discovery.'], ['You', 'were', 'drunk,', "weren't", 'you?'], ['The', 'fire', 'went', 'up.'], ['The', 'glass', 'is', 'a', 'glass', 'of', 'milk.'], ['She', 'really', 'wants', 'to', 'go.'], ['Would', 'you', 'go', 'to', 'the', 'store', 'to', 'get', 'some', 'sleep.'], ['I', "don't", 'need', 'your', 'help.'], ['Your', 'behavior', 'was', 'blind.'], ["Let's", 'talk', 'in', 'French.'], ['How', 'did', 'your', 'class', 'been?'], ['They', 'were', 'all', 'here.'], ['There', 'was', 'a', 'cold.'], ['I', 'have', 'all', 'the', 'truth', 'of', 'what', 'he', 'knows', 'all', 'the', 'crime.'], ['You', "don't", 'seem', 'tired', 'at', 'all.'], ['The', 'door', 'was', 'closed.'], ["We're", 'lucky', 'to', 'be', 'alive.'], ['China', 'is', 'the', 'largest', 'country', 'in', 'the', 'world.'], ['Our', 'work', 'is', 'on', 'the', 'clock.'], ['I', "don't", 'have', 'kids.'], ['I', 'only', 'speak', 'French', 'a', 'few', 'minutes.'], ['He', 'deserves', 'our', 'end', 'of', 'the', 'world.'], ['Tom', 'told', 'me', 'he', 'was', 'innocent.'], ['Do', 'you', 'feel', 'like', 'going', 'out', 'for', 'a', 'walk', 'later?'], ['Lay', 'it', 'on', 'the', 'table.'], ['This', 'is', 'a', 'very', 'important', 'important', 'for', 'us.'], ['Your', "skirt's", 'on', 'backwards.'], ['We', 'have', 'to', 'pay', 'three', 'years', 'of', 'account.'], ['Tom', 'and', 'I', 'were', 'happy', 'with', 'you.'], ["That's", 'the', 'worst', 'schedule.'], ["I'm", 'not', 'very', 'busy.'], ['What', 'time', 'was', 'the', 'time?'], ['Do', 'you', 'know', 'how', 'to', 'count', 'to', 'ten', 'French?'], ['Stop', 'being', 'so', 'naive.'], ["I'll", 'get', 'there', 'on', 'that.'], ['They', 'love', 'a', 'black', 'dog', 'and', 'a', 'black', 'dog.'], ['They', 'were', 'doing', 'anything', 'they', 'want', 'to', 'do', 'what', 'they', 'do', 'anything.'], ["That's", 'a', 'waste', 'of', 'time.'], ['I', 'asked', 'him', 'what', 'his', 'name', 'was.'], ['Please', 'let', 'the', 'knife', 'clean.'], ['Are', 'you', 'really', 'that', 'again?'], ["There's", 'a', 'child', 'going', 'to', 'believe', 'a', 'spy.'], ["They're", 'running', 'now.'], ['We', 'are', 'not', 'sure', 'of', 'that.'], ['Please', 'tell', 'me', "you're", 'trying', 'to', 'tell', 'you', "you're", 'trying', 'to', 'say.'], ['My', 'father', 'is', 'at', 'home.'], ['Tom', "hasn't", 'eaten', 'a', 'long', 'meal', 'since', 'a', 'long', 'time.'], ['I', 'want', 'to', 'stay', 'for', 'a', 'few', 'days.'], ['They', 'are', 'the', 'ones', 'who', 'want', 'to', 'be.'], ["I'm", 'smarter', 'than', 'you.'], ['Who', 'can', 'afford', 'such', 'a', 'new', 'house', 'and', 'tomorrow?'], ["I'm", 'not', 'in', 'agreement.'], ['Italy', 'is', 'the', 'best', 'largest', 'shop', 'in', 'the', 'world.'], ['I', 'told', 'you', "I'm", 'not', 'hungry.'], ['Are', 'your', 'kids?'], ['They', 'were', 'very', 'excited.'], ['It', 'is', 'going', 'to', 'be', 'woken', 'to', 'ten.'], ['How', 'do', 'you', 'get', 'out', 'of', 'this', 'stuff?'], ['We', 'did', 'nothing', 'but', 'just', 'found', 'a', 'huge', 'child.'], ['The', 'accident', 'happened', 'near', 'his', 'house.'], ['Everyone', 'from', 'time', 'not', 'to', 'time.'], ['Can', 'you', 'tell', 'me', 'what', 'this', 'is?'], ['Why', 'did', 'they', 'come', 'here?'], ['Do', 'you', 'play', 'tennis', 'well?'], ['They', 'hurried', 'to', 'the', 'scene', 'of', 'the', 'accident.'], ["Don't", 'give', 'me', 'a', 'lot.'], ['The', 'negotiations', 'set', 'up', 'a', 'human', 'coin.'], ['I', 'finished', 'reading', 'that', 'book.'], ["They're", 'young', 'and', 'healthy.'], ['How', 'long', 'did', 'you', 'sleep?'], ['This', 'big', 'company', 'is', 'not', 'amused.'], ['I', 'think', 'you', 'know', "it's", 'not', 'true.'], ['I', 'saw', 'the', 'end', 'of', 'the', 'end', 'of', 'the', 'end.'], ['Did', 'you', 'understand', 'me?'], ['Where', 'did', 'they', 'put', 'it?'], ["We've", 'already', 'tried.'], ['Tom', 'opened', 'the', 'door', 'I', "couldn't", 'let', 'him', 'even', 'though', 'I', 'to.'], ['I', "can't", 'stand', 'it', 'any', 'longer.'], ['He', 'is', 'a', 'quiet', 'man.'], ['Do', 'you', 'know', 'how', 'to', 'whistle?'], ['There', 'was', 'no', 'one', 'in', 'the', 'room.'], ['Actually,', "I'm", 'not', 'this', 'way', 'here.'], ['Take', 'it', 'on.'], ['I', 'thought', 'you', 'wanted', 'that', "you'd", 'want', 'to', 'know.'], ['I', "don't", 'have', 'a', 'reason', 'to', 'tell', 'you.'], ['Are', 'you', 'free', 'or', 'die.'], ['I', 'remember', 'everything', 'I', 'could.'], ['No', 'one', 'is', 'missing.'], ['The', 'house', 'was', 'painted', 'white.'], ['I', "haven't", 'eaten', 'anything', 'but', 'I', 'have', 'nothing', 'but', 'I', "couldn't."], ["Let's", 'do', 'this', 'first.'], ['I', "don't", 'know', 'Tom', 'still', 'lives', 'in', 'Boston.'], ['It', 'looks', 'good', 'at', 'that.'], ['I', 'love', 'my', 'life', 'that', "she's", 'like', 'my', 'wife.'], ["I'm", 'a', 'difficult', 'problem', 'in', 'detail.'], ['You', 'need', 'to', 'stay.'], ['May', 'I', 'have', 'a', 'pen', 'in', 'the', 'center', 'of', 'my', 'teeth.'], ['We', 'saw', 'him.'], ['My', 'brother', 'is', 'a', 'student.'], ['I', 'wonder', 'if', "there's", 'a', 'book', 'about', 'this', 'report.'], ['I', 'was', 'sure', 'Tom', 'was', 'hiding', 'that.'], ['Get', 'out', 'of', 'my', 'life!'], ['I', "don't", 'even', 'care.'], ['They', 'made', 'this', 'drink.'], ['I', 'figured', "I'd", 'find', 'you', 'here.'], ['I', 'thought', 'you', 'were', 'smart.'], ['Reading', 'is', 'closed.'], ['Tom', 'did', 'his', 'son', 'in', 'his', 'bedroom.'], ['I', 'want', 'to', 'make', 'sure', 'you', 'are', 'who', 'you', 'say', 'you', 'are.'], ['The', 'old', 'boy', 'gave', 'him', 'a', 'small', 'man.'], ['I', 'left', 'my', 'eyes', 'and', 'have', 'nothing', 'in', 'my', 'suitcase.'], ["Don't", 'make', 'me', 'kill', 'you.'], ["It's", 'like', 'a', 'candy', 'store.'], ['I', 'did', 'it', 'when', 'you', 'have', 'anything', 'to', 'do', 'with', 'my', 'dog.'], ['She', 'cut', 'her', 'house', 'when', 'she', 'was', 'young.'], ['The', 'population', 'of', 'the', 'United', 'is', 'made', 'of', 'the', 'United', 'States', 'is', 'a', 'hundred.'], ['How', 'long', 'do', 'you', 'still', 'have', 'time', 'to', 'stay?'], ['I', 'think', 'you', 'should', 'choose', 'Tom.'], ["I'd", 'like', 'to', 'forget', 'your', 'ticket,', 'please.'], ["I've", 'been', 'looking', 'for', 'a', 'meeting', 'while', 'I', 'was', 'in', 'time', 'for', 'my', 'time.'], ['That', "wasn't", "Tom's", 'choice.'], ['Did', 'you', 'play', 'soccer', 'yesterday?'], ['When', 'you', 'please', 'turn', 'on', 'the', 'country', 'that', "you'll", 'feel', 'like', 'the', 'case', 'that', 'you', 'think', "you'll", 'feel', 'like', 'eating', 'German.'], ['I', "don't", 'want', 'to', 'see', 'you', 'again.'], ['He', 'left', 'at', 'the', 'station.'], ['"Will', 'it', 'be', 'afraid', 'of', 'taking', 'the', 'errors', 'if', 'he', 'gets', 'afraid', 'not."'], ['I', "don't", 'need', 'to', 'win.'], ["We're", 'in', 'the', 'sea.'], ['Please', 'heat', 'the', 'bill.'], ["That's", 'not', 'what', 'I', 'wanted', 'to', 'do.'], ['You', 'have', 'a', 'good', 'reputation.'], ['I', "can't", 'believe', 'that', 'anymore.'], ['When', 'did', 'you', 'arrive', 'at', 'the', 'original', 'today?'], ['You', 'have', 'a', 'little', 'weight,', "haven't", 'you?'], ['What', 'is', 'your', 'job?'], ["Don't", 'push', 'us.'], ['I', 'lived', 'in', 'a', 'small', 'town.'], ['It', 'looks', 'like', 'he', 'will', 'rain.'], ['Tom', 'is', 'there', 'so', 'much', 'but', 'he', "doesn't", 'know.'], ["I'm", 'tough.'], ['Now', 'will', 'be', 'fun.'], ['A', 'high', 'school', 'plan', 'was', 'to', 'learn', 'to', 'buy', 'a', 'new', 'gift.'], ['They', 'love', 'the', 'result.'], ['I', 'think', 'we', 'can', 'handle', 'it.'], ['Will', 'you', 'be', 'tonight?'], ["It's", 'not', 'our', 'fault.'], ['He', 'drank', 'reading', 'the', 'newspaper.'], ['Are', 'you', 'sure', 'you', 'want', 'to', 'leave', 'without', 'saying', 'goodbye?'], ['You', 'gotta', 'get', 'more', 'organized.'], ["You've", 'gone', 'too', 'far', 'this', 'time.'], ['I', 'sat', 'close', 'to', 'him.'], ['The', 'doctor', 'is', 'in', 'a', 'car', 'in', 'the', 'museum.'], ['Nobody', 'can', 'solve', 'this', 'problem.'], ['It', 'took', 'three', 'hours', 'on', 'the', 'bus.'], ['I', 'think', 'you', 'need', 'to', 'find', 'a', 'part-time', 'job.'], ["You're", 'very', 'skeptical.'], ['I', 'heard', 'a', 'strange', 'name.'], ['This', 'kind', 'of', 'things', 'is', 'going', 'to', 'do', 'this', 'day.'], ['I', 'want', 'to', 'know', 'what', 'to', 'do', 'what', 'to', 'do.'], ['I', "can't", 'fix', 'the', 'menu.'], ['She', 'made', 'the', 'same', 'mistake', 'again.'], ["I'm", 'tired', 'of', 'this', 'weather.'], ['No', 'one', 'can', 'deny', 'the', 'me.'], ['Tom', "doesn't", 'have', 'a', 'gun.'], ['Do', 'you', 'really', 'like', 'this?'], ['I', "don't", 'take', 'advantage', 'of', 'the', 'drinks.'], ['My', 'brother-in-law', 'is', 'very', 'hot', 'to', 'show', 'up.'], ['This', 'law', 'is', 'similar', 'to', 'the', 'case.'], ['I', 'bought', 'it', 'in', 'a', 'dress.'], ['Did', 'you', 'write', 'this', 'book?'], ['Tom', 'is', 'having', 'some', 'fresh', 'left.'], ["I'll", 'meet', 'you', 'to', 'the', 'station.'], ['Reading', 'things', 'are', 'not', 'good', 'enough.'], ['Do', 'you', 'have', 'enough', 'energy?'], ['I', 'want', 'to', 'see', 'a', 'doctor.'], ['I', "won't", 'let', 'you', 'do', 'that.'], ['Tom', "isn't", 'a', 'new', 'anymore.'], ['Wait', 'until', 'tomorrow', 'morning.'], ['Tom', 'already', 'met', 'him', 'when', 'he', 'met', 'him?'], ['I', "can't", 'wait', 'without', 'you', 'without', 'a', 'help.'], ['Can', 'you', 'please', 'tell', 'me', 'the', 'book', 'please?'], ['The', 'chair', 'is', 'broken.'], ['He', 'got', 'the', 'first', 'prize.'], ["I'll", 'buy', 'you', 'two', 'hours.'], ['Take', 'off', 'the', 'ball.'], ['What', 'do', 'you', 'do', 'next', 'summer?'], ['Tell', 'me', 'the', 'reason', 'why', 'you', 'want', 'to', 'live', 'in', 'the', 'country.'], ['Music', 'is', 'a', 'native', 'language.'], ['Do', 'you', 'have', 'any', 'French', 'way?'], ['Why', 'do', 'you', 'always', 'wear', 'this', 'hat?'], ['You', 'ought', 'to', 'have', 'paid', 'the', 'note.'], ['I', 'already', 'did', 'it.'], ['The', 'doctor', 'got', 'it', 'when', 'it', 'was', 'in', 'the', 'future.'], ['I', 'knew', 'we', 'met', 'the', 'moment', 'where', 'we', 'met', 'you.'], ['Let', 'me', 'see', 'that', 'list.'], ['He', 'is', 'a', 'poet.'], ['It', 'was', 'just', 'of', 'my', 'lead.'], ['Tom', 'sent', 'a', 'gift', 'for', 'Mary.'], ['I', 'know', 'that', 'was', 'a', 'mistake.'], ['The', 'car', 'ran', 'away', 'from', 'the', 'left.'], ['Who', 'wants', 'to', 'get', 'out', 'of', 'winning?'], ['We', 'have', 'to', 'put', 'up', 'with', 'all', 'the', 'end', 'of', 'their', 'all.'], ['What', 'kind', 'of', 'work', 'is', 'working', 'well?'], ['He', 'called', 'me', 'a', 'cab.'], ['I', 'felt', 'someone', 'on', 'the', 'shoulder.'], ['Does', 'he', 'signed', 'the', 'riddle?'], ["You're", 'being', 'paranoid.'], ['He', "doesn't", 'have', 'a', 'lot', 'of', 'time.'], ['Please', "don't", 'give', 'me', 'some', 'trouble.'], ['I', 'work', 'here.'], ['Good', 'luck', 'can', 'be', 'needed.'], ['I', 'like', 'spending', 'time', 'with', 'Tom.'], ['You', "shouldn't", 'have', 'done', 'it.'], ['She', 'screamed.'], ['Tom', 'understands', 'the', 'risks.'], ['Try', 'him.'], ['Nothing', 'is', 'more', 'difficult', 'than', 'losing', 'the', 'teacher.'], ['When', 'did', 'you', 'come', 'to', 'Boston?'], ['We', 'have', 'a', 'great', 'day', 'tomorrow.'], ['We', 'all', 'had', 'a', 'new', 'surprise,', 'as', 'he', 'as', 'if', 'he', 'used', 'to.'], ['I', 'feel', 'good', 'this', 'morning.'], ['He', 'said', 'we', 'could', 'keep', 'the', 'secret.'], ['This', 'is', 'no', 'one', 'who', 'understands', 'it.'], ['Allow', 'me', 'to', 'wait?'], ["I've", 'got', 'a', 'few', 'doubts.'], ["I'm", 'not', 'feeling', 'well.'], ['Your', 'clothes', 'is', 'full', 'of', 'top', 'of', 'the', 'houses', 'of', 'the', 'sun.'], ['As', 'soon', 'as', 'we', 'had', 'a', 'little', 'experience', 'for', 'the', 'scene', 'of', 'the', 'water', 'had', 'a', 'bit.'], ['Thank', 'you', 'for', 'a', 'great', 'way', 'to', 'see', 'me.'], ["I'll", 'buy', 'things.'], ['I', 'thought', 'of', 'that.'], ["She's", 'under', 'the', 'chair.'], ['If', 'Tom', 'else', 'Mary', "wasn't", 'feeling', 'else', 'at', 'the', 'French', 'song', 'he', 'met', 'Mary.'], ['I', 'appreciate', 'your', 'patience.'], ['I', 'saw', 'a', 'fire', 'enter', 'the', 'room.'], ["That's", 'only', 'a', 'dream.'], ['Tom', 'called', 'him', 'to', 'wait', 'for', 'breakfast.'], ['She', 'advised', 'advised', 'more', 'trying', 'to', 'drink', 'milk.'], ['This', 'is', 'three', 'times', 'your', 'age.'], ['I', 'have', 'to', 'apologize', 'for', 'what', 'I', 'said.'], ['Maybe', 'we', 'should', 'cancel', 'the', 'meeting.'], ['He', 'used', 'to', 'eat', 'his', 'food', 'for', 'the', 'food', 'instead', 'of', 'food.'], ["There's", 'not', 'much', 'time.'], ['I', "didn't", 'realize', 'you', 'were', 'awake.'], ['Tom', "didn't", 'kissed', 'anybody.'], ['Spanish', 'she', 'tried,', 'she', 'tried,', 'the', 'weather', 'when', 'he', 'called', 'out', 'with', 'his', 'wife.'], ['This', 'camera', 'is', 'more', 'than', 'that', 'one.'], ["That's", 'hers.'], ["I'm", 'cooking.'], ["I'll", 'be', 'late.'], ['Can', 'anyone', 'here', 'can', 'do', 'this?'], ['I', 'just', 'had', 'a', 'problem', 'with', 'your', 'teacher.'], ['You', 'must', 'be', 'careful.'], ['Where', 'did', 'you', 'learn', 'how', 'to', 'dance?'], ['"Will', 'you', 'give', 'me', 'such', 'a', 'dress."', '"No,', 'thank', 'you.'], ["I'm", 'proud', 'of', 'my', 'family.'], ['I', "don't", 'want', 'to', 'make', 'it.'], ['Tom', 'used', 'to', 'do', 'that.'], ['Tom', 'introduced', 'me', 'to', 'Mary.'], ['Let', 'me', 'kiss', 'you.'], ['Where', 'do', 'you', 'come', 'from?'], ['Which', 'one', 'is', 'a', 'guy', 'with', 'the', 'guy', 'with', 'a', 'magnificent'], ['Two', 'brother', 'and', 'Mary', 'will', 'not', 'buy', 'him.'], ['Tom', 'often', 'makes', 'his', 'mind.'], ['Can', 'you', 'climb', 'up', 'the', 'tree?'], ['It', 'was', 'supposed', 'to', 'be', 'true.'], ['I', 'heard', 'something', 'outside.'], ['People', 'say', 'that', 'the', 'world', 'is', 'true.'], ['The', 'average', 'smell', 'is', 'worth', 'a', 'form', 'of', 'energy', 'this', 'form', 'will', 'be', 'effective', 'by', 'a', 'human', 'form', 'on', 'the', 'form', 'of', 'ways.'], ['I', 'left', 'to', 'learn', 'to', 'learn', 'to', 'learn', 'to', 'become', 'a', 'teacher.'], ['guess', 'what', 'you', 'say', 'is', 'true.'], ['Would', 'you', 'mind', 'if', 'I', "won't", 'do', 'it?'], ['We', 'have', 'to', 'do', 'this', 'as', 'soon', 'as', 'possible.'], ['I', 'read', 'the', 'letters', 'that', 'you', 'were', 'letters', 'with', 'me.'], ['My', 'children', "don't", 'smoke.'], ['You', "shouldn't", 'have', 'told', 'it.'], ['I', 'need', 'some', 'get-up-and-go.'], ["Let's", 'paint', 'the', 'water.'], ['He', 'ran', 'away', 'in', 'a', 'hurry.'], ['She', 'fell', 'down', 'on', 'the', 'test.'], ['We', 'have', 'given', 'our', 'plan.'], ['Tom', 'was', 'stuck', 'in', 'the', 'park', 'in', 'debt.'], ['I', "can't", 'figure', 'out', 'this', 'way', 'to', 'fix', 'this', 'weather.'], ['What', 'foods', 'do', 'you', 'have?'], ['If', 'something', 'has', 'to', 'show', 'me.'], ['Is', 'it', 'the', 'train', 'for', 'New', 'York', 'City?'], ['This', 'is', 'unavoidable.'], ['Show', 'me', 'where', 'it', 'happened.'], ["I'm", 'the', 'only', 'way', 'to', 'leave', 'the', 'house', 'on', 'the', 'work.'], ["That's", 'pretty', 'hard.'], ['Yours', 'is', 'as', 'difficult', 'as', 'it', 'is', 'dangerous.'], ['I', 'want', 'to', 'jump', 'a', 'sharp', 'cream', 'with', 'you.'], ['They', 'were', 'captured.'], ['Does', 'anyone', 'want', 'to', 'sing?'], ["That's", 'just', 'the', 'way', 'he', 'is.'], ['You', 'have', 'to', 'do', 'it', 'whether', 'you', 'have', 'to', 'do', 'it.'], ['The', 'garden', 'has', 'been', 'ill', 'in', 'high', 'school.'], ['Do', 'you', 'want', 'some', 'coffee?'], ['You', 'can', 'read', 'this', 'book.'], ['I', "can't", 'agree', 'with', 'his', 'proposal.'], ['I', 'want', 'my', 'freedom.'], ['What', 'are', 'some', 'of', 'you', 'get', 'some', 'weight', 'with', 'me?'], ['Tom', "won't", 'give', 'me', 'some', 'problem.'], ['My', 'father', 'used', 'to', 'walk', 'to', 'school.'], ['I', 'love', 'my', 'mother.'], ['Compare', 'going', 'to', 'pass', 'the', 'apple', 'of', 'the', 'company', 'that', 'the', 'prices', 'of', 'birds', 'is', 'growing', 'out.'], ['Someone', 'tried', 'to', 'kill', 'me.'], ['Please', 'smile.'], ['You', "don't", 'have', 'to', 'talk', 'about', 'it', 'if', 'you', "don't", 'want', 'to.'], ['Return', 'to', 'change.'], ['My', 'wife', 'was', 'crazy.'], ['Mary', 'looks', 'like', 'her', 'mother,', 'but', 'she', 'has', 'a', 'nice', 'personality.'], ['Which', 'one', 'of', 'you', 'is', 'it?'], ['Is', 'it', 'really', 'difficult', 'to', 'speak', 'French?'], ['It', "wasn't", 'a', 'dream.'], ['She', 'spoke', 'wisely.'], ['Is', 'this', 'your', 'first', 'time', 'on', 'the', 'first', 'you?'], ['Are', 'you', 'sure', 'you', "don't", 'want', 'to', 'go', 'with', 'us?'], ['All', 'we', 'can', 'do', 'is', 'waiting', 'for', 'the', 'other', 'day.'], ['I', "don't", 'know', 'what', 'to', 'do', 'now.'], ['We', "weren't", 'to', 'stay', 'at', 'a', 'long', 'time.'], ['You', 'should', 'apologize.'], ['He', 'spent', 'ten', 'years', 'behind', 'ten', 'minutes', 'for', 'ten'], ['That', 'was', 'the', 'goal.'], ['I', "can't", 'remember', 'how', 'to', 'call', 'her', 'name.'], ['I', 'am', 'writing', 'a', 'student', 'at', 'home.'], ['If', 'I', 'were', 'you,', 'I', 'liked', 'her.'], ['I', 'always', 'spend', 'a', 'bottle', 'of', 'time', 'with', 'me.'], ["That's", 'what', 'people', 'like', 'them.'], ['He', 'took', 'a', 'day', 'off.'], ['That', 'building', 'is', 'very', 'beautiful.'], ['How', 'did', 'you', 'turn', 'for', 'the', 'London?'], ['He', 'was', 'sent', 'for', 'the', 'fight.'], ['Do', 'you', 'think', 'about', 'oysters?'], ['Who', 'are', 'you?'], ['It', 'almost', 'as', 'a', 'tough', 'painting.'], ["We're", 'all', 'in', 'danger.'], ['Take', 'care', 'of', 'your', 'business.'], ['What', 'have', 'you', 'given', 'up', 'with', 'his', 'offer', 'for', 'her', 'then?'], ["It's", 'only', 'that', 'you', 'would', 'do', 'this', 'room', 'as', 'you', 'come', 'in', 'this', 'one.'], ['You', 'two', 'were', 'both', 'drunk.'], ['The', 'floorboards', 'spread', 'quickly.'], ['I', 'want', 'to', 'know', 'too.'], ['Tom', "doesn't", 'care.'], ['I', 'want', 'you', 'to', 'look', 'the', 'window.'], ['I', 'had', 'to', 'see', 'you.'], ['Enjoy', 'it', 'a', 'difficult', 'time', 'and', 'always', 'have', 'that', 'much', 'time', 'at', 'math.'], ['Please', 'have', 'to', 'sit', 'in.'], ['What', 'are', 'some', 'foods', 'you', 'usually', 'eat', 'with', 'your', 'children?'], ['I', 'love', 'hanging', 'out', 'with', 'you.'], ['He', 'is', 'better', 'than', 'I', 'used', 'to', 'be.'], ['When', 'did', 'you', 'ask', 'him?'], ['Why', 'is', 'it', 'that', 'you', 'were', 'in', 'this', 'morning?'], ['We', 'returned', 'to', 'the', 'mall.'], ['I', 'have', 'very', 'good', 'news.'], ['You', "don't", 'have', 'what', 'it', 'is', 'to', 'be', 'a', 'leader.'], ['She', 'is', 'French.'], ['Please', 'knock', 'before', 'you', 'come', 'in.'], ["I'm", 'glad', 'Tom', 'is', 'my', 'favorite', 'teacher.'], ['The', 'prices', 'have', 'turned', 'off.'], ['Do', 'you', 'probably', 'prefer,', 'the', 'proverb', 'or', 'so?'], ['I', 'heard', 'you', 'did', 'well.'], ["Don't", 'bother.'], ['This', "isn't", 'the', 'first', 'time', 'it', 'is.'], ['He', 'had', 'anything', 'to', 'be', 'written.'], ["It's", 'beautiful.'], ['I', 'often', 'you', 'think', 'you', 'have', 'a', 'lot.'], ['He', 'is', 'used', 'to', 'such', 'a', 'thing.'], ['I', 'hurried', 'to', 'the', 'sunrise.'], ['She', 'was', 'too', 'small.'], ["You're", 'hurt', 'my', 'feelings.'], ['I', "can't", 'promise', 'you', 'anything.'], ['I', 'just', 'got', 'a', 'walk.'], ['Please', 'answer', 'the', 'question.'], ['What', 'do', 'you', 'plan', 'to', 'do', 'this', 'evening?'], ['Did', 'you', 'do', 'this', 'on', 'purpose.'], ['My', 'bicycle', 'has', 'a', 'flat', 'tire.'], ['The', 'population', 'of', 'the', 'fact', 'that', 'you', 'are', 'not', 'healthy.'], ["That's", 'very', 'close.'], ['A', 'dog', 'can', 'see', 'the', 'dark.'], ['Do', 'you', 'have', 'any', 'kids?'], ['We', 'all', 'got', 'all', 'the', 'same', 'time.'], ["You're", 'no', 'longer', 'in', 'the', 'world.'], ['This', 'is', 'our', 'last', 'opportunity.'], ['Are', 'you', 'afraid', 'of', 'anything?'], ['She', 'wants', 'to', 'listen', 'to', 'her', 'at', 'the', 'picture.'], ['Do', 'you', 'have', 'any', 'name?'], ['You', 'always', 'wear', 'things', 'at', 'the', 'same', 'day.'], ['I', 'lost', 'my', 'dog', 'in', 'the', 'refrigerator.'], ['Look', 'at', 'that', 'picture.'], ['Can', 'you', 'please', 'stop', 'please?'], ['I', 'learned', 'something', 'this', 'book.'], ["We're", 'not', 'interested', 'in', 'anymore.'], ['He', 'told', 'me', 'he', 'wanted', 'to', 'quit', 'the', 'company.'], ['Play', 'it', 'to', 'the', 'store', 'to', 'pieces.'], ['Why', 'are', 'you', 'so', 'upset?'], ['How', 'content.'], ['What', 'is', 'the', 'name', 'of', 'this', 'bird?'], ['Tom', 'drinks', 'a', 'Christmas', 'tree.'], ['I', "can't", 'stand', 'like', 'a', 'child.'], ["You're", 'the', 'most', 'beautiful', 'girl', 'in', 'the', 'world.'], ["I'm", 'not', 'concerned', 'for', 'that.'], ['I', "don't", 'care', 'how', 'you', 'think', 'about', 'it.'], ['My', 'parents', 'wants', 'to', 'write', 'a', 'black', 'car,', 'do', 'you', 'like', 'someone', 'and', 'write.'], ['I', 'like', 'the', 'coffee', 'coffee.'], ['I', 'have', 'some', 'experience', 'on', 'their', 'plan.'], ['They', 'have', 'a', 'new', 'teacher.'], ['The', 'lady', 'showed', 'his', 'lady', 'style.'], ['We', 'want', 'this', 'out.'], ["They're", 'mad', 'at', 'you.'], ['Can', 'you', 'give', 'me', 'a', 'lift.'], ['He', 'lost', 'sight', 'of', 'the', 'accident.'], ['Tom', "isn't", 'he?'], ['The', 'fish', 'is', 'dry.'], ["It's", 'expensive.'], ['Violence', 'is', 'the', 'fastest', 'runner', 'for', 'you.'], ['What', 'are', 'you', 'going', 'to', 'do?'], ['Japan', 'has', 'a', 'rural', 'responsibility.'], ["I'll", 'protect', 'you.'], ['I', 'immediately', 'taken', 'something', 'that', 'was', 'wrong.'], ['I', "don't", 'know', 'this', 'time', 'I', 'left', 'my', "friend's", 'way', 'home.'], ['Once', 'was', 'a', 'great', 'future', 'for', 'us.'], ['I', 'know', 'I', 'can', 'do', 'better.'], ['The', 'house', 'was', 'burned', 'down.'], ['Tom', 'is', 'a', 'full', 'personality.'], ['That', 'man', 'is', 'worthy', 'of', 'you.'], ['Can', 'you', 'believe', 'it?'], ['Before', 'I', 'try', 'to', 'understand', 'the', 'meaning', 'of', 'her', 'words.'], ["You're", 'very', 'wise.'], ['He', 'made', 'up', 'a', 'big', 'one.'], ['I', 'think', 'this', 'will', 'work.'], ['This', 'is', 'a', 'wonderful', 'question.'], ['She', 'made', 'the', 'same', 'mistake', 'again.'], ['He', 'ran', 'out', 'the', 'room.'], ['I', 'drifted', 'apart', 'from', 'my', 'friends.'], ["I've", 'got', 'something', 'to', 'you.'], ['The', 'soldiers', 'opened', 'the', 'streets.'], ['I', 'told', 'you', 'the', 'told', 'you', 'told', 'me', 'I', 'could', 'tell', 'you.'], ['Were', 'you', 'dating', 'anyone?'], ['Is', 'everything', 'all', 'right?'], ['I', 'have', 'a', 'uncle', 'in', 'the', 'FBI.'], ['Pick', 'one', 'of', 'you', 'as', 'a', 'dress.'], ['How', 'do', 'you', 'feel', 'about', 'the', 'house?'], ["It's", 'very', 'kind', 'of', 'you', 'and', 'your', 'own', 'words.'], ['Tom', 'closed', 'the', 'eyes.'], ['He', 'did', 'the', 'old', 'test', 'and', 'drove'], ['I', "don't", 'want', 'you', 'to', 'be', 'upset.'], ['I', 'think', 'you', 'ought', 'to.'], ['They', 'crushed', 'all', 'resistance.'], ['I', 'ran', 'away', 'from', 'the', 'station.'], ['Does', 'your', 'children', 'speak', 'in', 'your', 'office?'], ['Tom', 'stole', 'my', 'heart.'], ['He', 'made', 'the', 'world.'], ['She', 'is', 'gone.'], ["You're", 'nuts!'], ["They're", 'eating', 'those.'], ['Why', 'do', 'you', 'come', 'over', 'here?'], ['How', 'did', 'you', 'see', 'what', 'you', 'were', 'thinking', 'I', 'would', 'see', 'you', 'again?'], ['The', 'country', 'is', 'growing', 'a', 'country', 'in', 'the', 'case', 'in', 'the', 'case', 'in', 'a', 'large', 'country', 'of', 'life.'], ['Tom', 'and', 'Mary', 'are', 'vegetarians.'], ['I', 'rescued', 'you.'], ['I', 'think', 'they', 'know.'], ['She', 'grows', 'her', 'English', 'in', 'English.'], ["Don't", 'worry', 'about', 'your', 'time', 'yesterday.'], ['The', 'door', "won't", 'open.'], ['It', 'was', 'a', 'nice', 'night', 'and', 'four.'], ['I', "don't", 'care', 'about', 'it.'], ['We', 'met', 'three', 'children', 'in', 'three', 'guests.'], ['My', 'brother', 'is', 'stupid.'], ['Unfortunately,', 'my', 'father', "isn't", 'home.'], ['This', 'is', 'the', 'book', 'of', 'one', 'book', 'yours.'], ['Do', 'you', 'like', 'mine?'], ["There's", 'something', 'you', 'need', 'to', 'know.'], ['I', "didn't", 'shower.'], ['Tom', 'often', 'speaks', 'with', 'a', 'native', 'speaker.'], ['I', 'just', 'want', 'to', 'let', 'you', 'know', 'how', 'to', 'let', 'you', 'know', 'me.'], ["You've", 'been', 'my', 'friend.'], ['I', 'live', 'with', 'my', 'parents.'], ['That', "isn't", 'worth', 'it.'], ['People', 'should', 'all', 'the', 'whole', 'time.'], ['The', 'train', 'left', 'off.'], ['The', 'doctor', 'hid', 'the', 'baby.'], ["You're", 'very', 'clever.'], ['Why', 'do', 'you', 'not', 'stop', 'this?'], ['I', 'never', 'thought', 'it', 'would', 'be', 'this', 'bad.'], ['Tom', 'tried', 'to', 'solve', 'his', 'name.'], ['Which', 'one', 'could', 'you?'], ['I', 'know', 'Tom', 'is', 'a', 'professional', 'guy.'], ['What', 'are', 'you', 'doing', 'in', 'my', 'room?'], ['"You\'re', 'a', 'good', 'guitarist."', '"I\'d', 'like', 'to', 'think', 'I', 'am."'], ['Why', "aren't", 'you', 'staying', 'there?'], ['Do', 'you', 'know', 'in', 'French?'], ['How', 'do', 'you', 'know', 'all', 'that?'], ['Did', 'it', 'be', 'good?'], ['This', 'is', 'the', 'time', 'for', 'you.'], ['I', 'thought', 'I', 'was', 'looking', 'for', 'you.'], ['I', "can't", 'see', 'that', 'picture', 'without', 'thinking', 'of', 'my', 'childhood.'], ['We', 'saw', 'watching', 'TV', 'on', 'TV.'], ['It', 'would', 'be', 'your', 'idea', 'to', 'spend', 'the', 'rest', 'of', 'your', 'life', 'to', 'spend', 'your', 'life.'], ['My', 'watch', 'gains', 'two', 'minutes', 'a', 'day.'], ['She', 'plays', 'the', 'piano', 'when', 'he', 'plays', 'the', 'day', 'from', 'school.'], ['I', 'doubt', 'what', 'it', 'happened.'], ['Have', 'you', 'ever', 'kissed', 'before?'], ['I', 'hear', 'you', 'were', 'grounded.'], ['I', 'think', 'it', 'will', 'not', 'rain', 'tomorrow.'], ['We', "couldn't", 'meet', 'the', 'letter.'], ["He's", 'not', 'dead.'], ["I'm", 'quiet', 'today.'], ['No', 'one', 'is', 'missing.'], ['Tom', 'is', 'making', 'tea.'], ['Is', 'that', 'the', 'way', 'to', 'get', 'drunk?'], ['He', 'is', 'too', 'much', 'to', 'live', 'too', 'much.'], ['Stay', 'out', 'of', 'my', 'way.'], ['I', 'had', 'a', 'good', 'job.'], ['How', 'time', 'did', 'it', 'take', 'yesterday?'], ['I', 'had', 'no', 'choice', 'but', 'to', 'do', 'what', 'I', 'did.'], ['I', 'know', 'how', 'busy', 'you', 'are.'], ['Where', 'did', 'you', 'get', 'it?'], ["I'm", 'sorry', 'I', 'liked', 'that.'], ['We', 'voted', 'for', 'the', 'purpose', 'of', 'Japanese', 'pieces.'], ["I'm", 'looking', 'for', 'my', 'pen.'], ["They're", 'missing.'], ['There', 'are', 'more', 'times', 'like', "I'd", 'like', 'to', 'be', 'like', 'you.'], ['Can', 'you', 'check', 'the', 'dirty', 'line', 'with', 'your', 'hands?'], ['He', 'married', 'his', 'daughter', 'a', 'lawyer.'], ['Put', 'your', 'pants', 'on.'], ['I', 'know', 'that', "you're", 'a', 'loser.'], ['Tom', 'gave', 'us', 'some', 'information.'], ["I'm", 'sad.'], ["I'd", 'like', 'to', 'be', 'back', 'next', 'Monday.'], ['You', "can't", 'both', 'be', 'right.'], ['Did', 'anyone', 'let', 'you', 'come', 'here', 'in', 'here?'], ['I', 'was', 'more', 'than', 'a', 'little', 'more', 'than', 'that.'], ['Take', 'off', 'your', 'clothes.'], ["I'm", 'very', 'surprised', 'to', 'see', 'that.'], ['We', 'left', 'all', 'the', 'way', 'to', 'the', 'party', 'line.'], ['I', 'want', 'to', 'check', 'myself.'], ['I', 'have', 'read', 'this', 'book', 'before.'], ["That's", 'a', 'rumor.'], ["We'll", 'all', 'make', 'fun', 'of', 'all', 'longer.'], ["Don't", 'give', 'me', 'once', 'again.'], ['I', 'bet', "you're", 'wondering', 'how', 'this', 'works.'], ['She', 'told', 'me', 'where', 'the', 'suitcase.'], ['You', 'are', 'twice', 'as', 'strong', 'as', 'me.'], ['Tell', 'us', 'a', 'friend.'], ["I'm", 'being', 'treated', 'for', 'being', 'behavior.'], ["I'm", 'Canadian.'], ['We', "don't", 'know.'], ['I', 'tried', 'to', 'tell', 'you', 'about', 'it.'], ['Tom', 'was', 'surprised', 'to', 'be', 'surprised.'], ['All', 'of', 'a', 'pair', 'of', 'scissors.'], ['Tom', "doesn't", 'want', 'to', 'wait', 'this', 'long.'], ["I'd", 'like', 'to', 'stay', 'longer.'], ['Are', 'you', 'old', 'enough', 'to', 'drive?'], ['There', 'are', 'many', 'people', 'around', 'here.'], ['The', 'boy', 'voted', 'a', 'soccer', 'picture.'], ['We', "weren't", 'invited', 'to', 'the', 'opening', 'ceremony.'], ['You', 'can', 'save', 'other', 'people.'], ['Leave', 'me', 'alone!'], ['If', 'for', 'some', 'reason', 'that', 'should', 'happen,', 'what', 'would', 'you', 'do?'], ['The', 'train', 'was', 'about', 'to', 'leave.'], ['I', 'got', 'three', 'hundred', 'dollars.'], ['He', 'had', 'no', 'headache', 'this', 'morning.'], ['The', 'trees', 'are', 'at', 'a', 'gas', 'station.'], ['Tom', "doesn't", 'want', 'to', 'go', 'there', 'with', 'Mary.'], ["You're", 'the', 'manager.'], ['times', 'is', 'five', 'times', 'as', 'much', 'as', 'he', 'has.'], ['Everyone', 'waited.'], ['The', 'problem', 'is', 'here', 'by', 'three', 'times', 'a', 'day.'], ['My', 'uncle', 'gave', 'me', 'something', 'for', 'the', 'birthday.'], ['I', "can't", 'understand', 'him', 'to', 'read', 'my', 'English.'], ['Each', 'people', 'are', 'different.'], ['You', 'can', 'make', 'sure', 'you', 'can', 'do', 'that.'], ["I'll", 'leave.'], ['Tom', 'is', 'in', 'the', 'city.'], ['I', 'used', 'to', 'go', 'home.'], ['He', "doesn't", 'have', 'any', 'more', 'money.'], ["You'll", 'be', 'thirty', 'next', 'year.'], ['He', 'will', 'rain.'], ['We', 'all', 'did', 'it.'], ['I', 'could', 'be', 'willing', 'to', 'help', 'you,', 'but', 'that', 'I', 'have', 'a', 'place', 'to', 'help', 'you.'], ['The', 'hungry.', 'were', 'hungry.'], ["I'm", 'giving', 'you', 'the', 'one', 'for', 'the', 'party.'], ['They', 'work', 'at', 'night.'], ['They', "won't", 'be', 'so', 'longer.'], ['Quit', 'behaving', 'like', 'a', 'kid.'], ["Let's", 'go', 'back', 'the', 'meeting', 'before', 'you', 'go', 'to', 'Boston.'], ['I', 'thought', 'you', 'needed', 'money.'], ['I', "don't", 'know', 'whether', 'or', 'not.'], ['I', 'thought', 'Tom', 'had', 'a', 'cat.'], ['Stop', 'arguing.'], ['Where', 'is', 'your', 'school?'], ['I', 'think', 'you', "didn't", 'do', 'it,', 'repaired?'], ['We', 'have', 'plenty', 'of', 'snow', 'this', 'winter.'], ['Make', 'a', 'copy', 'of', 'my', 'baby', 'is', 'going', 'to', 'work.'], ['Where', 'were', 'you', 'all', 'it?'], ['Will', 'he', 'be', 'back?'], ['How', 'long', 'does', 'it', 'take', 'to', 'get', 'to', 'Okinawa', 'on', 'Facebook?'], ['Why', 'did', 'you', 'quit?'], ['He', "can't", 'speak', 'very', 'well.'], ['He', 'was', 'caught', 'in', 'the', 'face', 'with', 'his', 'face.'], ['Can', 'you', 'drive', 'a', 'car?'], ['Thanks', 'a', 'nice', 'holiday.'], ['Most', 'of', 'them', 'is', 'very', 'interesting', 'and', 'something.'], ['This', 'book', 'is', 'a', 'poet.'], ['Tom', 'is', 'naive.'], ['Some', 'of', 'us', 'are', 'inside.'], ['I', 'never', 'hope', 'that', 'again.'], ['Can', 'you', 'put', 'up', 'with', 'the', 'case', 'with', 'him,'], ['I', 'caught', 'it', 'by', 'the', 'sleeve.'], ['She', 'is', 'very', 'delighted', 'to', 'meet', 'you.'], ['Tom', 'is', 'a', 'student', 'at', 'least', 'a', 'Chinese', 'student.'], ['Somebody', 'needs', 'to', 'get', 'sick.'], ['Tom', 'said', 'he', "didn't", 'tell', 'Mary', 'that.'], ['Tom', "couldn't", 'have', 'done', 'that', 'better.'], ['Give', 'me', 'very', 'nice', 'of', 'you.'], ['Does', 'Tom', 'have', 'this', 'chair', 'in', 'this', 'room?'], ['I', 'need', 'to', 'change', 'clothes.'], ['The', 'answer', 'is', 'all', 'nonsense.'], ['Have', 'you', 'had', 'a', 'relatively', 'price', 'from', 'a', 'relatively', 'price', 'of', 'London?'], ["It's", 'impossible', 'to', 'believe', 'you.'], ['It', 'would', 'be', 'things', 'to', 'see', 'what', 'things', 'would', 'be', 'at', 'coming', 'from', 'doing', 'things', 'today.'], ['I', 'understand', 'perfectly.'], ["That's", 'too', 'good', 'to', 'be', 'true.'], ['Tom', 'said', 'he', 'wanted', 'to', 'say', 'anything.'], ['The', 'game', 'was', 'broke.'], ["What's", 'wrong', 'with', 'here?'], ["It's", 'probably', 'likely', 'a', 'phase.'], ["You're", 'not', 'prepared', 'to', 'tell', 'the', 'truth.'], ['I', 'realized', 'he', 'could', 'help', 'him', 'soon.'], ['I', 'ran', 'into', 'the', 'light', 'after', 'five', 'boxes'], ['Of', 'course,', 'I', 'thought', 'I', "won't", 'be', 'earlier.'], ['Something', 'happened', 'here,', 'but', 'I', "didn't", 'know', 'what.'], ['My', 'bicycle', 'is', 'a', 'flat.'], ["I've", 'been', 'following', 'you.'], ['The', 'truth', 'of', 'this', 'machine', 'is.'], ['Everyone', 'and', 'his', 'children', 'have', 'its', 'body', 'and', 'his', 'brothers.'], ["Don't", 'forget', 'to', 'put', 'on', 'sunscreen.'], ['I', 'had', 'to', 'see', 'you', 'again.'], ['Tom', 'had', 'a', 'lot', 'of', 'children', 'to', 'finish', 'our', 'friends.'], ['Do', 'you', 'know', 'who', 'we', 'are?'], ["I'm", 'going', 'to', 'this', 'afternoon.'], ['Which', 'one', 'is', 'the', 'oldest', 'of', 'the', 'two?'], ['I', 'just', 'want', 'to', 'know', 'what', "I'm", 'going', 'to', 'make', 'mistakes.'], ['He', 'cannot', 'write', 'a', 'letter', 'in', 'public.'], ['From', 'life', 'and', 'I', 'am', 'going', 'to', 'see', 'it.'], ['You', "didn't", 'complain,', "didn't", 'you?'], ["Don't", 'leave', 'the', 'bicycle', 'when', 'I', 'was', 'a', 'child.'], ['He', 'inherited', 'the', 'house.'], ['Is', 'this', 'your', 'family?'], ['Why', 'is', 'the', 'life', 'so', 'if', 'you', 'were', 'in', 'life?'], ["It's", 'not', 'going', 'to', 'be', 'serious.'], ['Congress', 'made', 'the', 'fact', 'that', 'he', 'went', 'north.'], ['She', 'is', 'studying', 'mathematics.'], ['Could', 'I', 'tell', 'you', 'something', 'please?'], ['Tom', 'picked', 'the', 'book', 'on', 'the', 'table.'], ['I', 'thought', "we'd", 'be', 'this', 'up.'], ['It', "doesn't", 'seem', 'good.'], ['What', 'you', 'told', 'me', 'that', 'you', 'say?'], ['I', 'want', 'to', 'know', 'what', 'you', 'mean.'], ['She', 'took', 'advantage', 'of', 'her', 'coat.'], ["I'm", 'very', 'interested', 'in', 'stories.'], ["He's", 'in', 'Tokyo.'], ['Are', 'they', 'going', 'with', 'me?'], ['The', 'lines', 'lines', 'on', 'the', 'government', 'lines', 'on', 'the', 'company', 'on', 'our', 'teeth.'], ['Humans', 'only', 'live', 'when', 'the', 'year', 'lasted', 'years.'], ["You're", 'looking', 'for', 'a', 'child.'], ['No', 'matter', 'what', 'you', 'say,', 'I', "don't", 'remember.'], ['What', 'do', 'you', 'usually', 'eat', 'lunch', 'in', 'lunch?'], ["He's", 'young', 'and', 'attractive.'], ["That's", 'incredible.'], ['I', 'was', 'chosen', 'for', 'that.'], ['Attack!'], ["She's", 'just', 'up', 'for', 'me', 'to', 'know', 'better.'], ['You', 'know', 'what', 'I', 'can', 'hear.'], ['Please', 'drink', 'the', 'coffee', 'left.'], ['Everything', 'is', 'missing.'], ['The', 'light', 'bulb', 'light.'], ["I'll", 'kill', 'you.'], ['We', 'have', 'a', 'half-dozen', 'eggs.'], ['I', 'was', 'tired.'], ['You', 'look', 'very', 'tired.'], ['How', 'much', 'do', 'you', 'want', 'to', 'do?'], ["It's", 'a', 'pity', 'that', 'you', "can't", 'come', 'with', 'us', 'today.'], ["I'm", 'glad', 'to', 'not', 'change', 'our', 'opinions', 'of', 'people.'], ["That's", 'enough.'], ['I', "don't", 'feel', 'too', 'good.'], ['He', 'is', 'always', 'working', 'hard.'], ['When', 'did', 'you', 'get', 'there?'], ['She', 'is', 'afraid', 'to', 'catch', 'the', 'movie', 'by', 'movies.'], ['Tom', 'goes', 'there', 'three', 'times', 'a', 'week.'], ['I', 'hate', 'that', 'I', "can't", 'what', 'I', 'can', 'do.'], ["Let's", 'start', 'at', 'the', 'end', 'of', 'jail.'], ['He', 'is', 'a', 'talented', 'writer.'], ['I', "don't", 'love', 'homework.'], ['My', 'grandfather', 'is', 'true.'], ['Your', 'hair', 'is', 'different.'], ['How', 'do', 'I', 'get', 'on', 'your', 'hand?'], ['Do', 'you', 'have', 'some', 'money?'], ['Put', 'your', 'part.'], ['They', 'want', 'you', 'dead.'], ['The', 'guy', 'of', 'a', 'man', 'with', 'a', 'guy', 'at', 'least', "don't."], ['I', 'think', 'I', 'could', 'help', 'that.'], ['I', 'hate', 'this', 'place.'], ['He', 'is', 'about', 'to', 'visit', 'Paris.'], ['These', 'pictures', 'were', 'painted', 'by', 'him.'], ['She', 'advised', 'him', 'not', 'to', 'help', 'her', 'house,', 'but', 'he', "wouldn't", 'listen', 'to', 'himself.'], ['I', 'can', 'sing.'], ['Why', "don't", 'you', 'sit', 'down', 'on', 'the', 'couch?'], ['I', "should've", 'thought', 'about', 'that', 'seriously.'], ['I', 'own', 'a', 'computer.'], ['I', "can't", 'really', 'remember.'], ["I'd", 'be', 'happy', 'to', 'sing', 'for', 'you.'], ['The', 'two', 'of', 'Tom', 'has', 'been', 'studying', 'to', 'college.'], ['Our', 'pants', 'are', 'too', 'big.'], ['Do', 'you', 'have', 'one', 'of', 'these?'], ["That's", 'my', 'horse.'], ['You', "can't", 'just', 'come', 'here', 'without', 'an', 'appointment.'], ['How', 'did', 'you', 'find', 'out?'], ['I', 'won.'], ['I', "should've", 'done', 'that', 'way.'], ["You're", 'not', 'wrong', 'with', 'this?'], ['The', 'best', 'man', 'who', "doesn't", 'feel', 'like', 'the', 'same', 'way.'], ['Either', 'you', 'or', 'you', 'need', 'me.'], ['I', 'was', 'the', 'one', 'to', 'be', 'the', 'way', 'to', 'not', 'the', 'party.'], ['He', 'did', 'it', 'before.'], ['How', 'does', 'it', 'seem', 'to', 'that?'], ["What's", 'there', 'to', 'go?'], ["You're", 'wasting', 'time.'], ['The', 'baby', 'convict', 'of', 'her', 'office.'], ['Tom', "can't", 'win.'], ['I', 'love', 'you.'], ['Give', 'me', 'a', 'hammer.'], ["I'm", 'stunned.'], ['We', 'won.'], ['Water', 'the', 'tap', 'one', 'of', 'the', 'ice', 'of', 'the', 'ice', 'cream.'], ['It', 'was', 'just', 'a', 'joke.'], ['What', 'is', 'the', 'universe?'], ["What's", 'the', 'purpose', 'for', 'him?'], ['I', 'want', 'him', 'work', 'out', 'of', 'work', 'quickly.'], ["Don't", 'let', 'me', 'know', 'you', 'made', 'up', 'the', 'other', 'day.'], ['The', 'room', 'is', 'dark.'], ['It', 'was', 'disgusting.'], ['Let', 'me', 'buy', 'it', 'with', 'that.'], ['I', 'never', 'thought', "we'd", 'happened.'], ['You', 'have', 'to', 'stop.'], ['He', 'hates', 'spiders.'], ['Tom', 'seems', 'to', 'know', 'all', 'that', 'already.'], ['He', 'is', 'in', 'the', 'least', 'expensive', 'than', 'he', 'is', 'in', 'the', 'best', 'of', 'Japan.'], ['Take', 'a', 'little', 'sleep.'], ['It', "doesn't", 'bother', 'you', 'if', 'you', "don't", 'recognize', 'us.'], ["I'm", 'the', 'one', 'who', 'painted', 'this', 'picture.'], ['He', 'sang', 'as', 'old', 'songs.'], ['My', 'cat', 'is', 'watching', 'me.'], ['What', 'is', 'the', 'air', 'about?'], ['What', 'exactly', 'are', 'we', 'fighting?'], ['He', 'speaks', 'Arabic.'], ['May', 'I', 'have', 'this', 'orange?'], ["I'm", 'not', 'going', 'to', 'come.'], ['Where', 'did', 'you', 'learn', 'that?'], ['Tom', 'showed', 'Mary', 'a', 'lot.'], ["We'd", 'like', 'you', 'to', 'sing', 'some', 'songs.'], ["There's", 'nothing', 'without', 'you.'], ['Tom', 'waited', 'a', 'long', 'line', 'for', 'the', 'concert.'], ['He', 'solved', 'the', 'light', 'he', 'learned', 'it.'], ['He', 'asked', 'me', 'what', 'I', 'was', 'asked', 'for.'], ['I', "didn't", 'notice', 'that.'], ["There's", 'no', 'one', 'in', 'the', 'room.'], ['I', 'like', 'candlelight.'], ['We', 'met', 'each', 'other.'], ['One', 'of', 'us', 'met', 'the', 'meeting.'], ['I', 'do', 'it', 'for', 'you.'], ['I', 'had', 'no', 'idea', 'you', 'were', 'so', 'young.'], ['No', 'one', 'will', 'believe', 'you.'], ['Tom', 'has', 'a', 'big', 'head.'], ['I', 'have', 'no', 'insurance.'], ['I', 'think', 'you', 'need', 'to', 'find', 'a', 'part-time', 'job.'], ['Not', 'them', 'is', 'a', 'great', 'deal.'], ['Let', 'me', 'choose', 'a', 'few', 'words', 'by', 'email.'], ['When', 'will', 'the', 'party', 'close?'], ['He', 'had', 'no', 'match', 'for', 'his', 'tears.'], ['He', 'ran', 'away', 'from', 'school', 'on', 'time.'], ['Fishing', "isn't", 'allowed', 'here.'], ['Tom', 'did', 'some', 'cookies.'], ['I', 'have', "I've", 'just', 'need.'], ['This', 'is', 'the', 'best', 'player', 'in', 'the', 'sentence.'], ["Don't", 'deceive', 'him.'], ['You', "don't", 'have', 'to', 'explain.'], ['The', 'American', 'of', 'us', 'were', 'high.'], ['I', 'want', 'you', 'to', 'know', 'it.'], ['I', 'went,', 'too.'], ['He', 'is', 'no', 'longer', 'in', 'Boston', 'anymore.'], ['Take', 'the', 'mine.'], ['The', 'world', 'desires', 'peace.'], ['I', 'just', "don't", 'want', 'some', 'time', 'left.'], ['May', 'I', 'pay', 'for', 'the', 'bill?'], ["I'm", 'studying', 'Korean.'], ['I', "don't", 'want', 'to', 'talk', 'to', 'anyone.'], ["Don't", 'let', 'us', 'not', 'let', 'us', 'smile.'], ['She', 'stopped', 'talking.'], ['If', 'you', 'ever', 'sit', 'too', 'many', 'lies,', 'people', 'would', 'understand.'], ['I', 'have', 'to', 'do', 'something', 'before.'], ['I', 'really', "don't", 'miss', 'you.'], ['It', 'was', 'a', 'bad', 'decision.'], ['If', 'you', 'give', 'up', 'the', 'contract', "you'll", 'be', 'able', 'to', 'get', 'a', 'change', 'of', 'jam.'], ['Where', 'did', 'you', 'find', 'this', 'wallet?'], ["You've", 'got', 'some', 'cream', 'on', 'the', 'subject.'], ["I'm", 'not', 'here.'], ["That's", 'all', 'yours.'], ['The', 'freight', 'of', 'people', 'used', 'to', 'set', 'up', 'at', 'the', 'airport.'], ['Both', 'of', 'the', 'answers', 'are', 'heavy.'], ['He', 'jumped', 'into', 'the', 'water.'], ['What', 'kind', 'of', 'bread', 'do', 'you', 'like', 'to', 'travel?'], ['I', 'believe', 'that.'], ['Tom', 'is', 'exactly', 'like', 'us.'], ['He', 'forgot', 'his', 'name.'], ['I', 'am', 'not', 'here', 'for', 'that', 'reason.'], ['She', 'took', 'her', 'ring', 'after', 'her', 'husband.'], ['It', 'was', 'my', 'best', 'friend', 'at', 'the', 'best', 'friend', 'for', 'me.'], ['Can', 'you', 'do', 'that?'], ['It', 'was', 'a', 'good', 'idea.'], ['Tell', 'me', 'the', 'children', 'to', 'do', 'the', 'beds.'], ["You're", 'unethical.'], ['You', 'know', 'nothing.'], ['Tom,', "I'm", 'not', 'telling', 'you.'], ['I', 'had', 'to', 'get', 'rid', 'of', 'my', 'own.'], ['You', 'were', 'so', 'beautiful.'], ["That's", 'the', 'best', 'thing', 'that', 'can', 'be', 'seen.'], ['There', 'was', 'no', 'point', 'on', 'the', 'island.'], ["I'd", 'like', 'to', 'apologize', 'for', 'this', 'morning.'], ['What', 'would', 'they', 'do', 'to', 'do?'], ['She', 'was', 'advised', 'by', 'him', 'to', 'lose', 'weight.'], ["We're", 'very', 'tired.'], ["There's", 'a', 'black', 'and', 'white', 'look', 'out', 'and', 'four.'], ['I', "wouldn't", 'do', 'that.'], ["I'm", 'going', 'to', 'see', 'it', 'tomorrow.'], ['The', 'fence', 'was', 'delayed', 'by', 'two'], ['Did', 'anyone', 'take', 'a', 'picture', 'of', 'this?'], ['They', 'regarded', 'him', 'to', 'get', 'out', 'of', 'the', 'future', 'of', 'recognition.'], ['We', 'have', 'to', 'stay', 'and', 'stay', 'together.'], ['I', "can't", 'get', 'rid', 'of', 'my', 'privacy.'], ['Health', 'is', 'larger', 'than', 'wealth.'], ['I', 'have', 'no', 'one', 'for', 'a', 'walk.'], ['I', 'cut', 'out', 'of', 'breath.'], ['She', 'made', 'up', 'the', 'new', 'bar.'], ['I', "can't", 'fix', 'the', 'computer.'], ['He', 'threw', 'a', 'stone', 'at', 'the', 'dog.'], ['I', 'have', 'a', 'bad', 'habit.'], ['My', 'cat', 'got', 'stuck', 'up', 'a', 'tree.'], ['I', 'wonder', 'if', 'they', 'smoke.'], ['Would', 'you', 'like', 'to', 'call', 'a', 'cab?'], ['I', 'remember', 'you', 'when', 'you', 'were', 'in', 'love', 'with', 'me.'], ['Do', 'you', 'believe', 'me', 'for', 'a', 'fool?'], ['He', 'got', 'a', 'wonderful', 'time.'], ['Tom', 'often', 'suffers', 'from', 'headaches.'], ['I', 'am', 'worried.'], ["It's", 'a', 'nice', 'young', 'man.'], ['Who', 'are', 'you', 'going', 'with?'], ['It', 'seems', 'stupid.'], ['I', 'did', 'this', 'for', 'my', 'son.'], ["Someone's", 'coming.'], ['Would', 'you', 'be', 'willing', 'to', 'help', 'me', 'clean', 'the', 'garage?'], ['I', 'often', 'walk', 'on', 'the', 'dictionary.'], ["That's", 'fun.'], ["You'd", 'better', 'do', 'anything', 'you', 'say.'], ['Nothing', 'makes', 'any', 'sense', 'to', 'all', 'nonsense.'], ['It', 'is', 'getting', 'warmer', 'and', 'there', 'there', 'day.'], ['Avoid', 'walk', 'up', 'at', 'the', 'moment.'], ['Could', 'you', 'check', 'this', 'for', 'me?'], ['I', 'just', 'want', 'to', 'be', 'clear.'], ['Tom', 'came', 'to', 'see', 'you.'], ['You', 'must', 'leave.'], ['They', 'all', 'drank.'], ['We', 'have', 'to', 'have', 'a', 'problem', 'with', 'the', 'ability', 'to', 'be', 'seen.'], ['I', 'was', 'stupid', 'enough', 'to', 'believe', 'Tom.'], ['Do', 'you', 'have', 'anything', 'planned', 'for', 'dinner?'], ['Is', 'this', 'your', 'girlfriend?'], ["You'll", 'be', 'a', 'bit', 'of', 'day.'], ['I', 'just', "can't", 'handle', 'it.'], ["It's", 'not', 'that', 'good.'], ['Can', 'you', 'help', 'us', 'to', 'kids?'], ['I', 'used', 'to', 'be', 'surprised', 'when', 'people', 'were', 'at', 'the', 'concert.'], ['May', 'I', 'do', 'it', 'work?'], ['If', 'it', "weren't", 'not', 'to', 'go', 'there', 'all', 'the', 'time,', "it's", 'not', 'true.'], ['Tom', 'made', 'a', 'choice.'], ['I', 'just', "don't", 'want', 'you', 'to', 'get', 'hurt.'], ['How', 'much', 'is', 'the', 'right', 'thing', 'to', 'say', 'that?'], ['The', 'room', 'was', 'in', 'the', 'best', 'of', 'the', 'world.'], ['Your', 'face', 'turned', 'into', 'a', 'scenery.'], ['This', 'soup', 'is', 'worth', 'remembering.'], ['I', 'have', 'a', 'big', 'sleep.'], ["It's", 'too', 'long.'], ['You', 'need', 'to', 'buy', 'permission.'], ['You', 'were', 'always', 'very', 'kind.'], ['The', 'work', 'is', 'almost', 'done.'], ['Who', 'else', 'do', 'you', 'like', 'your', 'team?'], ['I', 'found', 'this', 'watch', 'at', 'the', 'station.'], ['She', 'sat', 'on', 'his', 'back.'], ['What', 'does', 'that', 'do', 'this?'], ['Did', 'you', 'buy', 'it', 'at', 'the', 'market', 'market?'], ['This', 'is', 'yours,', "isn't", 'it?'], ['All', 'the', 'water', 'had', 'a', 'lot', 'of', 'water', 'in', 'the', 'concert', 'together.'], ['Be', 'calm.'], ['I', 'made', 'a', 'beard', 'without', 'a', 'regular', 'personality.'], ['Tom', 'is', 'a', 'brave', 'man.'], ['Tom', 'died', 'on', 'Saturdays.'], ['I', 'am', 'looking', 'forward', 'to', 'hearing', 'from', 'you', 'at', 'the', 'news.'], ['Without', 'your', 'help,', 'I', 'would', 'have', 'failed.'], ["I'm", 'not', 'in', 'a', 'hurry.'], ['Who', 'forced', 'you', 'to', 'do', 'that?'], ['How', 'can', 'you', 'say', 'such', 'a', 'book?'], ['I', 'know', 'what', 'I', 'must', 'know.'], ['Tom', 'built', 'their', 'own', 'house.'], ['He', 'has', 'computers.'], ['I', 'knew', 'you', 'will', 'get', 'it', 'in', 'the', 'morning.'], ['Who', 'do', 'you', 'listen', 'to', 'this?'], ['Is', 'that', 'why', 'they', 'died?'], ['Please', 'let', 'the', 'door', 'and', 'let', 'me', 'down.'], ['I', "don't", 'know', 'how', 'to', 'drive.'], ['Tom', 'is', 'now', 'in', 'danger.'], ['What', 'do', 'you', 'like', 'about', 'him?'], ['Tom', 'took', 'a', 'lot', 'of', 'pictures.'], ['I', 'think', "we're", 'getting', 'close.'], ['What', 'are', 'you', 'going', 'to', 'do', 'this', 'tomorrow?'], ['Just', 'quit.'], ['This', 'is', 'the', 'way', 'of', 'the', 'others.'], ["That's", 'a', 'man', 'of', 'mine.'], ['All', 'you', 'have', 'is', 'this', 'way', 'to', 'help.'], ["You're", 'too', 'young', 'to', 'be', 'young', 'to', 'drive.'], ['Do', 'you', 'love', 'him?'], ['The', 'two', 'of', 'my', 'mother.'], ['I', 'want', 'to', 'quit', 'this', 'island.'], ['I', "didn't", 'know', 'you', 'got', 'it', 'with', 'me.'], ["We'll", 'give', 'up.'], ['If', 'I', 'were', 'you,', 'I', "wouldn't", 'do', 'such', 'such', 'a', 'thing.'], ["We're", 'not', 'open.'], ["You'll", 'have', 'been', 'all', 'the', 'lights', 'all', 'to', 'be', 'all', 'the', 'ears.'], ['How', 'much', 'did', 'we', 'have', 'to', 'get', 'so', 'far?'], ['Do', 'I', 'look', 'busy', 'again?'], ["I'm", 'very', 'happy', 'with', 'your', 'job.'], ["Let's", 'look', 'after', 'him.'], ['I', 'never', 'thought', 'this', 'question', 'will', 'happen.'], ['I', 'feel', 'a', 'little', 'awkward.'], ['Think', 'of', 'your', 'careful', 'by', 'the', 'rest', 'of', 'your', 'mind', 'if', 'we', 'should', 'get', 'a', 'sunburn.'], ['Who', 'lives', 'in', 'the', 'room', 'in', 'the', 'room?'], ['When', 'he', 'heard', 'a', 'man', 'is', 'close', 'to', 'the', 'conference.'], ['Tom', "won't", 'come', 'to', 'Boston', 'without', 'Mary.'], ['All', 'of', 'them', 'are', 'teachers.'], ['Tomorrow', 'play', 'the', 'play', 'he', 'will', 'play', 'tennis.'], ['He', 'lives', 'with', 'his', 'mother.'], ['This', 'is', 'not', 'your', 'concern.'], ["I'm", 'used', 'to', 'the', 'edge', 'of', 'the', 'building.'], ["You're", 'never', 'going', 'to', 'believe', 'it.'], ['We', 'should', 'be', 'able', 'to', 'stay', 'for', 'you.'], ['I', 'suppose', "it's", 'time', 'for', 'himself.'], ['He', 'is', 'in', 'front', 'of', 'her', 'class.'], ["We're", 'going', 'to', 'have', 'to', 'get', 'the', 'right', 'to', 'take', 'care', 'of', 'the', 'wrong', 'day.'], ['Did', 'you', 'have', 'breakfast', 'this', 'morning?'], ['I', 'want', 'to', 'talk', 'to', 'you', 'about', 'this', 'report.'], ['It', 'was', 'disgusting.'], ['Tom', 'is', 'a', 'relief.'], ['May', 'I', 'have', 'to', 'eat', 'now?'], ['The', 'dog', 'is', 'falling.'], ['I', 'was', 'being', 'beautiful.'], ['When', 'did', 'you', 'meet', 'my', 'sister', 'for', 'your', 'sister', 'for', 'London?'], ['He', 'had', 'some', 'cookies.'], ['Everything', 'is', 'ready', 'for', 'you', 'to', 'decide.'], ["I'm", 'interfering.'], ['Tom', 'wanted', 'Mary', 'to', 'marry', 'Mary', 'back.'], ['We', 'are', 'lazy.'], ['I', 'feel', 'bad', 'that', 'you', 'have', 'no', 'yet.'], ["I'd", 'like', 'to', 'wake', 'up', 'at', 'seven', 'tomorrow', 'at', '2:30.'], ['Why', "don't", 'you', 'quit?'], ["You've", 'gone', 'too', 'far.'], ["I'm", 'going', 'to', 'ask', 'you', 'to', 'your', 'attention.'], ['I', 'watch', 'a', 'lot', 'of', 'mistakes.'], ['She', 'is', 'going', 'to', 'be', 'lifted', 'up.'], ['I', "don't", 'have', 'a', 'lot', 'of', 'time', 'for', 'this.'], ['If', 'Tom', 'is', 'being', 'held', 'in', 'the', 'meeting', 'that', 'he', 'will', 'be', 'held', 'in', 'your', 'town', 'so', 'not', 'be', 'an', 'speaker.'], ["I'm", 'being', 'paranoid.'], ['What', 'Tom', 'said', 'said', 'was', 'lying.'], ['He', 'drinks', 'without', 'drinking', 'drinking', 'food', 'without', 'sugar.'], ['I', 'got', 'all', 'the', 'evidence.'], ["There's", 'no', 'way', 'of', 'watching', 'people.'], ['Is', 'Tom', 'looking?'], ['We', 'walked', 'along', 'the', 'river.'], ['Did', 'I', 'hear', 'you', 'talking', 'about?'], ['I', 'feel', 'good', 'to', 'go.'], ['Tom', 'gave', 'Mary', 'his', 'phone', 'number.'], ['Why', 'are', 'you', 'going', 'to', 'leave', 'so', 'early?'], ['I', 'want', 'you', 'to', 'get', 'in', 'your', 'car.'], ['I', 'was', 'naive.'], ['Take', 'care', 'of', 'yourselves.'], ['I', 'think', 'you', 'need', 'a', 'vacation.'], ['There', 'is', 'no', 'one', 'else.'], ["You're", 'so', 'beautiful', 'in', 'that', 'dress.'], ["I'm", 'sure', 'this', 'is', 'a', 'misunderstanding.'], ["It's", 'possible', 'to', 'eat', 'soup', 'with', 'a', 'fork.'], ['If', 'you', 'want', 'to', 'do', 'a', 'nice', 'time.'], ['Did', 'you', 'sleep', 'in', 'here?'], ['We', 'decided', 'to', 'postpone', 'the', 'meeting', 'next', 'Monday.'], ['The', 'loss', 'of', 'several', 'has', 'failed.'], ['We', 'must', 'go', 'shopping.'], ['You', "should've", 'done', 'something', 'with', 'us.'], ['It', 'must', 'be', 'the', 'cops.'], ['Do', 'you', 'know', 'a', 'small', 'proverb', 'where', 'he', 'can', 'take', 'a', 'little', 'more?'], ['I', "can't", 'tell', 'you', 'how', 'happy', 'I', 'am', 'that', "you've", 'come', 'to', 'visit', 'us.'], ['Have', 'you', 'ever', 'told', 'Tom', 'what', 'happened', 'to', 'Mary?'], ['They', 'are', 'not', 'the', 'best', 'of', 'the', 'means', 'to', 'understand', 'the', 'fact', 'that', 'is', 'not', 'true.'], ['I', "don't", 'look', 'well.'], ['Could', 'you', 'please', 'read', 'this', 'book', 'for', 'me,', 'please?'], ['This', 'is', 'a', 'very', 'interesting', 'rule.'], ['Their', 'car', 'broke', 'away', 'from', 'the', 'end.'], ['It', 'may', 'have', 'happened', 'last', 'night.'], ['It', 'might', 'be', 'nothing.'], ['I', 'want', 'to', 'walk.'], ['May', 'I', 'introduce', 'you?'], ['She', 'invited', 'me', 'to', 'the', 'house', 'for', 'sale.'], ['Please', 'close', 'the', 'TV', 'on.'], ['Tom', 'lost', 'his', 'job.'], ['I', 'saw', 'Tom', 'talking', 'about', 'Mary.'], ["I'll", 'take', 'it', 'right', 'now.'], ['Is', 'this', 'place', 'safe?'], ['Tom', "didn't", 'seem', 'to', 'be', 'treated', 'as', 'Mary.'], ['My', 'uncle', 'did', 'it', 'at', 'the', 'airport', 'every', 'morning.'], ['I', 'live', 'in', 'Boston.'], ['If', 'it', 'had', 'not', 'been', 'back', 'because', 'I', "would've", 'arrived', 'sooner.'], ['Once', 'the', 'ability', 'to', 'keep', 'you', 'out', 'of', 'breath.'], ['A', 'black', 'eyes', 'left', 'the', 'door', 'open.'], ['I', "don't", 'appreciate', 'your', 'suggestion.'], ['Is', 'it', 'supposed', 'to', 'smoke,', "isn't", 'he?'], ['Can', 'I', 'ask', 'you', 'alone', 'in', 'a', 'second', 'time.'], ['Her', 'eyes', 'are', 'playing', 'and', 'playing', 'volleyball.'], ['The', 'streets', 'were', 'built', 'in', 'many', 'houses', 'beautiful.'], ['I', "don't", 'think', 'you', 'really', 'want', 'to', 'know.'], ['Tom', 'is', 'wearing', 'wearing', 'glasses.'], ['It', 'depends', 'on', 'the', 'earth.'], ['Tom', "doesn't", 'like', 'politics.'], ['We', 'had', 'a', 'lot', 'of', 'summer', 'summer.'], ["It's", 'too', 'long.'], ['People', 'like', 'to', 'know', 'men', 'like', 'licking'], ['It', 'is', 'going', 'to', 'snow', 'it.'], ['It', 'is', 'worth', 'the', 'man', 'who', 'did', 'it', 'like', 'that.'], ["I'm", 'pretty', 'sure', 'this', 'is', "Tom's", 'umbrella.'], ['I', "didn't", 'realize', 'you', 'were', 'Canadian.'], ['If', 'you', 'see', 'Tom,', 'please', 'tell', 'him', 'something.'], ["She's", 'not', 'here', 'yet.'], ['You', 'were', "Tom's", 'Canadian', 'friend.'], ['I', 'love', 'playing', 'Chopin.'], ['My', 'cat', 'pressed', 'his', 'head', 'against', 'my', 'shoulder.'], ['He', "couldn't", 'go', 'to', 'any', 'cold', 'weather.'], ['I', 'caught', 'it', 'in', 'the', 'mayor.'], ['I', 'want', 'to', 'repay', 'her.'], ['These', 'children', 'are', 'cheerful.'], ['They', 'all', 'drank.'], ['You', 'were', 'drunk,', "weren't", 'you?'], ["They're", 'looking', 'for', 'us.'], ['You', "can't", 'take', 'this', 'with', 'you.'], ['I', 'figured', 'the', 'broken', 'face.'], ['She', "isn't", 'able', 'to', 'swim.'], ['I', 'saw', 'that', 'girl', 'before.'], ['I', 'want', 'to', 'work', 'harder.'], ['Any', 'time', 'will', 'he', 'play', 'soccer.'], ["You're", 'not', 'a', 'bodybuilder,', "aren't", 'you?'], ['I', "can't", 'believe', 'you', 'said', 'that.'], ['The', 'woman', 'there', 'was', 'a', 'meeting', 'that', 'we', 'ever', 'arrived.'], ['I', 'like', 'this.'], ["We're", 'on', 'your', 'plan.'], ['We', 'have', 'to', 'stop.'], ["I'd", 'like', 'to', 'visit', 'Australia.'], ['You', 'have', 'two', 'balls.'], ['I', 'felt', 'embarrassed.'], ['How', 'is', 'he', 'going', 'to', 'happen?'], ['The', 'box', 'was', 'closed.'], ['No', 'one', 'would', 'listen', 'to', 'me.'], ['The', 'ice', 'is', 'an', 'urgent', 'need', 'for', 'teenagers.'], ['Here', 'is', 'a', 'stranger', 'here.'], ["I'm", 'tired', 'of', 'buying', 'enough.'], ["I'm", 'happy', 'to', 'see', 'you', 'here.'], ['Take', 'the', 'time', 'you', 'need.'], ['I', "didn't", 'have', 'time', 'to', 'help', 'you', 'with', 'it.'], ['You', 'met', 'the', 'person', 'I', 'met', 'you.'], ['Mary', 'got', 'bored', 'when', 'she', 'saw', 'me.'], ['How', 'many', 'guards', 'are', 'there', 'now?'], ['Put', 'it', 'in', 'a', 'few', 'minutes.'], ['I', 'understand', 'your', 'friendship', 'perfectly.'], ['She', 'was', 'constantly', 'not', 'at', 'night.'], ['I', 'love', 'her', 'sister', 'a', 'lot.'], ['My', 'parents', 'are', 'both', 'dead.'], ['I', 'want', 'to', 'stay', 'in', 'trouble.'], ['You', 'have', 'been', 'a', 'crush', 'today.'], ['My', 'husband', 'and', 'father', 'both', 'is', 'still', 'asleep.'], ['They', 'have', 'changed', 'a', 'lot.'], ['I', 'was', 'looking', 'for', 'something', 'than', 'you.'], ['I', 'understand', "Tom's", 'behavior.'], ['He', "didn't", 'look', 'happy.'], ['He', 'was', 'so', 'busy', 'when', 'he', 'was', 'crying.'], ['You', 'should', 'probably', 'speak', 'a', 'little', 'more', 'slower.'], ['Tom', 'is', 'almost', 'waiting', 'for', 'Mary.'], ['Do', 'you', 'want', 'to', 'come', 'over', 'and', 'sit', 'down?'], ['The', 'bus', 'leaves', 'the', 'bus', 'driver', 'to', 'the', 'corner.'], ['I', 'know', 'Tom', 'had', 'to', 'do', 'that.'], ['Keep', 'away', 'from', 'the', 'fort', 'while', 'I', 'was', 'a', 'child.'], ['There', 'were', 'everywhere.'], ['I', 'was', 'promoted.'], ['I', 'want', 'a', 'racket.'], ['I', 'know', "I'm", 'being', 'curious.'], ['Take', 'it', 'on.'], ['They', 'went', 'to', 'the', 'restaurant', 'restaurant.'], ['Would', 'you', 'like', 'to', 'visit', 'the', 'White', 'House', 'someday?'], ['Take', 'a', 'matter', 'what', 'he', 'is', 'going', 'to', 'rain.'], ['A', 'bow', 'broke', 'over', 'with', 'a', 'flower', 'in', 'his', 'face.'], ["That's", 'a', 'frightening', "isn't", 'it?'], ['Everyone', 'was', 'stunned.'], ['Tom', 'is', 'the', 'fact', 'that', "he's", 'tired.'], ['I', "don't", 'have', 'time', 'to', 'tell', 'the', 'weather', 'like', 'to', 'do.'], ['The', 'taxi', 'had', 'to', 'run', 'for', 'a', 'walk.'], ['The', 'thief', 'ran', 'into', 'the', 'world', 'before', 'entering', 'the', 'house.'], ['I', "don't", 'know', 'how', 'to', 'do', 'it.'], ['I', 'painted', 'the', 'blue.'], ['I', 'must', 'go', 'to', 'sleep.'], ['I', 'believed', 'you.'], ['How', 'did', 'you', 'come', 'to', 'this', 'idea', 'to', 'work?'], ['Those', 'are', 'the', 'other', 'we', 'should', 'be', 'punished.'], ['Every', 'country', 'is', 'growing', 'with', 'its', 'countries.'], ['He', "doesn't", 'make', 'sense.'], ['I', 'almost', 'gave', 'him', 'half', 'a', 'week.'], ['Tom', "didn't", 'know', 'that', 'Mary', 'was', 'unwilling', 'to', 'Alice.'], ['Tom', 'looked', 'a', 'little', 'skeptical.'], ['Websites', 'collect', 'information', 'on', 'you.'], ['Be', 'careful', 'with', 'what', 'you', 'do.'], ['You', 'should', 'be', 'sure', 'that', 'he', 'is', 'to', 'be', 'at', 'home', 'before', 'he', 'is', 'in.'], ["That's", 'not', 'funny.'], ['I', 'require', 'your', 'assistance.'], ['I', 'think', "it's", 'time', 'for', 'me', 'to', 'walk', 'this', 'time', 'of', 'tea.'], ['He', 'is', 'lazy.'], ["I'll", 'always', 'remember', 'you.'], ['You', 'seem', 'to', 'be', 'very', 'understanding.'], ["I'll", 'be', 'there', 'at', 'six', "o'clock."], ["Don't", 'you', 'want', 'to', 'be', 'in', 'love', 'again?'], ['When', 'she', 'tried,', 'is', 'going', 'to', 'be', 'treated', 'in', 'spite', 'of', 'the', 'air', 'ways.'], ["You'll", 'write', 'your', 'shoes.'], ['I', 'think', 'you', 'all', 'like', 'your', 'here.'], ['Do', 'you', 'know', 'a', 'reason?'], ["You're", 'hiding', 'me', 'with', 'you.'], ['Your', 'pronunciation', 'is', 'easily', 'you', "don't."], ['My', 'mother', 'is', 'preparing', 'supper.'], ['Someone', 'broke', 'the', 'window.'], ['This', 'is', 'a', 'holiday?'], ['She', 'was', 'the', 'only', 'hot', 'day.'], ['I', 'need', 'to', 'do', 'my', 'bed.'], ['Maybe', 'I', 'should', 'do', 'it.'], ['He', 'is', 'almost', 'always', 'at', 'home.'], ['I', 'feel', 'bad', 'for', 'you.'], ['He', 'kept', 'on', 'to', 'me.'], ['Do', 'you', 'ever', 'think', 'of', 'that?'], ['The', 'coffee', 'will', 'cost', 'to', 'China', 'that', 'the', 'new', 'clock', 'again.'], ['Would', 'you', 'ever', 'ever', 'complain?'], ['He', 'explained', 'that', 'he', 'had', 'nothing', 'to', 'see', 'that', 'matter.'], ['I', 'want', 'to', 'help', 'me', 'do', 'this.'], ["That's", 'a', 'strange', 'point.'], ["I'm", 'not', 'lying.'], ['Let', 'me', 'handle', 'it.'], ["I'm", 'lucky', 'to', 'have', 'you', 'a', 'friend.'], ['Tom', 'took', 'another', 'sip.'], ['We', 'all', 'sang', 'in', 'unison.'], ["I'm", 'done', 'with', 'my', 'work.'], ['Stop', 'talking', 'and', 'listen', 'to', 'music.'], ['Tom', 'wanted', 'to', 'dance', 'with', 'Mary.'], ['I', 'must', 'have', 'wasted', 'all', 'the', 'time', 'to', 'be', 'lost', 'quickly.'], ["I've", 'decided', 'not', 'to', 'go', 'swimming', 'this', 'afternoon.'], ['I', "didn't", 'expect', 'you', 'to', 'have', 'a', 'bad', 'time.'], ["Don't", 'forget', 'to', 'turn', 'on', 'your', 'opinion.'], ['Do', 'you', 'have', 'a', 'pen?'], ['Two', 'ice', 'cream', 'on', 'the', 'sugar,', 'please.'], ['I', 'hope', 'that', 'she', 'will', 'soon', 'be', 'soon.'], ['I', 'was', 'stolen.'], ['She', 'was', 'a', 'nice', 'dress.'], ['Come', 'tomorrow.'], ["I'll", 'look', 'both', 'for', 'you.'], ['My', 'wife', 'needs', 'to', 'help', 'her.'], ['There', 'is', 'something', 'I', 'was', 'talking', 'about', 'me.'], ['Thanks', 'a', 'lot', 'of', 'people.'], ['Tom', 'was', 'defeated.'], ['I', "don't", 'want', 'Tom', 'to', 'know.'], ['Why', 'did', 'you', 'get', 'the', 'job?'], ["Let's", 'all', 'play', 'with', 'each', 'other.'], ['Are', 'you', 'dating', 'someone?'], ['Maybe', 'he', "won't", 'come.'], ['She', 'lives', 'in', 'a', 'big', 'house.'], ['Tom', 'and', 'Mary', 'have', 'three', 'children.'], ['Can', 'I', 'have', 'your', 'phone', 'number?'], ['They', 'decided', 'to', 'end', 'up', 'the', 'end', 'of', 'the', 'mountain.'], ['Tom', 'has', 'a', 'tall', 'brother', 'as', 'he', 'has.'], ['They', 'refused', 'to', 'help', 'our', 'help.'], ['Do', 'you', 'know', 'why', 'he', 'is', 'absent', 'about?'], ["You're", 'early.'], ['What', 'of', 'the', 'coffee', 'of', 'the', 'world', 'is', 'likely', 'to', 'be', 'on', 'the', 'world.'], ['Tom', 'bowed', 'to', 'his', 'plans', 'in', 'prison.'], ["Don't", 'stand', 'in', 'this', 'river.'], ['Are', 'there', 'a', 'class', 'in', 'the', 'class', 'of', 'town?'], ['I', 'am', 'used', 'to', 'state', 'in', 'Japanese.'], ['I', "can't", 'tell', 'you', 'all', 'my', 'secrets.'], ['I', 'feel', 'faint.'], ["Where's", 'the', 'toilet?'], ['My', 'father', 'used', 'to', 'smoke', 'a', 'day', 'by', 'my', 'day.'], ['Wait', 'just', 'a', 'second.'], ["You're", 'forgiven.'], ['How', 'long', 'have', 'you', 'been', 'a', 'teacher?'], ['I', 'think', "it's", 'going', 'to', 'be', 'a', 'great', 'place.'], ["Don't", 'give', 'up', 'with', 'your', 'dreams.'], ["I've", 'never', 'lied', 'to', 'you.'], ["You're", 'hard', 'for', 'you?'], ['We', 'know', 'enough.'], ['I', 'intend', 'to', 'do', 'that.'], ["I'm", 'sure', 'he', 'will', 'be', 'a', 'great', 'future', 'for', 'us.'], ['Luckily', 'nobody', 'had', 'no', 'one', 'yesterday.'], ['We', 'have', 'mutual', 'in', 'common.'], ['Do', 'you', 'know', 'a', 'good', 'restaurant?'], ['What', 'time', 'did', 'you', 'go', 'to', 'bed', 'yesterday?'], ['He', 'never', 'tells', 'me.'], ['Could', 'you', 'turn', 'down', 'the', 'music,', 'please?'], ['Now', 'I', "don't", 'have', 'time.'], ["Don't", 'talk', 'to', 'anyone.'], ['Tom', 'is', 'laughing.'], ['We', 'partied', 'all', 'night', 'long.'], ['She', 'took', 'him', 'his', 'phone', 'number.'], ['We', 'were', 'going', 'to', 'go', 'out', 'together.'], ['Think', 'of', 'your', 'debt.'], ['They', 'are', 'proud', 'of', 'their', 'son.'], ['Who', 'was', 'the', 'one', 'who', 'sent', 'you?'], ["I'm", 'too', 'tired', 'to', 'help', 'help.'], ['They', 'forgot', 'to', 'lock', 'the', 'door.'], ['I', 'saw', 'it', 'out', 'for', 'two', 'times.'], ['Tom', "didn't", 'know', 'whether', 'he', 'should', 'do', 'that', 'or', 'not.'], ['He', 'saved', 'my', 'life.'], ['They', 'trusted', 'you.'], ['We', 'enjoy', 'rice', 'weather.'], ['Tom', 'has', 'a', 'sharp', 'knife.'], ['It', 'needs', 'to', 'be', 'treated', 'from', 'his', 'mother.'], ["I'll", 'come', 'first.'], ['I', 'have', 'the', 'ability', 'to', 'shut', 'up.'], ['Tom', 'thought', 'it', 'would', 'be', 'a', 'good', 'idea', 'to', 'see', 'a', 'doctor.'], ['I', 'used', 'to', 'get', 'back', 'to', 'my', 'evening.'], ['The', 'teacher', 'has', 'a', 'great', 'influence', 'on', 'his', 'pupils.'], ['In', 'my', 'opinion,', 'he', 'is', 'right.'], ['Please', "don't", 'laugh', 'here', 'for', 'fun.'], ['She', 'likes', 'to', 'play', 'music.'], ['I', 'had', 'to', 'get', 'the', 'feeling', 'nothing', 'but', 'I', 'feel', 'like', 'trying', 'to', 'get', 'rid', 'of', 'it.'], ['I', 'love', 'your', 'place.'], ["I'd", 'better', 'call', 'you.'], ['Thanks', 'for', 'the', 'book.'], ['I', 'know', 'that', "won't", 'happen', 'again.'], ["They're", 'doing', 'it', 'right.'], ['Who', 'is', 'the', 'purpose', 'of', 'the', 'purpose', 'of', 'the', 'purpose', 'of', 'the', 'purpose', 'of', 'London.'], ['Where', 'were', 'those', 'pictures', 'those', 'pictures?'], ['He', 'had', 'to', 'take', 'part', 'in', 'the', 'way', 'to', 'get', 'used', 'to', 'the', 'letter.'], ['How', 'much', 'does', 'it', 'take', 'for', 'that?'], ['Let', 'us', 'work.'], ['You', 'should', 'look', 'care', 'of', 'these', 'clothes', 'with', 'me.'], ["That's", 'a', 'doll.'], ['If', 'you', 'want', 'to', 'know', 'why', 'I', 'want', 'to', 'know', 'why.'], ['I', 'need', 'a', 'lot', 'of', 'dress', 'to', 'take', 'a', 'big', 'dress.'], ['That', 'is', 'my', 'father.'], ['wanted', 'your', 'gun', 'handy.'], ['What', 'do', 'you', 'do', 'in', 'the', 'afternoon?'], ['My', 'watch', "doesn't", 'work', 'cold', 'tonight.'], ['The', 'food', 'is', 'no.'], ['I', "wasn't", 'bored.'], ['Tom', 'is', 'not', 'what', 'it', 'takes', 'to', 'be', 'a', 'teacher.'], ['I', 'was', 'pretty', 'stupid', 'to', 'believe', 'it.'], ['I', 'was', 'so', 'tired', 'that', 'I', "didn't", 'get', 'along', 'so', 'often.'], ["I'm", 'the', 'coach.'], ["Let's", 'go', 'to', 'the', 'head', 'off.'], ['She', 'was', 'kind', 'to', 'swim.'], ["What's", 'this', 'stuff?'], ['You', 'have', 'no', 'right', 'to', 'be', 'here.'], ['Some', 'weather', 'will', 'win', 'the', 'hook.'], ["You've", 'found', 'out', 'of', 'the', 'ability', 'because', 'of', 'a', 'hand.'], ["What's", 'our', 'plan?'], ['My', 'father', 'is', 'going', 'to', 'cut', 'out.'], ['Tom', 'has', 'a', 'sister', 'Boston.'], ['The', 'day', 'will', 'take', 'a', 'long', 'time.'], ['are', 'beautiful.'], ['I', "don't", 'believe', 'a', 'word', 'for', 'it.'], ["You're", 'the', 'one', 'for', 'coming', 'with', 'you', 'if', 'you', 'want', 'to.'], ['I', 'want', 'to', 'talk', 'to', 'you', 'privately.'], ["Don't", 'trust', 'anybody.'], ['You', "shouldn't", 'make', 'fun', 'of', 'them.'], ['You', "don't", 'seem', 'to', 'know', 'anymore.'], ['Where', 'did', 'you', 'go', 'for', 'spring', 'break?'], ['Of', 'course!'], ['They', 'found', 'out.'], ['My', 'wife', 'is', 'a', 'good', 'manager.'], ['We', 'have', 'to', 'learn', 'how', 'to', 'do', 'this.'], ["I've", 'been', 'feeling', 'everywhere.'], ['He', 'looks', 'suspicious.'], ['She', 'advised', 'him', 'to', 'be', 'more', 'careful.'], ['Have', 'you', 'studied', 'by', 'yourself?'], ['I', "don't", 'know', 'them.'], ['What', 'does', 'he', 'look', 'like?'], ['What', 'do', 'you', 'think', 'of', 'this', 'dress?'], ["I'm", 'doing', 'the', 'shopping.'], ["I'm", 'sorry', 'if', 'I', 'frightened', 'you.'], ['I', 'took', 'part', 'in', 'the', 'corner.'], ['Tom', 'is', 'going', 'to', 'climb', 'the', 'wall.'], ["I'm", 'sorry', 'that', 'I', "haven't", 'written', 'to', 'you', 'in', 'such', 'a', 'long', 'time.'], ['She', 'insisted', 'that', 'I', 'get', 'some', 'help.'], ["Don't", 'you', 'just', 'hate', 'technology?'], ['I', "don't", 'want', 'to', 'share', 'a', 'room', 'with', 'you.'], ['She', 'bought', 'him', 'a', 'shirt', 'for', 'the', 'party.'], ['I', 'had', 'fun.'], ['Tom', 'said', 'he', "didn't", 'want', 'to', 'talk', 'with', 'you.'], ['Why', "don't", 'you', 'remember?'], ['Lots', 'of', 'people', 'made', 'the', 'same', 'mistake', 'yesterday.'], ["I've", 'always', 'liked', 'your', 'new', 'hair', 'with', 'you.'], ["It's", 'going', 'to', 'be', 'right.'], ['You', 'need', 'to', 'do', 'every', 'other', 'people.'], ['I', "didn't", 'know', 'my', 'homework', 'finished.'], ['I', 'like', 'rock.'], ['You', "can't", 'talk', 'when', 'the', 'matter', 'to', 'you.'], ['Tom', 'lost', '30', 'kilograms.'], ['I', 'know', "it's", 'not', 'all', 'important.'], ['Try', 'to', 'stop', 'here.'], ['How', 'do', 'you', 'intend', 'to', 'do', 'it?'], ['Where', 'can', 'I', 'write', 'my', 'ticket?'], ['Food', 'will', 'be', 'all', 'trying', 'to', 'be', 'a', 'big', 'ability', 'to', 'them.'], ['Have', 'you', 'seen', 'a', 'doctor?'], ['I', "didn't", 'steal', 'my', 'apology.'], ['How', 'many', 'books', 'did', 'you', 'read?'], ['Are', 'you', 'going', 'to', 'leave', 'the', 'red', 'wine?'], ['I', 'was', 'in', 'good', 'spirits.'], ["They're", 'in', 'the', 'same', 'class.'], ["She's", 'not', 'as', 'good', 'as', 'a', 'good', 'one.'], ['Show', 'me', 'how', 'to', 'do', 'that.'], ["Who's", 'in', 'the', 'United', 'States.'], ['What', 'a', 'wonderful', 'time.'], ['What', 'do', 'you', 'like', 'your', 'father?'], ['You', "don't", 'have', 'to', 'say', 'such', 'a', 'good', 'lawyer', 'like', 'this.'], ['Murder', 'is', 'a', 'small', 'worker.'], ['Do', 'I', 'annoy', 'you?'], ['Is', 'there', 'anything', 'like', 'this?'], ['Are', 'you', 'here', "isn't", 'here?'], ['Tell', 'me', 'the', 'reason', 'you', 'were', 'absent', 'from', 'school', 'yesterday.'], ['I', 'have', 'no', 'intention', 'of', 'my', 'money', 'in', 'your', 'dreams.'], ['You', 'should', 'prepare', 'a', 'room', 'with', 'a', 'time.'], ['Stop', 'worrying.', 'flowers.'], ['Hey,', "what's", 'nice.'], ['I', 'fear', 'fear', 'in', 'his', 'eyes.'], ['Tom', "didn't", 'know', 'him', 'for', 'me.'], ['Are', 'you', 'being', 'back?'], ['They', 'must', 'be', 'prepared.'], ["I'd", 'like', 'to', 'apologize.'], ["I've", 'never', 'liked', 'that.'], ['Please', 'smile.'], ['Take', 'it', 'later.'], ['I', 'could', 'see', 'it', 'was', 'you.'], ['This', 'TV', 'makes', 'you', 'as', 'a', 'different', 'made.'], ['They', 'did', 'what', 'was', 'told.'], ['Can', 'you', 'believe', 'that', 'my', 'mother', 'is', 'still', 'lazier', 'than', 'me.'], ["I'd", 'like', 'to', 'go', 'inside.'], ['I', 'have', 'a', 'washing', 'machine.'], ['A', 'number', 'of', 'people', 'began', 'to', 'put', 'up', 'with', 'their', 'voices', 'people.'], ['I', 'can', 'write', 'my', 'book', 'in', 'his', 'time.'], ["I'm", 'looking', 'forward', 'to', 'seeing', 'you', 'before', 'time.'], ['We', 'made', 'a', 'great', 'deal', 'of', 'relief.'], ['Can', 'you', 'give', 'me', 'a', 'few', 'minutes?'], ['I', 'used', 'to', 'like', 'you.'], ['I', 'made', 'the', 'right.'], ['He', 'has', 'a', 'lunch.'], ['She', 'showed', 'me', 'his', 'new', 'car.'], ['It', 'was', 'so', 'cold', 'that', 'it', 'was', 'so', 'cold', 'this', 'summer.'], ["I'm", 'old.'], ['This', 'dog', 'runs', 'very', 'fast.'], ["Let's", 'not', 'let', 'this', 'happen', 'again.'], ['I', 'spent', 'the', 'weekend', 'with', 'friends.'], ["You'll", 'never', 'be', 'able', 'to', 'get', 'up', 'with', 'the', 'way', 'it', 'out', 'of', 'the', 'way', 'to', 'study.'], ["I'd", 'better', 'go', 'there', 'now.'], ['Tom', 'told', 'me', 'that', 'he', 'had', 'read', 'the', 'other.'], ["You're", 'old.'], ['Everyone', 'is', 'proud', 'of', 'you.'], ['Our', 'dog', 'is', 'full', 'of', 'doctors.'], ['The', 'meeting', 'was', 'almost', 'over.'], ["I'm", 'not', 'here.'], ['How', 'long', 'have', 'you', 'been', 'back?'], ['We', 'can', 'do', 'that.'], ['Be', 'polite', 'to', 'everyone.'], ['When', 'will', 'you', 'come', 'back?'], ['He', 'is', 'not', 'sure', 'that', "he's", 'a', 'genius.'], ['You', 'love', 'too', 'much', 'too', 'thin.'], ['I', 'can', 'get', 'a', 'walk', 'in', 'the', 'refrigerator.'], ['He', 'is', 'a', 'rich', 'teacher.'], ["You're", 'not', 'here.'], ["I'm", 'sorry.'], ['Can', 'you', 'tell', 'me', "what's", 'going', 'on?'], ["That's", 'how', 'he', 'invented', 'the', 'comet.'], ['Are', 'you', 'being', 'done?'], ["Don't", 'tell', 'me.', 'Let', 'me', 'guess.'], ["I'm", 'glad', 'that', 'you', 'are', 'coming.'], ["I've", 'got', 'something', "you've", 'left', 'what', "you've", 'done.'], ['It', 'was', 'dark.'], ['I', 'was', 'humiliated.'], ['In', 'four', 'hours.', "I'll", 'find', 'out', 'for', 'you', 'to', 'finish', 'the', 'hours.'], ['I', "don't", 'understand', 'this', 'guy', 'will', 'do.'], ['I', 'want', 'to', 'hear', 'what', 'you', 'put', 'on', 'the', 'trip.'], ['Who', 'did', 'you', 'speak', 'with?'], ['Tom', 'is', 'playing', 'the', 'trumpet.'], ['He', 'started', 'to', 'go', 'back', 'home', 'before', 'I', 'leave.'], ['I', "haven't", 'seen', 'them.'], ['I', "didn't", 'mean', 'anything', 'to', 'tell', 'you', 'about', 'that', 'matter.'], ['I', 'also', 'also', 'went', 'there.'], ['I', "couldn't", 'give', 'you', 'some', 'money.'], ["That's", 'my', 'idea.'], ['Tom', 'decided', 'to', 'pay', 'his', 'departure.'], ['We', 'all', 'do', 'that.'], ['May', 'I', 'offer', 'a', 'message?'], ['I', 'waited', 'all', 'night', 'long.'], ['Tom', "doesn't", 'know', 'everything.'], ['Not', 'all', 'of', 'the', 'eggs', 'every', 'day.'], ['Are', 'you', 'home?'], ['There', 'is', 'a', 'little', 'whiskey', 'with', 'the', 'edge', 'of', 'the', 'red', 'cream', 'on', 'the', 'radio.'], ['Why', 'are', 'you', 'here?'], ['Tom', 'has', 'only', 'three', 'weeks.'], ['The', 'floor', 'is', 'almost', 'a', 'bit', 'of', 'the', 'left.'], ['This', "isn't", 'the', 'kind', 'of', 'guy', 'type', 'of', 'guy.'], ['The', 'sky', 'grew', 'darker', 'and', 'darker.'], ["He's", 'a', 'bit', 'jealous.'], ['Did', 'you', 'hurt', 'yourself?'], ['I', "don't", 'want', 'you', 'to', 'go', 'with', 'Tom.'], ['I', 'have', 'been', 'sick', 'in', 'car', 'yesterday,', "hasn't", 'been', 'since', 'I', "hasn't", 'been', 'abroad.'], ["There's", 'someone', 'I', 'want', 'you', 'to', 'meet.'], ['I', "can't", 'tell', 'you', 'how', 'happy', 'I', 'am', 'that', "you've", 'come', 'to', 'visit', 'us.'], ['My', 'smile', "doesn't", 'want', 'a', 'smile', 'anymore.'], ['I', 'found', 'something', 'rare', 'in', 'the', 'city.'], ['My', 'cousin', 'is', 'going', 'down', 'and', 'the', 'heat.'], ['A', 'big', 'ice', 'is', 'growing', 'into', 'the', 'cellar.'], ['You', "shouldn't", 'people', 'people', 'people', 'on', 'their', 'people.'], ['I', 'deserve', 'this.'], ['I', 'saw', 'him', 'enter', 'the', 'room.'], ['She', 'got', 'married', 'young.'], ["I'm", 'not', 'a', 'liar.'], ['My', 'parents', 'knew', 'about', 'our', 'wedding.'], ['He', 'is', 'rich', 'and', 'strong.'], ['She', 'lives', 'in', 'New', 'York.'], ['I', "don't", 'have', 'much', 'time', 'to', 'read', 'these', 'people.'], ["Let's", 'be', 'happy.'], ['Are', 'you', 'so', 'hungry?'], ['All', 'of', 'them', 'have', 'done', 'their', 'best.'], ['These', 'toys', 'are', 'going', 'to', 'be', 'a', 'great', 'future', 'for', 'future.'], ['That', "doesn't", 'make', 'any', 'sense.'], ['He', 'told', 'me.'], ['You', 'need', 'to', 'bring', 'a', 'break.'], ["We're", 'not', 'finished', 'yet.'], ['His', 'movie', 'was', 'delayed', 'by', 'accident.'], ['Is', 'that', 'enough?'], ['Spanish', 'is', 'in', 'war.'], ['Please', 'light', 'the', 'candle.'], ['Do', 'you', 'study', 'English', 'for?'], ['I', 'feel', 'faint.'], ['I', "can't", 'stand', 'him.'], ['I', 'bought', 'her', 'for', 'an', 'American', 'engagement', 'model', 'pocket.'], ["That's", 'precisely', 'what', 'I', 'say.'], ['The', 'water', 'is', 'ice.'], ["I'm", 'going', 'to', 'have', 'a', 'drink.'], ['Check', 'this', 'out.'], ['Every', 'dog', 'has', 'its', 'day.'], ['A', 'high', 'student', 'has', 'brought', 'up.'], ['I', "don't", 'know', 'what', 'you', 'need?'], ['You', 'will', 'need', 'a', 'bodyguard.'], ['We', 'appreciate', 'your', 'hard', 'advice.'], ['In', 'my', 'father', 'is', 'still', 'young,', 'he', 'is', 'still', 'born.'], ['I', 'was', 'born', 'in', 'Kyoto.'], ['I', 'admire', "Tom's", 'safety.'], ['Tom', 'hates', 'the', 'bathroom.'], ['Tom', 'is', 'a', 'really', 'person.'], ['Can', 'I', 'borrow', 'your', 'car?'], ['There', 'was', 'not', 'the', 'last', 'week.'], ['I', 'am', 'dieting.'], ['There', 'is', 'no', 'class', 'in', 'German.'], ['I', 'can', 'lend', 'you', 'some', 'money', 'if', 'you', 'need', 'some.'], ['They', "don't", 'have', 'to', 'do', 'that.'], ['You', 'can', 'all', 'help', 'you.'], ["I'm", 'going', 'to', 'give', 'you', 'a', 'minute.'], ['Our', 'team', 'is', 'getting', 'five', 'minutes', 'old.'], ['I', 'could', 'write', 'something.'], ['I', 'had', 'a', 'feeling', 'I', 'had', 'said', 'I', 'had', 'said', 'I', 'had', 'to', 'say.'], ['We', "don't", 'have', 'to', 'make', 'sure', 'that', 'you', 'have', 'a', 'hard', 'day.'], ['A', 'fuse', 'will', 'have', 'set', 'up', 'soccer.'], ['They', 'were', 'all', 'here.'], ['Do', 'you', 'like', 'the', 'sports?'], ['I', 'hope', 'that', 'such', 'a', 'bicycle.'], ['Blow', 'the', 'candles.'], ['Is', 'this', 'happening?'], ['Do', 'you', 'have', 'a', 'dictionary?'], ['He', 'made', 'the', 'date.'], ['I', 'have', 'no', 'reason', 'to', 'tell', 'you.'], ["It's", 'not', 'a', 'problem.'], ['I', 'am', 'going', 'to', 'charge', 'your', 'computer.'], ["I'd", 'know.', 'I', 'know.'], ['I', 'think', 'we', 'should', 'both', 'leave.'], ["There's", 'a', 'rumor', 'that', 'one.'], ['Everybody', 'wants', 'to', 'speak', 'to', 'his', 'house', 'is', 'a', 'doctor.'], ['What', 'happened', 'one', 'of', 'a', 'girl.'], ['I', "don't", 'know', 'what', 'the', 'name', 'is.'], ['Of', 'recent', 'animals', 'is', 'considered', 'that', 'animals', 'is', 'needed.'], ["That's", 'true', 'too.'], ['Remain', 'seated,', 'please.'], ['I', 'know', 'some', 'of', 'my', 'students.'], ['You', 'need', 'to', 'be', 'prepared.'], ['He', "doesn't", 'smoke.'], ["Don't", 'forget', 'to', 'find', 'out', 'how', 'to', 'kill', 'you.'], ['What', 'do', 'you', 'like', 'to', 'go', 'there?'], ['We', "don't", 'want', 'our', 'children', 'to', 'know.'], ['I', 'got', 'my', 'room.'], ['You', "can't", 'take', 'a', 'shower', 'in', 'the', 'case', 'without', 'a', 'hit.'], ["Don't", 'look', 'so', 'shocked.'], ["It's", 'really', 'hot', 'today.'], ['I', 'think', 'you', 'should', 'stop', 'giving', 'Tom', 'some', 'money.'], ['He', 'said,', '"I', 'want', 'to', 'be', 'famous.'], ['Your', 'answer', 'is', 'far', 'from', 'perfect.'], ['They', "can't", 'go', 'out.'], ['I', 'just', "don't", 'want', 'you', 'to', 'get', 'involved.'], ['How', 'much', 'did', 'you', 'pay', 'this', 'bike?'], ['I', 'saw', 'you', 'let', 'the', 'cat', 'in', 'a', 'cat', 'in', 'the', 'house.'], ['Tom', "didn't", 'want', 'to', 'notice', 'where', 'he', 'was', 'going.'], ['How', 'do', 'you', 'know', 'her?'], ['China', 'is', 'a', 'traditional', 'English', 'month.'], ['Stop', 'people', 'not', 'a', 'good', 'idea', 'to', 'let', 'a', 'walk', 'around', 'the', 'house.'], ['How', 'many', 'guards', 'do', 'you', 'think', 'of', 'it?'], ['I', 'figured', 'that', 'you', "weren't", 'coming.'], ["I'm", 'dizzy.'], ['If', 'you', 'want', 'to', 'buy', 'your', 'old', 'sofa,', 'why', 'not', 'give', 'me', 'a', 'dictionary', 'in', 'the', 'store', 'by', 'paper?'], ['What', 'are', 'you', 'good', 'at?'], ["Don't", 'do', 'it!'], ['Did', 'you', 'get', 'the', 'last', 'year?'], ["You're", 'really', 'a', 'kind', 'guy.'], ['It', 'was', 'so', 'OK', 'that', 'I', "wouldn't", 'be', 'there.'], ['Why', "didn't", 'you', 'buy', 'that', 'man?'], ['When', 'did', 'you', 'meet', 'him?'], ['I', "didn't", 'steal', 'it.'], ['I', 'figured', 'I', 'was', 'glad', 'to', 'be', 'glad', "you're", 'wrong.'], ['Is', 'there', 'any', 'salt', 'left?'], ['She', 'is', 'a', 'good', 'liar.'], ['She', 'acted', 'with', 'her', 'husband', 'on', 'her', 'child.'], ['Why', "don't", 'you', 'tell', 'me', 'what', 'you', 'think', 'you', 'are', 'here?'], ['That', 'seems', 'like', 'risky.'], ['I', 'know', 'you', 'love', 'Tom.'], ['I', 'was', 'waiting', 'for', 'the', 'bus', 'to', 'wait', 'for', 'the', 'plane', 'to', 'wait', 'for', 'a', 'walk.'], ["Tom's", 'room', 'is', 'always', 'neat.'], ["It's", 'mine,', "isn't", 'it?'], ['Let', 'me', 'go!'], ['Should', 'I', 'leave?'], ['That', "doesn't", 'make', 'sense.'], ['I', 'really', 'wish', 'you', "hadn't", 'seen', 'that.'], ["You're", 'not', 'the', 'only', 'one', 'who', 'used', 'to', 'do', 'that.'], ['Please', 'have', 'the', 'ability', 'to', 'report', 'up', 'with', 'my', 'mind.'], ['I', 'poured', 'a', 'little', 'privacy.'], ['I', "can't", 'believe', 'this', 'was', 'going', 'to', 'smoke.'], ['Will', 'you', 'have', 'another', 'cup', 'of', 'coffee?'], ['No', 'one', 'did', 'it.'], ['I', 'saw', 'Tom', 'yesterday', 'that', 'he', 'saw', 'his', 'daughter.'], ['It', 'was', 'a', 'great', 'shock', 'to', 'show', 'me', 'for', 'high', 'school.'], ['You', 'understand', 'what', "I'm", 'saying,', "isn't", 'it?'], ['Where', 'exactly', 'are', 'you?'], ['I', "can't", 'wait', 'any', 'longer.'], ['I', 'agreed', 'to', 'get', 'his', 'job.'], ['I', 'want', 'to', 'talk', 'now.'], ['I', 'wish', "you'd", 'found', 'me.'], ['I', 'know', 'that', 'you', 'know', "that's", 'fun.'], ['I', "won't", 'tolerate', 'that.'], ['Are', 'you', 'now', 'now?'], ['You', "don't", 'understand', "what's", 'happening.'], ['This', 'theory', 'is', 'a', 'carpenter.'], ['Can', 'they', 'stop', 'it?'], ['She', 'died', 'from', 'TB.'], ['I', 'think', 'I', 'who', 'painted', 'this', 'picture.'], ['You', 'were', 'drunk,', "weren't", 'you?'], ['I', 'bought', 'a', 'pair', 'of', 'gloves.'], ["I'd", 'like', 'to', 'come', 'with', 'you.'], ['I', 'know', 'what', 'Tom', 'and', 'Mary', 'do', 'it.'], ['Was', 'he', 'a', 'man?'], ['I', 'know', 'that', 'Tom', 'is', 'a', 'grouch.'], ['Not', 'students', 'can', 'sing.'], ['Can', 'you', 'pass', 'me', 'the', 'salt,', 'please?'], ['My', 'life', 'is', 'used', 'to', 'living', 'in', 'a', 'small', 'living', 'room.'], ['I', 'had', 'a', 'doctor', 'about', '10', 'hours.'], ['This', 'stone', 'was', 'so', 'heavy', 'that', 'I', "couldn't", 'catch', 'it.'], ['This', 'is', 'the', 'boy', 'who', 'was', 'stolen.'], ['tornado', 'I', 'have', 'my', 'son', 'in', 'the', 'afternoon.'], ['Do', 'you', 'need', 'some', 'water?'], ['We', 'made', 'him', 'yesterday.'], ['I', 'am', 'looking', 'forward', 'to', 'reading', 'your', 'new', 'novel.'], ['Do', 'you', 'want', 'to', 'go?'], ['We', 'live', 'in', 'a', 'large', 'water', 'of', 'water.'], ['He', 'must', 'be', 'punished.'], ['She', 'called', 'him', 'while', 'he', 'was', 'speaking', 'to', 'my', 'father.'], ['He', "didn't", 'even', 'even', 'even', 'even', 'be', 'seen.'], ['Do', 'you', 'think', 'that', 'you', 'can', 'put', 'your', 'idea', 'to', 'work?'], ['Tom', 'is', 'the', 'easiest', 'missing.'], ['How', 'can', 'this', 'be', 'real?'], ["I'm", 'the', 'one', 'of', 'that', 'cup.'], ['I', 'was', 'very', 'tired,', 'so', 'I', 'went', 'to', 'bed', 'early.'], ["You're", 'crafty.'], ['Tom', "can't", 'help', 'it.'], ['When', 'did', 'you', 'go?'], ['All', 'of', 'an', 'need', 'to', 'put', 'it', 'up.'], ['Are', 'you', 'alone', 'here?'], ['I', 'know', 'that', 'you', 'know', 'where', 'Tom.'], ['OK,', "it's", 'a', 'great', 'deal', 'made.'], ['I', 'played', 'tennis', 'all', 'day.'], ['This', 'is', 'a', 'place', 'place.'], ['Did', 'you', 'take', 'the', 'money?'], ["It's", 'all', 'for', 'me', 'now.'], ["I've", 'had', 'enough.'], ['Could', 'I', 'have', 'some', 'money', 'for', 'my', 'lesson?'], ["They're", 'following', 'us.'], ['Thank', 'you', 'very', 'much', 'for', 'your', 'letter.'], ["There's", 'something', 'worth', 'trying', 'to', 'make', 'sure', 'that', 'something', 'must', 'be', 'doing', 'something', 'like', 'a', 'job.'], ['I', "don't", 'know', 'what', 'to', 'do', 'now.'], ["I'm", 'a', 'terrible'], ['My', 'best', 'friend', 'is', 'my', 'best', 'friend.'], ['How', 'long', 'will', 'it', 'last?'], ['I', 'think', 'I', 'can', 'pass', 'this', 'afternoon.'], ["It's", 'already', 'nine', "o'clock."], ['She', 'advised', 'him', 'to', 'ride', 'a', 'bicycle.'], ["I'll", 'do', 'that', 'tomorrow', 'if', 'possible.'], ["Didn't", 'you', 'say', 'I', 'was', 'saying', 'that', 'you', 'broke', 'up', 'with', 'your', 'friend?'], ['Tom', 'made', 'up', 'if', 'it', 'was', 'true.'], ["I'm", 'free', 'on', 'Sundays.'], ['Every', 'time', 'they', 'want', 'they', 'lines.'], ["Don't", 'interfere.'], ['I', 'hear', 'this', 'book', 'was', 'written', 'in', 'the', 'news.'], ["We're", 'not', 'supposed', 'to', 'do', 'that.'], ['I', "can't", 'do', 'anything', 'without', 'putting', 'on', 'Sundays.'], ['I', 'just', 'want', 'some', 'of', 'you', 'to', 'remember', 'me', 'some', 'of', 'this', 'place.'], ['It', 'is', 'too', 'hard', 'for', 'his', 'way', 'to', 'be', 'a', 'bit', 'too', 'hard.'], ['This', 'watch', 'is', 'a', 'one.'], ["I'm", 'asking', 'you', 'as', 'a', 'friend.'], ['Do', 'you', 'mind', 'if', 'I', 'turn', 'on', 'the', 'radio?'], ['How', 'often', 'do', 'you', 'know', 'how', 'hard', 'you', 'do', 'now?'], ["I'm", 'in', 'the', 'classroom.'], ['This', 'chair', 'is', 'too', 'abstract', 'for', 'me.'], ['What', 'are', 'you', 'looking', 'for?'], ['She', 'is', 'in', 'high', 'school.'], ['He', 'was', 'guilty', 'of', 'murder.'], ['I', 'saw', 'you.'], ['She', 'is', 'asked', 'to', 'see', 'the', 'girl.'], ["They're", 'mad.'], ['He', 'excused', 'against', 'an', 'apple', 'against', 'the', 'conference.'], ['When', 'we', 'have', 'paid', 'the', 'schedule', 'in', 'half.'], ['They', 'have', 'found', 'out.'], ['She', 'is', 'a', 'poet.'], ['You', 'have', 'nothing', 'to', 'be', 'wrong?'], ['Most', 'people', 'are', 'dirty.'], ['My', 'plan', 'is', 'in', 'Japan.'], ['Tom', 'was', 'acting', 'strangely.'], ["I'm", 'smarter', 'than', 'you.'], ["What's", 'your', 'favorite', 'toothpaste?'], ['We', "don't", 'have', 'anyone', 'here.'], ['Light', 'the', 'candles.'], ["I'm", 'sorry', 'for', 'what', 'I', 'have', 'to', 'work', 'tonight.'], ["He's", 'your', 'son.'], ['He', 'loves', 'the', 'habit', 'of', 'his', 'old', 'day.'], ['The', 'stars', 'were', 'flying', 'by', 'the', 'two', 'flag.'], ['Who', 'painted', 'the', 'White', 'House?'], ['We', 'have', 'to', 'go', 'to', 'bed', 'today.'], ["There's", 'no', 'cure.'], ['I', 'just', 'wanted', 'to', 'thank', 'everyone.'], ["It's", 'so', 'crazy.'], ["Who's", 'your', 'girlfriend?'], ['Your', 'life', 'is', 'in', 'danger.'], ['How', 'time', 'do', 'you', 'have', 'to', 'go', 'on', 'your', 'age?'], ['Tom', 'said', 'he', 'loved', 'her.'], ['The', 'car', 'went', 'on', 'the', 'left.'], ["Don't", 'try', 'to', 'worry', 'about', 'me.'], ['What', 'are', 'your', 'measurements?'], ['What', 'he', 'said', 'he', 'said', 'he', 'said', 'he', 'said', 'he', 'is', 'said', 'last', 'week.'], ['I', 'thought', 'that', 'Tom', 'was', 'yours.'], ['I', 'was', 'in', 'the', 'garden', 'all', 'the', 'afternoon.'], ["You're", 'very', 'curious.'], ['Do', 'you', 'like', 'robots?'], ["Don't", 'be', 'naive.'], ['The', 'job', 'is', 'probably', 'true.'], ['I', "didn't", 'visit', 'Tom', 'since', 'then.'], ['I', 'thought', 'you', 'did', 'fairly', 'well.'], ['Return', 'and', 'get', 'a', 'look.'], ['It', 'was', 'nothing', 'but', 'cry', 'for', 'nothing', 'but', 'cry', 'for', 'a', 'day.'], ['I', 'work', 'at', "McDonald's."], ['It', 'will', 'do', 'our', 'plan.'], ["It's", 'a', 'coincidence.'], ['No', 'one', 'plays', 'the', 'guitar.'], ["He's", 'a', 'gambler.'], ['The', 'park', 'is', 'going', 'to', 'get', 'dressed', 'in', 'bed.'], ['This', 'is', 'a', 'good', 'figure.'], ['His', 'son', 'is', 'a', 'cruel', 'line', 'of', 'reception.'], ['Have', 'you', 'ever', 'dreamed', 'of', 'me?'], ['Everyone', 'should', 'know', 'about', 'that.'], ['She', 'told', 'him', 'that', 'he', 'was', 'right.'], ['What', 'he', 'said', 'he', 'is', 'he', 'needed.'], ['Is', 'this', 'thing', 'yours?'], ['I', 'used', 'to', 'read', 'such', 'a', 'lot', 'of', 'things', 'to', 'do.'], ['I', 'do', 'it', 'like', 'you.'], ['Would', 'you', 'like', 'to', 'me?'], ['"Will', 'you', 'do', 'up', 'the', 'proposed', '"Yes,', 'please."'], ["You've", 'missed', 'the', 'meeting.'], ['This', 'is', 'the', 'first', 'time', "I've", 'been', 'a', 'little', 'nervous.'], ['What', 'I', 'say', 'that', 'you', 'have', 'is', 'pretty', 'good', 'at', 'his', 'brother.'], ["You're", 'supposed', 'to', 'do', 'that.'], ['Will', 'he', 'be', 'back?'], ['We', 'had', 'a', 'lot', 'of', 'furniture', 'at', 'home.'], ['I', 'just', "can't", 'keep', 'this', 'out.'], ['We', 'still', 'want', 'to', 'eat', 'the', 'baby.'], ['Why', 'are', 'you', 'upset?'], ['Now', "let's", 'go', 'to', 'the', 'party', 'before', 'going', 'to', 'go.'], ['What', 'is', 'that?'], ['I', 'really', 'appreciate', 'it.'], ['I', 'advise', 'you', 'to', 'be', 'punctual.'], ['Can', 'you', 'help', 'this', 'company', 'this', 'company', 'doing', 'this', 'river?'], ['Do', 'you', 'think', "I'm", 'fat?'], ['Is', 'that', 'matter?'], ['I', "can't", 'tell', 'you', 'how', 'happy', 'I', 'am', 'that', "you've", 'come', 'to', 'visit', 'us.'], ['This', 'company', 'has', 'a', 'great', 'deal', 'of', 'power.'], ['Sorry,', 'I', "didn't", 'mean', 'to', 'scare', 'you.'], ['I', 'love', 'to', 'climb', 'people.'], ['I', "don't", 'think', 'I', 'can', 'do', 'that', 'yet.'], ["It's", "Tom's", 'daughter.'], ['My', 'brother', 'likes', 'my', 'brother', 'more', 'Tom', 'wants', 'to', 'be.'], ['Why', 'are', 'I', 'so', 'busy?'], ['Your', 'oldest', "doesn't", 'matter', 'about', 'it.'], ['Be', 'quiet', 'for', 'me.'], ['This', 'joke', "isn't", 'funny.'], ['We', 'chose', 'a', 'formal', 'effort.'], ['Will', 'he', 'ever', 'help', 'you?'], ["I'd", 'rather', 'do', 'it', 'alone.'], ['I', 'just', "don't", 'want', 'you', 'to', 'catch', 'my', 'ears.'], ['She', 'went', 'to', 'the', 'zoo.'], ['No', 'one', 'was', 'missing.'], ['Please', 'be', 'exhausted.'], ["You're", 'lucky', 'already.'], ['I', 'was', 'the', 'worst', 'part', 'of', 'the', 'class.'], ['Did', 'you', 'have', 'a', 'nice', 'summer?'], ['Take', 'up', 'on.'], ['It', 'would', 'be', 'delighted', 'to', 'hear', 'that.'], ['Return', 'to', 'your', 'plans.'], ['What', 'do', 'you', 'want', 'in', 'return?'], ['I', 'have', 'no', 'desire', 'to', 'read.'], ['Do', 'you', 'think', 'this', 'is', 'a', 'busy', 'breakfast', 'every', 'year.'], ['Did', 'they', 'tell', 'you', 'that?'], ["Let's", 'try', 'this', 'cake.'], ['I', 'should', 'talk', 'to', 'you', 'like', 'a', 'day.'], ['Who', 'gave', 'the', 'envelope?'], ['If', 'I', 'had', 'eaten', 'letters', 'that', 'I', 'had', 'eaten', 'a', 'shower', 'even', 'I', 'could', 'think', 'of', 'it.'], ['I', 'felt', 'a', 'couple', 'of', 'friends.'], ["Don't", 'be', 'afraid', 'to', 'keep', 'them', 'all.'], ['My', 'French', 'teacher', 'is', 'the', 'same', 'age', 'as', 'I', 'am.'], ['I', "can't", 'hear', 'what', 'they', 'say.'], ['Let', 'me', 'take', 'this', 'one.'], ['You', 'did', 'very', 'much.'], ["Don't", 'forget', 'to', 'listen', 'to', 'me', 'about', 'that.'], ["It's", 'not', 'as', 'easy', 'as', 'you', 'think.'], ['We', 'must', 'protect', 'our', 'children.'], ['Did', 'you', 'learn', 'the', 'window', 'when', 'you', 'were', 'in', 'front', 'of', 'the', 'English?'], ["I'll", 'do', 'everything', 'you', 'can', 'do', 'it.'], ['I', 'live', 'in', 'my', 'uncle.'], ['The', 'answer', 'of', 'the', 'water', 'is', 'not', 'here.'], ['Tom', 'could', 'just', 'stay', 'here', 'to', 'wait.'], ['People', 'can', 'all', 'all', 'day.'], ['I', 'agree', 'with', 'you', 'absolutely.'], ['I', 'had', 'a', 'good', 'time', 'here.'], ['Money', 'left.'], ['Tom', 'asked', 'Mary', 'to', 'kids.'], ['May', 'I', 'sleep', 'on', 'the', 'couch?'], ['This', 'morning', 'I', 'was', 'able', 'to', 'read', 'the', 'train', 'train.'], ['We', 'were', 'very', 'lucky.'], ['I', 'am', 'really', 'worried.'], ['I', 'spoke', 'with', 'me.'], ['I', 'am', 'very', 'good', 'at', 'all.'], ['I', 'know', 'exactly', 'what', 'I', 'should', 'do.'], ['When', 'did', 'you', 'ask', 'Tom', 'not', 'to', 'do', 'that?'], ['That', "doesn't", 'work', 'at', 'all.'], ['A', 'number', 'of', 'the', 'sun', 'was', 'wrong', 'with', 'the', 'lake.'], ["I'm", 'very', 'happy.'], ['These', 'cookies', 'on', 'the', 'crime', 'they', 'have', 'to', 'take', 'care', 'of', 'the', 'day.'], ['I', 'think', 'this', 'book', 'is', 'for', 'you', 'to', 'read', 'this', 'book.'], ['This', 'is', 'my', 'fault.'], ['He', 'is', 'walking', 'to', 'the', 'radio.'], ['I', "don't", 'feel', 'like', 'doing', 'it', 'today.'], ['Tom', 'was', 'totally', 'crazy.'], ['How', 'did', 'this', 'happen?'], ['My', 'shoes', 'are', 'too', 'small.'], ['No', 'one', 'heard', 'the', 'sentence.'], ['I', 'feel', 'the', 'same', 'way', 'as', 'you', 'do.'], ['France', 'is', 'a', 'plan', 'is', 'another', 'one.'], ['It', 'was', 'a', 'mistake.'], ['I', 'can', 'speak', 'English.'], ['How', 'did', 'you', 'find', 'out', 'that?'], ['I', "don't", 'like', 'to', 'make', 'a', 'tough', 'day.'], ['The', 'project', 'is', 'now', 'project', 'from', 'now', 'on.'], ['Please', 'have', 'a', 'word', 'for', 'that.'], ['She', 'dumped', 'him', 'until', 'he', 'was', 'lying.'], ['You', 'should', 'have', 'told', 'Tom', 'that', 'a', 'long', 'time', 'ago.'], ['We', 'will', 'have', 'a', 'little', 'small', 'say.'], ['When', 'you', 'make', 'your', 'brother', 'to', 'your', 'hands.'], ['He', 'has', 'a', 'basket', 'full', 'of', 'paper.'], ["I'm", 'not', 'the', 'only', 'one', 'to', 'understand', 'my', 'bicycle', 'any', 'of', 'my', 'mind.'], ['I', 'have', 'no', 'one', 'to', 'anyone.'], ['I', "don't", 'know', 'if', 'we', 'can', 'miss', 'the', 'restaurant', 'by', 'accident.'], ['Where', 'do', 'I', 'see?'], ['He', 'gave', 'me', 'a', 'lot', 'of', 'advice.'], ['Tom', 'is', 'a', 'student,', "isn't", 'it?'], ["Don't", 'blame', 'me.'], ['Is', 'it', 'serious?'], ['The', 'ability', 'is', 'too', 'small', 'to', 'get', 'warm.'], ['A', 'big', 'wave', 'made', 'a', 'large', 'increase', 'from', 'the', 'table.'], ['Black', 'students', 'are', 'eating', 'on', 'the', 'sea.'], ['I', 'ordered', 'a', 'book', 'from', 'London.'], ['Tom', 'is', 'still', 'young.'], ['This', 'book', 'is', 'fascinating.'], ['Have', 'you', 'fed', 'the', 'dog?'], ['Tom', 'wanted', 'to', 'travel.'], ['I', "would've", 'told', 'you', 'if', 'I', 'knew', 'that.'], ['You', "don't", 'want', 'to', 'do', 'it,', 'do', 'you?'], ['What', 'was', 'the', 'crash?'], ['You', "weren't", 'drunk,', "weren't", 'you?'], ['That', 'may', 'happen', 'to', 'everyone.'], ["You've", 'been', 'told', 'what', 'you', "hadn't", 'done', 'yourself?'], ['Will', 'you', 'give', 'me', 'a', 'bicycle?'], ["It's", 'so', 'beautiful.'], ['Japan', 'is', 'annoying.'], ['Why', 'do', 'you', 'always', 'have', 'to', 'be', 'again?'], ['What', 'a', 'license.'], ['What', 'do', 'you', 'want', 'to', 'tell', 'us?'], ['He', 'can', 'speak', 'five', 'languages.'], ["I'll", 'see', 'you', 'the', 'day', 'near', 'your', 'plane.'], ["They're", 'all', 'missing.'], ['I', 'am', 'very', 'hungry.'], ['Was', 'anyone', 'else', 'up', 'your', 'summer?'], ['They', 'are', 'very', 'good', 'advice.'], ['Tom', "doesn't", 'seem', 'to', 'trust', 'him.'], ['Soldiers', 'must', 'keep', 'their', 'feet', 'in', 'their', 'teeth.'], ['Everyone', 'was', 'stunned.'], ['Fill', 'the', 'blinds.'], ["That's", 'my', 'teacher', 'and', 'I', "don't", 'want', 'to', 'smoke.'], ['I', 'met', 'him', 'at', 'the', 'airport', 'yesterday.'], ['Tom', 'is', 'a', 'huge', 'worker.'], ['He', 'is', 'a', 'very', 'friendly', 'worker.'], ['Please', 'give', 'me', 'a', 'book', 'for', 'now.'], ["They're", 'not', 'coming.'], ['She', 'told', 'me', 'she', 'is', 'hungry.'], ['He', 'drank', 'a', 'speech.'], ['How', 'did', 'you', 'come', 'here', 'so', 'fast?'], ['His', 'family', 'moved', 'to', 'the', 'United', 'States.'], ['I', 'made', 'a', 'mistake.'], ['I', "don't", 'think', 'anything', 'that', 'you', 'think', "that's", 'all', 'that', 'simple.'], ['He', 'lives', 'here', 'in', 'his', 'house'], ["We're", 'too', 'busy.'], ['Do', 'you', 'still', 'want', 'to', 'be', 'an', 'officer?'], ['They', "don't", 'have', 'to', 'get', 'off', 'in', 'this', 'box', 'of', 'sleep.'], ['I', 'advised', 'him', 'to', 'call', 'him', 'down.'], ['I', 'never', 'used', 'to', 'work', 'on', 'my', 'job.'], ['I', 'have', 'the', 'way', 'to', 'music.'], ['I', "can't", 'stop', 'procrastinating.'], ['The', 'cat', 'is', 'not', 'dead.'], ['I', 'am', 'looking', 'for', 'a', 'little', 'accident.'], ['Tom', 'never', 'wears', 'Australia.'], ['Tom', 'wants', 'me', 'to', 'help.'], ['Will', 'he', 'also', 'go?'], ["You've", 'gone', 'too', 'far', 'this', 'time.'], ['Why', "didn't", 'you', 'call', 'me', 'last', 'night?'], ['Please', 'be', 'in', 'high', 'school', 'in', 'high', 'school.'], ['Tom', 'is', 'Mary.'], ['You', 'have', 'more', 'energy', 'than', 'me.'], ['He', 'had', 'a', 'book', 'in', 'his', 'hand.'], ['He', 'got', 'a', 'few', 'days', 'before', 'he', 'died.'], ['She', 'has', 'known', 'him', 'for', 'a', 'long', 'time.'], ["Don't", 'buy', 'that.'], ['I', 'study', 'everybody.'], ['Do', 'you', 'really', 'want', 'to', 'talk', 'about', 'this', 'now?'], ['Tom', 'broke', 'his', 'arm', 'in', 'his', 'arm'], ['You', 'are', 'very', 'busy', 'today.'], ["I'll", 'come.'], ["aren't", "aren't", 'in', 'this', 'hotel.'], ['Be', 'as', 'fast', 'as', 'possible.'], ['Tom', 'just', 'got', 'back', 'to', 'work.'], ['She', 'sat', 'next', 'to', 'him', 'about', 'the', 'supermarket', 'that', 'she', 'had', 'expected.'], ["Don't", 'make', 'any', 'mistakes.'], ['You', "don't", 'have', 'to', 'talk', 'if', 'you', "don't", 'want', 'to.'], ['It', 'looks', 'like', 'he', 'is', 'sick.'], ["I'll", 'take', 'the', 'next', 'bus.'], ['I', 'had', 'a', 'school', 'school', 'today.'], ['Are', 'they', 'doing', 'French?'], ['There', 'are', 'no', 'fish', 'in', 'jail.'], ['My', 'father', "doesn't", 'do', 'that.'], ['I', 'came', 'to', 'give', 'you', 'this.'], ['We', 'need', 'to', 'get', 'out', 'of', 'here.'], ['I', 'think', "it's", 'the', 'best', 'part.'], ['Do', 'you', 'want', 'to', 'come', 'over', 'tonight?'], ['You', 'said', 'that', 'you', 'can', 'handle', 'it.'], ['Tom', 'was', "Mary's", 'house', 'when', 'he', 'kissed', 'Mary', 'in', 'the', 'room.'], ['She', 'talked', 'to', 'the', 'chairperson.'], ['The', 'earth', 'is', 'on', 'the', 'point', 'of', 'the', 'earth.'], ["I'll", 'handle', 'it.'], ['Wait', 'until', 'you', 'want', 'me', 'to', 'wait', 'here.'], ['We', 'were', 'both', 'in', 'the', 'library.'], ['I', "don't", 'know', 'much', 'about', 'you.'], ["We're", 'done.'], ["I'm", 'not', 'going', 'to', 'go', 'with', 'you.'], ['What', 'are', 'you', 'looking', 'for?'], ['I', 'had', 'some', 'problems', 'with', 'my', 'problems', 'with', 'yesterday.'], ['We', 'hope', 'that', 'you', 'will', 'come', 'back', 'soon.'], ['If', 'it', 'had', 'no', 'advice,', 'I', 'had', 'failed.'], ['Everyone', 'was', 'enjoyed'], ['We', 'found', 'a', 'wonderful', 'idea', 'this', 'year.'], ['Hurry', 'up,', 'and', "you'll", 'be', 'late', 'for', 'the', 'train.'], ['girls', "don't", 'like', 'the', 'girls', 'that', 'girls', 'like', 'bees.'], ['Did', 'you', 'hear', 'what', 'I', 'said?'], ['There', 'is', 'a', 'lot', 'of', 'milk', 'under', 'the', 'couch.'], ['Food', 'is', 'a', 'simple', 'body.'], ['You', "won't", 'suggesting', 'Tom', 'could', 'not', 'do', 'it,', "didn't", 'you?'], ['Why', 'are', 'you', 'looking', 'at', 'this?'], ['He', 'bought', 'a', 'newspaper', 'in', 'bed', 'before', 'breakfast.'], ['The', 'boss', 'is', 'very', 'upset.'], ['I', 'like', 'in', 'the', 'river.'], ["Don't", 'forget', 'your', 'money.'], ['Tom', 'is', 'a', 'fanatic.'], ['It', 'really', 'hurts.'], ["It's", 'Tom', 'that', "he's", 'a', 'genius.'], ['This', 'school', 'was', 'founded', 'in', '1970.'], ["That's", 'right.'], ['She', 'advised', 'him', 'to', 'see', 'a', 'lawyer.'], ['I', 'thought', 'they', 'were', 'wrong.'], ['Will', 'you', 'be', 'at', 'ten', 'hours', 'or', 'ten', 'hours', 'to', 'happen?'], ['I', 'remember', 'reading', 'about', 'it.'], ['My', 'mother', 'is', 'at', 'the', 'school', 'beauty.'], ['Please', 'do', 'it', 'when', 'it', 'will', 'take', 'a', 'shot.'], ['I', 'like', 'their', 'old', 'clothes', 'as', 'their', 'old', 'flag.'], ['Tom', 'is', 'a', 'sword.'], ['Oh,', 'not', 'be', 'so', 'bad.'], ["You're", 'a', 'little', 'liar.'], ['I', 'appreciate', 'your', 'kindness.'], ['I', "don't", 'worry', 'about', 'that', 'at', 'all.'], ['No', 'one', 'believes', 'before,', 'voices.'], ["Tom's", 'party', 'was', 'party?'], ['They', 'are', 'thirty', 'hundred', 'dollars.'], ["What's", 'the', 'matter', 'with', 'it?'], ['Do', 'you', 'know', 'how', 'much', 'I', 'want', 'to', 'play', 'the', 'potatoes?'], ['What', 'are', 'your', 'friends?'], ['Tom', 'says', 'he', 'is', 'busy.'], ['They', 'adopted', 'the', 'orphan.'], ['I', 'caught', 'you.'], ['Tom', 'is', 'the', 'boy', 'I', 'told', 'you', 'about.'], ['I', 'figured', 'that', 'to', 'be', 'sure.'], ["You're", 'the', 'one', 'for', 'a', 'day.'], ['The', 'candle', 'was', 'found', 'due', 'to', 'the', 'air.'], ['After', 'an', 'urgent', 'company', 'bound', 'him', 'to', 'get', 'Congress', 'every', 'month.'], ["Here's", 'a', 'yellow', 'rose.'], ['What', 'a', 'lend', 'lend', 'him', 'some', 'money.'], ['Tom', "hasn't", 'eaten', 'lunch', 'since', 'he', 'has', 'three', 'days.'], ['Excuse', 'me', 'a', 'moment.'], ['I', 'love', 'this', 'chair.'], ['Tom', 'was', 'a', 'good', 'mood.'], ['Tom', 'has', 'everything.'], ["We'll", 'do', 'this', 'every', 'Monday.'], ['Can', 'you', 'please', 'repeat', 'the', 'question?'], ["Don't", 'deceive', 'me.'], ["Don't", 'worry', 'about', 'anything.'], ['I', 'suggest', 'you', 'get', 'some', 'sleep.'], ['In', 'the', 'United', 'States', 'is', 'pretty', 'important?'], ['Did', 'you', 'live', 'here', 'before?'], ['I', 'got', 'up', 'early', 'yesterday.'], ['I', 'support', 'you', 'a', 'hundred', 'percent.'], ['I', 'heard', 'all', 'about', 'you.'], ['I', "don't", 'know', 'you', 'anymore.'], ['Tom', 'asked', 'Mary', 'a', 'cup', 'of', 'coffee.'], ['All', 'those', 'books', 'are', 'those', 'and', 'these', 'people.'], ['I', 'know', 'I', "should've", 'done', 'that.'], ["You're", 'staying', 'here.'], ['I', 'will', 'trust', 'you.'], ['It', 'was', 'a', 'huge', 'explosion.'], ['I', "wasn't", 'very', 'serious.'], ["It's", 'safer.'], ['I', 'appreciate', 'your', 'job.'], ['You', "don't", 'need', 'to', 'love', 'me.'], ['I', "didn't", 'even', 'help', 'you.'], ['Are', 'you', 'retarded', 'or', 'something?'], ["Let's", 'clean', 'our', 'room.'], ['The', 'room', 'was', 'closed.'], ['Keep', 'the', 'rope.'], ['I', "don't", 'know', 'how', 'much', 'time', "we've", 'got.'], ['This', 'book', 'is', 'written', 'in', "today's", 'book?'], ['I', 'thought', 'we', 'could', 'stay', 'here', 'all', 'day.'], ['Health', 'used', 'to', 'my', 'diary', 'in', 'my', 'hand', 'in', 'my', 'leg.'], ['You', "shouldn't", 'be', 'children.'], ['I', 'wonder', 'why', 'this', 'is', 'all', 'here.'], ['I', 'finished', 'reading', 'that', 'book.'], ['I', 'ask', 'you', 'a', 'choice.'], ['Seen', 'from', 'the', 'company', 'Mt.', 'Mt.', 'Fuji', 'is', 'like', 'Mt.', 'Fuji.'], ['I', 'understand', 'French', 'for', 'Tom', 'to', 'wait', 'for', 'a', 'teacher.'], ['Tom', 'opened', 'the', 'book', 'and', 'read', 'the', 'pages.'], ['I', "don't", 'know', 'anyone', 'else', 'to', 'us.'], ['Your', 'word', 'is', 'with', 'me.'], ['Bread', 'is', 'made', 'from', 'milk.'], ['I', 'think', 'we', 'can', 'make', 'it', 'on', 'time.'], ['A', 'beautiful', 'box', 'has', 'been', 'a', 'terrible', 'policy.'], ['You', 'really', 'have', 'a', 'nose', 'for', 'you.'], ['I', 'think', 'you', 'look', 'hot.'], ['Tom', 'is', 'now', 'back', 'now.'], ["She's", 'about', 'the', 'other', 'side.'], ['We', 'were', 'dead', 'when', 'he', 'was', 'five', 'years', 'since', 'he', 'died.'], ['I', 'feel', 'pretty', 'tired.'], ['We', 'have', 'to', 'spend', 'some', 'future', 'in', 'the', 'future', 'together', 'about', 'our', 'future', 'enough', 'for', 'probably', 'not', 'to', 'spend', 'our', 'future', 'company.'], ["There's", 'a', 'strike.'], ['What', 'are', 'you', 'trying', 'to', 'happen?'], ['The', 'new', 'bridge', 'is', 'not', 'going', 'to', 'get', 'the', 'police.'], ["I'm", 'not', 'invited', 'to', 'parties.'], ['How', 'dare', 'you', 'talk', 'to', 'me', 'in', 'my', 'way', 'of', 'today.'], ['The', 'dress', 'is', 'very', 'suits', 'you.'], ['Tom', "wasn't", 'at', 'his', "father's", 'father.'], ['He', 'is', 'as', 'high', 'as', 'the', 'best', 'in', 'the', 'world.'], ['What', 'do', 'you', 'want', 'to', 'do', 'in', 'the', 'afternoon?'], ['I', "didn't", 'buy', 'the', 'car.'], ['I', "don't", 'know', 'any', 'more', 'people', 'do', 'it.'], ['I', 'wonder', 'if', 'we', 'may', 'accept', 'the', 'story', 'from', 'the', 'piano.'], ['He', 'was', 'a', 'cold,', 'and', 'the', 'teacher', 'was', 'a', 'white', 'one.'], ['They', 'have', 'set', 'up', 'with', 'the', 'air.'], ['He', 'stood', 'down', 'on', 'the', 'sign', 'of', 'that', 'he', 'stopped', 'by.'], ['This', 'tree', 'is', 'a', 'simple', 'simple', 'and', 'ready', 'to', 'solve.'], ['How', 'do', 'you', 'know', "we're", 'doing', 'all', 'we', 'feel?'], ['Sing', 'it', 'a', 'song.'], ['Do', 'you', 'need', 'some', 'wine?'], ["You're", 'too', 'young', 'to', 'get', 'married.'], ['We', 'know', 'where', 'Tom', 'is.'], ['Can', 'you', 'wait', 'a', 'few', 'minutes?'], ['Money', "isn't", 'always', 'happiness.'], ['I', 'had', 'a', 'homesick.'], ['I', 'remember', 'this', 'report.'], ["You're", 'being', 'prepared.'], ['Tom', 'said', 'that', 'he', 'could', 'really', 'do', 'well.'], ['I', 'went', 'to', 'school', 'because', 'I', 'was', 'sick.'], ['I', 'saw', 'the', 'car', 'saw', 'his', 'car?'], ['Do', 'you', 'want', 'something?'], ['He', 'did', 'not', 'understand', 'what', 'he', 'married', 'his', 'wife', 'that', 'building.'], ['He', 'is', 'going', 'and', 'just', 'and', 'blue.'], ['Everyone', 'was', 'standing.'], ['There', 'are', 'six', 'people', 'in', 'the', 'park.'], ["He's", 'early.'], ['My', 'sister', "isn't", 'at', 'home', 'and', 'just', 'the', 'way', 'it', 'is.'], ["We're", 'pretty', 'proud', 'of', 'that.'], ['You', 'know', 'where', "I'm", 'going.'], ['I', 'want', 'to', 'get', 'up', 'early', 'when', 'it', 'gets', 'dark.'], ['I', 'saw', 'you', 'snickering.'], ["I'm", 'not', 'supposed', 'to', 'help', 'you.'], ['They', 'admired', 'the', 'lovely', 'scenery.'], ['I', 'think', 'the', 'movie', 'is', 'almost', 'over.'], ['You', 'should', 'have', 'taken', 'some', 'brothers.'], ['The', 'line', 'is', 'line', 'to', 'the', 'hook.'], ['I', 'know', 'Tom', 'is', 'a', 'good', 'manager.'], ["Let's", 'talk', 'about', 'it.'], ['The', 'robber', 'kept', 'us', 'listening', 'to', 'the', 'music.'], ['I', 'know', 'that', "you're", 'smart.'], ["You're", 'resourceful.'], ['Tom', 'comes', 'in', 'Australia', 'in', '2013.'], ['She', 'has', 'been', 'ill', 'since', 'the', 'last', 'died.'], ["You'll", 'get', 'in', 'trouble.'], ["I'm", 'looking', 'forward', 'to', 'your', 'share', 'for', 'an', 'effort.'], ['I', 'will', 'have', 'nothing.'], ['It', 'was', 'the', 'list.'], ['My', 'alarm', 'may', 'be', 'hiding', 'in', 'the', 'room.'], ['He', 'entered', 'the', 'room.'], ["I'm", 'sorry.', 'I', 'am', 'in', 'the', 'new', 'one.'], ['He', 'tried', 'to', 'stop', 'the', 'heavy', 'test.'], ['You', 'lied', 'to', 'me.'], ['Tom', 'spent', 'his', 'hand', 'when', 'he', 'was', 'in', 'a', 'high', 'school', 'crash.'], ['I', 'wish', 'I', 'had', 'a', 'camera.'], ['Did', 'Tom', 'believe', 'Tom', 'leave?'], ["It's", 'certainly', 'a', 'waste', 'of', 'time.'], ['It', 'was', 'a', 'good', 'idea.'], ['Anyone', 'told', 'you', 'something', 'about', 'this?'], ['Does', 'he', 'know', 'what', 'you', 'do?'], ['Tom', 'had', 'no', 'intention', 'of', 'frightened?'], ['Women', 'like', 'the', 'kitchen.'], ['Tom', "won't", 'let', 'me', 'leave.'], ['If', 'I', 'had', 'known', 'about', 'it,', 'I', 'would', 'have', 'told', 'you.'], ['I', 'hope', "it's", 'OK.'], ["You've", 'gotten', 'a', 'busy', 'job.'], ['You', 'have', 'a', 'drink?'], ["There's", 'no', 'us.'], ['Tom', 'is', 'a', 'professional', 'photographer.'], ['I', 'have', 'many', 'friends', 'when', 'I', 'speak', 'to', 'you.'], ['I', 'often', 'returned', 'to', 'him', 'on', 'the', 'bus.'], ['They', 'have', 'solved', 'the', 'problem', 'with', 'all', 'the', 'time.'], ['Did', 'you', 'think', 'I', 'was', 'Canadian?'], ["It's", 'a', 'matter', 'of', 'time.'], ["It's", 'in', 'the', 'shower.'], ['He', 'seldom,', 'if', 'ever,', 'have', 'been', 'to', 'an', 'early', 'station.'], ['We', "don't", 'forget.'], ["They're", 'mad', 'at', 'you.'], ['They', 'are', 'responsible', 'for', 'your', 'plan.'], ['Nearly', 'is', 'the', 'capital', 'of', 'war.'], ['She', "couldn't", 'convince', 'him', 'to', 'ride', 'a', 'horse.'], ['Tom', 'turned', 'the', 'light', 'to', 'light', 'the', 'dining', 'room.'], ['Where', 'are', 'your', 'kids?'], ["He's", 'on', 'my', 'desk.'], ['They', 'were', 'playing', 'as', 'a', 'dog.'], ['I', 'accept', 'your', 'conditions.'], ["They're", 'mine.'], ['The', 'butcher', 'got', 'to', 'the', 'gym', 'for', 'politics.'], ['Are', 'you', 'good', 'at', 'cooking?'], ['She', 'ran', 'him', 'for', 'almost', 'him', 'as', 'he', 'could.'], ['I', 'just', 'assumed', "you'd", 'be', 'here.'], ['The', 'horse', 'is', 'trying', 'to', 'stand', 'on', 'politics.'], ['The', 'radio', 'is', 'too', 'difficult', 'for', 'the', 'issue.'], ['I', 'have', 'my', 'own', 'personal', 'body.'], ["We're", 'contented.'], ["You're", 'being', 'going', 'to', 'be', 'father.'], ['Make', 'your', 'bed.'], ["There's", 'no', 'bed.'], ['Can', 'he', 'speak', 'a', 'native', 'speaker', 'or', 'a', 'native', 'speaker', 'language', 'like', 'this?'], ['Have', 'you', 'got', 'these', 'boxes?'], ['Tom', 'made', 'Mary', 'left', 'his', 'house', 'to', 'buy', 'a', 'doctor.'], ['This', 'book', 'is', 'good', 'for', 'good.'], ['We', 'have', 'to', 'come', 'by', 'each', 'other', 'tonight.'], ['That', "doesn't", 'need', 'to', 'be', 'all', 'right', 'away.'], ['You', "shouldn't", 'make', 'fun', 'of', 'them.'], ["Don't", 'even', 'laugh.'], ['You', "can't", 'judge', 'people', 'their', 'toenails.'], ['Why', 'did', 'you', 'do', 'that?'], ["They're", 'still', 'together.'], ['I', 'heard', 'him', 'on', 'the', 'police.'], ['You', "can't", 'just', 'quit.'], ["You're", 'the', 'one', 'who', 'wrote', 'it.'], ['I', 'think', 'you', 'guys', 'want', 'to', 'sit', 'down.'], ['He', 'filled', 'my', 'jacket.'], ['Nobody', 'wants', 'to', 'do', 'that.'], ['I', "can't", 'eat', 'pork.'], ["I'm", 'pretty', 'happy.'], ['The', 'doctor', 'advised', 'him', 'to', 'put', 'on', 'a', 'foot.'], ['These', 'flowers', 'are', 'beautiful.'], ['These', 'boxes', 'are', 'suitable', 'for', 'new', 'people.'], ["That's", 'not', 'for', 'you.'], ['It', 'certainly', 'certainly', "won't", 'be', 'enough.'], ["We're", 'all', 'angry.'], ['You', 'must', 'always', 'keep', 'your', 'hands', 'clean.'], ["Let's", 'end', 'up', 'tonight.'], ['I', 'am', 'a', 'walk.'], ['The', 'company', 'visited', 'him', 'while', 'he', 'is', 'sleeping.'], ['I', 'brought', 'him.'], ['My', 'mother', 'is', 'about', 'to', 'take', 'care', 'of', 'the', 'subject.'], ['Do', 'you', 'have', 'a', 'passport?'], ['If', 'that', "doesn't", 'work,', 'do', 'that', 'anymore.'], ['I', "can't", 'find', 'it.'], ['The', 'light', 'is', 'open.'], ['She', 'gets', 'up', 'her', 'father', 'until', 'he', 'gets', 'rich.'], ['I', 'wonder', 'what', 'you', 'stole', 'his', 'fingers.'], ['What', 'color', 'is', 'this?'], ['I', 'was', 'going', 'to', 'go', 'to', 'bed', 'early.'], ['Go', 'ahead', 'in', 'front', 'of', 'you', 'go', 'ahead', 'of', 'you.'], ['What', 'did', 'I', 'get', 'wrong?'], ['She', 'could', 'make', 'his', 'knees', 'tremble.'], ["I'd", 'like', 'to', 'apologize', 'for', 'the', 'best', 'I', 'made', 'to', 'know', 'the', 'situation.'], ['Your', 'hair', 'is', 'too', 'long.'], ['Tom', 'was', 'really', 'puzzled.'], ['I', 'have', 'nothing', 'but', 'nothing', 'but', 'about', 'something', 'in', 'the', 'day.'], ['Do', 'you', 'have', 'something', 'in', 'mind?'], ['I', 'agree', 'with', 'anything', 'you', 'agree', 'to', 'say.'], ["Let's", 'go', 'out', 'of', 'the', 'one.'], ['If', "you're", 'not', 'happy', 'with', 'us.'], ['Everything', 'is', 'good.'], ['His', 'sister', 'looks', 'like', 'a', 'young.'], ['I', 'never', 'thought', 'this', 'way.'], ['You', 'should', 'stay', 'away', 'from', 'Tom.'], ['I', 'have', 'to', 'find', 'out', 'what', "I'm", 'going', 'on.'], ["That's", 'all', 'for', 'today.'], ['I', 'count', 'on', 'the', 'desk.'], ['He', 'is', 'as', 'heavy', 'as', 'he', 'left.'], ['Your', 'life', 'is', 'in', 'your', 'life.'], ['I', 'am', 'sorry', 'about', 'my', 'family.'], ['Is', 'that', 'the', 'train', 'station?'], ['I', "haven't", 'seen', 'you', 'in', 'ages.'], ['He', 'is', 'getting', 'tired.'], ['It', 'may', 'you', 'know', "you're", 'not', 'interested', 'in', 'danger', 'of', 'your', 'concern.'], ['Tom', 'is', 'a', 'student,', "isn't", 'it?'], ["What's", 'your', 'problem?'], ['Can', 'I', 'write', 'on', 'what', 'to', 'write', 'on?'], ["You're", 'a', 'teacher.'], ["You're", 'not', 'a', 'very', 'good', 'liar.'], ['Just', 'give', 'me', 'a', 'little', 'privacy.'], ['The', 'promised', 'asked', 'me', 'a', 'full', 'phone', 'number.'], ['I', 'have', 'to', 'walk', 'this', 'morning.'], ['He', 'has', 'a', 'rich', 'man.'], ['I', 'lost', 'my', 'father', 'out', 'of', 'my', 'father', 'thirty', 'years', 'old.'], ['The', 'first', 'time', 'is', 'the', 'best', 'of', 'order.'], ['If', 'it', "hadn't", 'happened', 'that', 'I', 'could', 'not', 'give', 'it', 'that', 'way.'], ["You've", 'got', 'to', 'be', 'bold!'], ["I'd", 'like', 'to', 'thank', 'you', 'for', 'coming', 'today.'], ['They', 'think', 'that', 'Tom', 'is', 'learning', 'home', 'alive.'], ['Do', 'you', 'know', 'someone', 'who', 'needs', 'some', 'water.'], ['What', 'are', 'some', 'foods', 'you', 'usually', 'eat', 'with', 'chopsticks?'], ['Tom', 'signed', 'the', 'knot.'], ['She', 'give', 'me', 'a', 'cup', 'of', 'tea.'], ['He', 'bought', 'a', 'hat.'], ['Even', 'cats', 'chocolate?'], ['Stay', 'where', 'you', 'are.'], ['I', 'dream', 'to', 'answer', 'his', 'letter', 'from', 'his', 'letter.'], ['Tom', 'gave', 'a', 'double', 'three', 'dollars.'], ['The', 'house', 'is', 'for', 'sale.'], ['Will', 'you', 'take', 'a', 'look', 'at', 'it?'], ['If', 'you', 'need', 'help,', 'thank', 'you.'], ['Thank', 'you', 'as', 'hard', 'as', 'you', 'made.'], ['What', 'do', 'you', 'want', 'to', 'do', 'now?'], ['All', 'the', 'men', 'are', 'desperate', 'to', 'murder.'], ['Whoever', 'thought', 'that', 'Tom', 'should', 'think', 'of', 'what', 'to', 'think', 'he', 'is.'], ['He', 'drank', 'a', 'glass', 'of', 'water.'], ['How', 'big', 'you', 'are!'], ['The', 'exhibition', 'was', 'very', 'impressive.'], ['I', 'need', 'to', 'take', 'a', 'shower.'], ["I've", 'never', 'talked', 'to', 'all', 'this', 'before.'], ['Go', 'in', 'the', 'room', 'please.'], ['Tom', 'is', 'going', 'to', 'work', 'for', 'me', 'to', 'work', 'here.'], ['I', 'shook', 'every', 'morning.'], ['He', 'was', 'only', 'a', 'rabbit', 'alone.'], ['She', 'decided', 'to', 'become', 'a', 'doctor.'], ['I', 'want', 'you', 'to', 'stay', 'where', 'you', 'are!'], ['Are', 'you', 'a', 'knife?'], ['Something', "there's", 'nothing', 'but', 'nothing', 'not', 'today.'], ["She's", 'a', 'very', 'beautiful.'], ['The', 'world', 'would', 'be', 'very', 'expensive.'], ["I'm", 'sorry', 'that', 'I', "didn't", 'bother', 'you.'], ['Tom', 'is', 'going', 'to', 'bed', 'at', 'the', 'same', 'time', 'every', 'night.'], ['There', 'were', 'a', 'couple', 'of', 'complaints', 'among', 'the', 'guests.'], ['Go', 'away', 'before', 'they', 'see', 'you', 'here.'], ['Could', 'you', 'please', 'stop', 'singing?'], ['Do', 'you', 'look', 'like', 'this.'], ['She', 'gave', 'him', 'a', 'piece', 'of', 'paper.'], ['Is', 'there', 'a', 'person', 'for', 'a', 'person', 'for', 'us?'], ['The', 'truth', 'is', 'that', 'I', 'love', 'Tom.'], ['I', 'was', 'used', 'to', 'not', 'used', 'to', 'swim', 'because', 'of', 'it.'], ['Are', 'there', 'enough', 'chairs', 'for', 'everyone?'], ['Tom', 'has', 'to', 'get', 'up', 'at', 'noon.'], ['I', "can't", 'keep', 'up', 'with', 'that.'], ['They', 'made', 'a', 'hurry.'], ['Now', 'that', 'I', 'met', 'my', 'parents', 'when', 'I', 'saw', 'my', 'friend', 'here', 'when', 'I', 'was', 'a', 'child.'], ["You're", 'not', 'listening!'], ["That's", 'a', 'waste', 'of', 'time.'], ['Am', 'I', 'going', 'to', 'be', 'a', 'movie?'], ['Tom', 'showed', 'Mary', 'the', 'finger.'], ['She', 'has', 'five', 'children.'], ['I', 'was', 'right', 'behind', 'you.'], ['You', 'need', 'to', 'have', 'fun', 'of', 'something.'], ['She', 'made', 'him', 'for', 'help.'], ["I'm", 'on', 'the', 'way', 'to', 'work.'], ['The', 'dog', 'is', 'two', 'bottles', 'of', 'stone.'], ["I'm", 'glad', 'you', 'brought', 'that', 'up.'], ['Her', 'daughter', 'is', 'the', 'kind', 'of', 'good', 'teacher.'], ['Try', 'not', 'to', 'look', 'so', 'shocked.'], ["Don't", 'stop', 'at', 'the', 'dog.'], ['What', 'are', 'the', 'weather', 'for', 'tomorrow?'], ["It's", 'cheaper', 'if', 'you', 'want', 'to', 'open', 'the', 'dozen.'], ['He', 'listened', 'to', 'his', 'name', 'on', 'the', 'election.'], ['You', 'should', 'try', 'out', 'of', 'your', 'condition', "don't", 'go', 'on.'], ['May', 'I', 'ask', 'you', 'a', 'personal', 'question?'], ['He', 'signed', 'the', 'check.'], ['No', 'one', 'pays', 'attention', 'to', 'Tom.'], ['I', "don't", 'want', 'to', 'see', 'your', 'theory.'], ['What', 'are', 'you', 'doing', 'here?'], ["I'm", 'learning', 'French.'], ['What', 'a', 'big', 'truck!'], ['I', "couldn't", 'stop', 'crying.'], ["You're", 'not', 'the', 'ability', 'to', 'smoke.'], ['He', 'spends', 'too', 'much', 'money.'], ['I', "don't", 'want', 'to', 'buy', 'a', 'job', 'like', 'this.'], ['It', 'was', 'clear', 'what', 'he', 'had', 'never', 'been', 'doing', 'yesterday.'], ['He', 'wiped', 'his', 'hands', 'with', 'a', 'handkerchief.'], ['It', 'was', 'really', 'hard', 'to', 'give', 'me', 'a', 'hard', 'speech', 'when', 'I', 'buy', 'it.'], ['Give', 'Tom', 'what', 'you', 'have', 'to', 'do.'], ['It', 'took', 'me', 'a', 'long', 'time', 'with', 'my', 'watch', 'pocket.'], ['I', 'knew', 'it', 'was', 'a', 'mistake.'], ['Do', 'you', 'want', 'to', 'try', 'it?'], ['Have', 'a', 'good', 'weekend.'], ['I', "don't", 'have', 'any', 'evidence.'], ['She', 'made', 'him', 'happy.'], ["You're", 'the', 'only', 'person', 'I', 'met', 'me.'], ["I'm", 'glad', 'you', 'liked', 'it.'], ['It', 'must', 'be', 'a', 'mistake.'], ['They', 'were', 'talking', 'about', 'you.'], ['Do', 'you', 'have', 'a', 'warm', 'one?'], ['I', 'thought', 'I', 'was', 'going', 'crazy.'], ['He', 'was', 'successful', 'from', 'prison.'], ['Are', 'you', 'about', 'done?'], ['I', 'am', "what's", 'up', 'to', 'us.'], ['I', "don't", 'want', 'you', 'to', 'stand', 'you.'], ['She', 'took', 'my', 'idea.'], ['I', "don't", 'even', 'want', 'to', 'hazard', 'a', 'guess.'], ['Oh,', "couldn't", 'afford', 'to', 'do', 'it.'], ['The', 'news', 'spread', 'next', 'week.'], ['I', 'have', 'no', 'weight.'], ['What', 'do', 'you', 'think', 'about', 'it?'], ['Anything', 'he', 'could', 'do', 'it.'], ['No', 'one', 'saw', 'it.'], ['This', 'is', 'a', 'lot', 'too', 'much', 'to', 'get', 'used', 'to.'], ['I', 'work', 'in', 'a', 'bank.'], ['How', 'can', 'I', 'help', 'you?'], ["We're", 'still', 'not', 'sure.'], ['Tom', 'is', 'always', 'trying', 'to', 'be', 'rude.'], ["What's", 'your', 'favorite', 'subject?'], ['I', 'thought', "you'd", 'gone', 'home.'], ['Tom', "didn't", 'get', 'used', 'to', 'what', 'he', 'was', 'paid', 'yesterday.'], ['She', 'is', 'able', 'to', 'fix', 'it.'], ['It', "could've", 'better.'], ['I', 'love', 'blue.'], ['The', 'bridge', 'was', 'too', 'trying', 'to', 'do', 'that', 'there', 'would', 'be', 'swimming.'], ['Tom', 'was', 'surprised', 'with', "Mary's", 'death.'], ['It', 'was', 'a', 'resounding', 'success.'], ["It's", 'hard', 'to', 'meet', 'Tom.'], ['Take', 'this', 'mountain', 'out', 'of', 'the', 'project.'], ['I', 'want', 'your', 'name', 'at', 'the', 'first', 'thing.'], ['She', 'told', 'him', 'that', 'she', 'was', 'sad.'], ['The', 'meeting', 'was', 'not', 'yet', 'meeting', 'yet.'], ['First', 'of', 'this', 'book', 'you', 'can', 'read.'], ["Didn't", 'you', 'hear', 'your', 'name', 'called?'], ['My', 'friends', 'and', 'I', 'want', 'to', 'do', 'so.'], ["You're", 'lucky', 'to', 'have', 'a', 'job.'], ["We're", 'not', 'at', 'home.'], ['I', 'have', 'a', 'lot', 'of', 'friends.'], ['Tom', 'has', 'done', 'everything.'], ['Since', 'my', 'office', 'in', 'Tokyo', 'is', 'used', 'to', 'the', 'airport.'], ['What', 'do', 'you', 'feel', 'most', 'proud', 'of?'], ['If', 'I', 'go', 'to', 'the', 'train,', 'so', 'that', 'I', 'will', 'come', 'at', 'the', 'cops.'], ['My', 'paintings', 'hurts.'], ['You', 'must', 'not', 'stay', 'in', 'bed.'], ['Of', 'course', 'Tom', 'will', 'survive.'], ['I', "don't", 'like', 'being', 'inside.'], ['He', 'is', 'a', 'poet.'], ['He', 'showed', 'his', 'books.'], ["They're", 'cousins.'], ['I', 'live', 'in', 'four', 'four', 'four', 'four', 'years.'], ['I', 'enjoyed', 'working', 'with', 'you.'], ['Try', 'is', 'a', 'lot', 'of', 'mine.'], ['You', 'look', 'busy.'], ['The', 'road', 'has', 'been', 'lost.'], ['I', 'never', 'drink', 'beer', 'before', 'dinner.'], ["Don't", 'bother.'], ['You', 'need', 'to', 'be', 'more', 'patient.'], ['We', 'went', 'on', 'foot.'], ["I'll", 'lend', 'you', 'a', 'new', 'suit.'], ['You', 'always', 'said', 'you', 'wanted', 'to', 'become', 'a', 'scientist.', "you've", 'ever', 'want?'], ['They', "can't", 'hurt', 'you', 'now.'], ['Thanks', 'to', 'my', 'homework,', 'I', 'already', 'finished', 'my', 'homework.'], ['Here', 'is', 'it.'], ['Take', 'up', 'on.'], ['I', 'thought', 'you', 'were', 'a', 'man.'], ['I', "can't", 'trust', 'him.'], ['A', 'good', 'supply', 'of', 'much,', 'you', 'can', 'look', 'at', 'you', 'at', 'own', 'clothes.'], ['I', 'want', 'to', 'try.'], ["I'll", 'take', 'care', 'of', 'it.'], ["I'm", 'tough.'], ['Here', 'is', 'my', 'phone', 'number.'], ["Don't", 'hurt', 'me', 'up.'], ["You've", 'loved', 'to', 'be', 'in', 'your', 'surprised', 'to', 'meet', 'her', 'room.'], ["I'm", 'going', 'to', 'take', 'a', 'beer.'], ['We', 'all', 'know', 'that', 'Tom', 'is', 'guilty.'], ['Bangkok', 'is', 'capital', 'capital', 'of', 'the', 'city.'], ["You've", 'been', 'great.'], ['I', 'thought', 'she', 'wanted', 'to', 'walk', 'from', 'bed', 'again.'], ["I'm", 'not', 'a', 'child.'], ['Why', 'do', 'you', 'think', 'that?'], ["It's", 'really', 'not', 'that', 'simple.'], ["I'll", 'never', 'finish', 'the', 'last', 'time', 'that', 'went', 'to', 'a', 'picnic', 'together.'], ["What's", 'your', 'theory', 'on', 'what', 'happened?'], ['The', 'rain', 'when', 'the', 'rain', 'will', 'be', 'fine', 'when', 'it', 'will', 'rain.'], ['The', 'price', 'of', 'power', 'has', 'advanced', 'to', 'succeed.'], ["You're", 'in', 'the', 'side.'], ['Nothing', 'does', 'no', 'one.'], ['What', 'if', 'you', 'take', 'a', 'break?'], ['I', 'was', 'just', 'going', 'to', 'work.'], ['How', 'many', 'times', 'have', 'you', 'done', 'this?'], ['I', 'knew', 'Tom', 'would', 'be', 'pretty', 'sure', 'that', 'Tom', 'speaks', 'French', 'enough.'], ['She', 'advised', 'him', 'to', 'get', 'more', 'exercise.'], ['I', "can't", 'stand', 'the', 'letters.'], ['I', 'am', 'thinking', 'that', 'he', 'will', 'think', 'he', 'is', 'coming', 'to', 'today.'], ['It', 'was', 'sweet.'], ["He's", 'addicted', 'to', 'heroin.'], ['I', 'will', 'agree', 'with', 'you.'], ['Why', 'would', 'that', 'sound', 'like', 'such', 'an', 'interesting', 'meaning', 'to', 'happen?'], ['Tom', 'began', 'running.'], ["It's", 'a', 'mistake.'], ['Do', 'you', 'think', "I'm", 'stupid?'], ["Tom's", 'boss', 'is', 'ambidextrous.'], ['You', "don't", 'give', 'me', 'any', 'choice.'], ['I', 'remember', 'that', 'you', 'already', 'had', 'a', 'good', 'story.'], ['The', 'weather', "isn't", 'even', 'off', 'yet.'], ["I'm", 'not', 'a', 'vegetarian.'], ['I', 'wanted', 'to', 'know', 'why', 'you', "didn't", 'know', 'yesterday.'], ['I', 'want', 'to', 'talk', 'to', 'you,', 'Tom.'], ['We', 'had', 'a', 'huge', 'argument.'], ['They', 'tried', 'to', 'discourage', 'him', 'from', 'going.'], ['I', 'went', 'to', 'reading.'], ['You', "don't", 'have', 'to', 'be', 'so', 'rude.'], ['This', 'is', 'so', 'beautiful.'], ['I', 'am', 'trying', 'to', 'give', 'my', 'money', 'on.'], ['What', 'are', 'your', 'dirty', 'pizza', 'for?'], ['May', 'I', 'see', 'you', 'a', 'moment?'], ['I', 'want', 'you', 'to', 'give', 'me', 'a', 'job.'], ['Come', 'on!'], ['I', 'think', 'you', 'should', 'postpone', 'the', 'meeting.'], ['This', 'tea', 'smells', 'good.'], ['I', "don't", 'think', 'I', 'can', 'help', 'you.'], ['A', 'fire', 'shook', 'night.'], ['That', "doesn't", 'make', 'any', 'sense.'], ['Long', 'man', 'has', 'changed.'], ['I', 'have', 'already', 'left', 'by', 'a', 'car', 'today.'], ['Shut', 'up.'], ['I', 'want', 'you', 'to', 'be', 'with', 'me.'], ['You', 'look', 'like', 'a', 'smart', 'person.'], ['I', 'changed', 'my', 'mind.'], ['The', 'pretty', 'made', 'up', 'with', 'a', 'pretty', 'good', 'good.'], ['It', 'is', 'too', 'big', 'to', 'swim.'], ['Drop', 'your', 'gun', 'on', 'the', 'picture.'], ['Are', 'you', 'ready', 'to', 'begin?'], ['You', "don't", 'need', 'to', 'read', 'these', 'days.'], ["There's", 'no', 'us.'], ['That', "doesn't", 'have', 'to', 'be', 'a', 'lot?'], ['We', 'need', 'to', 'take', 'care', 'of', 'us.'], ['You', 'really', "don't", 'really', 'smoke,'], ['Tom', "didn't", 'lend', 'me', 'my', 'money.'], ['He', 'is', 'a', 'soccer', 'student.'], ['She', 'advised', 'him', 'to', 'get', 'some', 'rest.'], ['She', 'loves', 'insects.'], ["Can't", 'you', 'tell', 'me', 'how', 'to', 'do', 'this?'], ['Coastal', 'cities', 'will', 'win', 'the', 'storm.'], ['You', 'said', 'you', 'wanted', 'a', 'family.'], ["I'll", 'wait', 'to', 'sleep.'], ['Being', 'very', 'tired,', 'I', 'went', 'to', 'bed', 'early.'], ['I', 'want', 'to', 'take', 'a', 'piece', 'of', 'paper', 'to', 'get', 'out', 'of', 'the', 'sofa.'], ['He', 'leaves', 'next', 'month.'], ['Please', 'smile.'], ['That', 'sounds', 'very', 'interesting.'], ['We', 'must', 'reflect', 'on', 'our', 'failure.'], ['My', 'eyes', 'are', 'so', 'tired', 'that', 'I', "can't", 'think', 'of', 'the', 'end', 'of', 'this', 'problem.'], ['Someone', 'tried', 'to', 'lock', 'the', 'door', 'open.'], ['In', 'a', 'distance,', 'that', 'stone', 'look', 'at', 'the', 'end', 'of', 'a', 'distance,'], ["That's", 'what', 'you', 'told', 'me.'], ['I', 'remember', 'everything', 'you', 'said.'], ['The', 'only', 'ours.', 'are', 'the', 'only', 'one', 'that', 'are', 'the', 'only', 'one.'], ['How', 'much', 'longer', 'is', 'still', 'missing?'], ['I', 'want', 'to', 'write', 'a', 'letter.'], ['Your', 'dog', 'is', 'very', 'big.'], ['What', 'a', 'remarkable', 'dress!'], ["It's", 'awesome.'], ['Both', 'of', 'the', 'brothers', 'are', 'married.'], ['You', 'knew', 'I', 'was', 'married.'], ['You', 'should', 'stay', 'here', 'a', 'few', 'days.'], ['He', 'is', 'a', 'fruit.'], ['I', 'never', 'wanted', 'to', 'hurt', 'anyone.'], ['She', 'advised', 'him', 'to', 'do', 'it.'], ['The', 'bus', 'leaves', 'up', 'passengers.'], ['I', "won't", 'tell', 'you', 'that', 'you', "won't", 'do', 'it.'], ["It's", 'very', 'cold', 'today.'], ['Let', 'me', 'handle', 'it.'], ['She', 'told', 'us', 'a', 'interesting', 'story.'], ['They', 'were', 'scolded', 'by', 'the', 'oldest', 'place', 'than', 'been', 'happy.'], ['Are', 'you', 'where', 'this', 'is', 'Paris?'], ['That', 'often', 'comes', 'on', 'each', 'other.'], ['How', 'do', 'you', 'feel', 'like', 'this?'], ["I'm", 'naive.'], ['Will', 'you', 'help', 'me', 'do', 'this', 'for', 'French?'], ["We'll", 'keep', 'in', 'touch.'], ['You', 'were', 'already', 'alone', "haven't", 'you?'], ['This', 'is', 'a', 'human', 'personality.'], ['This', 'painting', 'heavy.'], ['Would', 'you', 'like', 'to', 'see', 'my', 'new', 'car?'], ['Did', 'you', 'ask', 'his', 'money', 'to', 'write', 'to', 'him?'], ['Have', 'you', 'read', "today's", 'paper?'], ['Has', 'Tom', 'ever', 'come', 'in', 'the', 'room?'], ['Write', 'for', 'Tom.'], ['I', 'was', 'happy', 'then.'], ['Do', 'you', 'think', 'I', 'can', 'use', 'my', 'cellphone', 'on', 'the', 'shower?'], ['We', 'will', 'hurry.'], ["You're", 'not', 'going', 'out', 'today.'], ['Grab', 'this.'], ["I'm", 'going', 'to', 'walk', 'on', 'this', 'piece', 'of', 'cake.'], ["You're", 'the', 'only', 'person', 'I', 'know', 'besides', 'my', 'age.'], ['His', 'sister', 'looks', 'like', 'a', 'young.'], ['What', 'do', 'you', 'mean?'], ['This', 'bomb', 'bomb', 'many', 'people.'], ['I', 'have', 'nothing', 'to', 'say', 'against', 'that.'], ['Everyone', 'made', 'you', 'know.'], ['The', 'weather', 'was', 'delayed', 'yesterday.'], ['Clean', 'up', 'now.'], ['Do', 'you', 'want', 'something?'], ["I'll", 'try.'], ['What', 'does', 'that', 'mean?'], ["I'll", 'tell', 'you', 'the', 'way.'], ['You', 'know', 'I', 'have', 'to', 'go.'], ['He', 'is', 'really', 'angry', 'when', 'he', 'will', 'get', 'a', 'great', 'trip.'], ['I', 'know', "something's", 'wrong.'], ["I'll", 'stay', 'here.'], ['Tom', 'is', 'a', 'pretty', 'good', 'plumber.'], ['People', 'are', 'hard', 'for', 'the', 'dirty', 'people.'], ["I'm", 'looking', 'for', 'my', 'passport.', "Don't", 'see', 'you?'], ['Your', 'idea', 'is', 'not', 'entirely', 'crazy.'], ['I', "didn't", 'know', 'you', 'were', 'so', 'tired.'], ['At', 'what', 'I', 'made', 'up', 'my', 'many', 'mistakes.'], ['Why', 'did', 'it', 'take', 'a', 'difference?'], ['I', 'think', "it's", 'time', 'for', 'him', 'to', 'solve', 'this', 'problem.'], ['May', 'I', 'eat', 'this', 'cake?'], ["You'll", 'have', 'a', 'lot', 'of', 'things,', "didn't", 'you?'], ['They', 'accused', 'us', 'their', 'invitation.'], ['I', "can't", 'believe', 'this', 'is', 'happening.'], ['My', 'brother', 'died', 'in', 'the', 'United', 'States.'], ['Tom', 'can', 'swim,', 'can', 'she?'], ["He's", 'afraid', 'of', 'dogs.'], ['The', 'two', 'of', 'us', 'are', 'a', 'great', 'jam.'], ['I', 'know', "you're", 'in', 'position.'], ['Tom', "wasn't", 'planning', 'to', 'talk', 'to', 'Mary.'], ['It', 'was', 'cruel', 'to', 'hurt', 'all', 'charges.'], ['I', 'have', 'three', 'choices.'], ['The', 'need', 'needs', 'to', 'be', 'treated', 'strong.'], ['You', "can't", 'do', 'it', 'right', 'now.'], ['I', 'have', 'a', 'question.'], ["You'd", 'better', 'not', 'go', 'today.'], ['These', 'boxes', 'are', 'that', 'heavy.'], ['I', 'waited', 'for', 'ten', "o'clock", 'until', 'ten.'], ['We', 'both', 'have', 'two', 'us', 'alone.'], ['Tom', 'can', 'come', 'back', 'tomorrow.'], ['She', 'called', 'him', 'to', 'call', 'her', 'after', 'school.'], ['She', 'is', 'always', 'complaining', 'about', 'something', 'new.'], ['Take', 'a', 'deep', 'breath,', 'please.'], ["I'll", 'ask', 'you', 'to', 'do', 'what', 'needs', 'to', 'do', 'that.'], ['I', 'made', 'a', 'list', 'of', 'things', 'I', 'needed', 'to', 'do.'], ['Tom', 'wants', 'you', 'to', 'come.'], ['Choose', 'whichever', 'you', 'like.'], ['I', 'gave', 'him', 'a', 'gold', 'jacket.'], ['What', 'was', 'it', 'when', 'he', 'jumped', 'in', 'January.'], ['Would', 'you', 'like', 'some', 'water?'], ['You', 'must', 'help', 'your', 'mother.'], ['I', "don't", 'have', 'a', 'walk.'], ['Tom', 'has', 'his', 'own', 'bread.'], ['Have', 'you', 'tried', 'this', 'before?'], ['It', 'would', 'be', 'more', 'time', 'for', 'our', 'time', 'to', 'give', 'up', 'our', 'life.'], ['The', 'light', 'is', 'likely', 'and', 'heat.'], ['I', 'am', 'going', 'to', 'walking', 'on', 'the', 'weekend', 'when', 'I', 'want', 'to', 'see', 'the', 'classroom.'], ['I', 'have', 'a', 'stomachache.'], ["You've", 'had', 'fun,', "didn't", 'we?'], ['I', 'must', 'find', 'the', 'way', 'to', 'work.'], ['I', 'know', 'that', 'there', 'is', 'a', 'great', 'house.'], ['Do', 'you', 'have', 'to', 'hide', 'the', 'dishwasher?'], ['I', 'had', 'to', 'do', 'this', 'today.'], ['The', 'teacher', 'was', 'surprised', 'by', 'the', 'answer.'], ['They', 'sat', 'on', 'the', 'verge', 'with', 'oil.'], ['How', 'pretty', 'probably', 'hate', 'each', 'other.'], ["There's", 'a', 'man', 'at', 'the', 'door.'], ['She', 'lost', 'her', 'car', 'keys.'], ['You', 'are', 'going', 'to', 'be', 'a', 'form', 'of', 'air.'], ['The', 'books', 'are', 'on', 'the', 'shelf.'], ['He', 'always', 'wears', 'me.'], ['I', 'just', 'want', 'to', 'talk', 'to', 'you', 'a', 'little', 'time.'], ['I', "don't", 'know', 'what', 'I', 'do.'], ['Do', 'you', 'know', 'why', 'he', 'is', 'so', 'angry?'], ['They', 'found', 'the', 'prisoner.'], ["What's", 'being', 'beautiful.'], ['How', 'often', 'do', 'you', 'remember?'], ['I', 'have', 'a', 'lot', 'of', 'work', 'to', 'do.'], ['Did', 'you', 'hear', 'something', 'happen?'], ['I', 'like', 'the', 'way', 'you', 'walk.'], ['She', 'cooked', 'him', 'for', 'being', 'late.'], ['I', "don't", 'believe', 'what', 'he', 'says.'], ['I', "don't", 'want', 'to', 'throw', 'this.'], ['Are', 'you', 'sure', 'he', "doesn't", 'think', "he's", 'in', 'this', 'river?'], ['He', 'played', 'tennis', 'all', 'day.'], ['I', 'love', 'that', 'song.'], ['They', 'had', 'a', 'spot.'], ['I', 'was', 'as', 'late,', 'as', 'he', 'could.'], ['That', 'should', 'be', 'enough.'], ['I', "didn't", 'know', 'you', 'cared', 'that', 'much.'], ['I', 'told', 'her', 'about', 'that', 'if', 'I', 'had', 'a', 'happy', 'I', 'would', 'be', 'too', 'proud', 'of', 'help.'], ['It', 'depends', 'on', 'the', 'situation.'], ["We're", 'playing', 'chess.'], ['What', 'are', 'you', 'going', 'to', 'do', 'next?'], ['Why', 'do', 'you', 'want', 'to', 'go', 'out', 'with', 'me?'], ["You'll", 'have', 'this', 'better', 'weather.'], ['Did', 'you', 'hear', 'the', 'word', 'I', 'said', 'so?'], ['I', "don't", 'know', 'where', 'to', 'begin.'], ['The', 'old', 'couple', 'has', 'no', 'children.'], ['When', 'will', 'it', 'be?'], ['They', "can't", 'all', 'be', 'all', 'in', 'all.'], ['You', "don't", 'have', 'to', 'go', 'there.'], ['Tom', 'has', 'the', 'power.'], ["That's", 'my', 'real', 'name.'], ['I', 'have', 'a', 'lot', 'of', 'hands.'], ["It's", 'a', 'difficult', 'time', 'for', 'all', 'of', 'us.'], ["I'd", 'like', 'my', 'money', 'you', 'would', 'like', 'to', 'spend', 'my', 'books.'], ["I'm", 'a', 'college', 'student.'], ['Tom', 'thought', 'I', 'could', 'stay', 'longer.'], ['So,', 'how', 'did', 'it', 'take', 'a', 'date?'], ["Tom's", 'always', 'always', 'is', 'always', 'tired.'], ["Don't", 'cut', 'out', 'of', 'bed', 'a', 'cold.'], ["I'm", 'surprised', 'to', 'hear', "Tom's", 'smile.'], ["I'd", 'be', 'delighted', 'if', 'they', 'asked', 'me', 'to', 'help', 'you.'], ['I', "don't", 'like', 'Tom', 'to', 'be', 'a', 'hard', 'man.'], ['Your', 'oldest', 'is', 'the', 'best', 'than', 'mine.'], ['People', 'are', 'stupid.'], ['I', "don't", 'like', 'people', 'like', 'Tom.'], ["Don't", 'give', 'up.'], ['What', 'did', 'I', 'do', 'it?'], ['What', 'are', 'your', 'opinion', 'on', 'this?'], ['He', 'inherited', 'his', "father's", 'after', 'after', 'his', 'father.'], ['How', 'far', 'is', 'it', 'from', 'here', 'to', 'us?'], ['I', 'like', 'the', 'cookies.'], ['You', "didn't", 'have', 'a', 'lot', 'so', 'lot?'], ['Young', 'this', 'kind', 'of', 'books', 'are', 'too', 'nice.'], ['They', "don't", 'know', 'anything.'], ['Could', 'you', 'open', 'the', 'door?'], ["You'd", 'better', 'leave', 'me.'], ['Will', 'you', 'join', 'us?'], ['Sorry,', 'I', "didn't", 'hear', 'you.'], ['According', 'to', 'the', 'supermarket', 'just', 'the', 'supermarket', 'was', 'an', 'example', 'of', 'China', 'when', 'it', 'is', 'a', 'mess.'], ['I', 'really', 'do', 'what', 'I', 'do.'], ['I', 'work', 'in', 'a', 'zoo.'], ['I', 'gave', 'him', 'my', 'address.'], ['We', 'ran', 'away', 'after', 'the', 'tree.'], ['There', 'are', 'a', 'lot', 'of', 'eggs', 'in', 'this', 'morning,'], ['I', 'have', 'a', 'bad', 'hand', 'in', 'the', 'hand.'], ['This', 'necklace', 'is', 'beautiful.'], ['Is', 'there', 'anyone', 'can', 'drive', 'the', 'car?'], ["Don't", 'try', 'to', 'be', 'in', 'the', 'mood', 'to', 'take', 'a', 'walk', 'or', 'so.'], ["I'm", 'not', 'sure', 'this', 'is', 'a', 'good', 'idea.'], ['Do', 'you', 'want', 'to', 'sing?'], ["I'll", 'try', 'to', 'contact', 'Tom', 'anymore.'], ['I', 'thought', 'you', 'were', 'broke.'], ['Are', 'you', 'sure', "you're", 'warm', 'enough?'], ['Take', 'this', 'sentence', 'will', 'become', 'very', 'easy.'], ['I', 'have', 'a', 'big', 'surprise', 'for', 'you.'], ['Are', 'you', 'seriously', 'thinking', 'about', 'quitting', 'your', 'job?'], ["That's", 'all', 'I', 'appreciate', 'it.'], ['I', "didn't", 'see', 'my', 'place.'], ['He', 'was', 'on', 'the', 'head', 'of', 'the', 'moon.'], ['I', 'just', 'want', 'a', 'little', 'more', 'coffee.'], ['He', 'will', 'soon', 'be', 'here.'], ['Tom', 'told', 'Mary', 'that', 'he', "wasn't", 'married.'], ['I', 'know', 'you', 'want', 'to', 'help.'], ['I', "don't", 'know', "what's", 'wrong.'], ['You', "don't", 'have', 'to', 'go.'], ["I'll", 'do', 'that', 'if', 'you', 'could.'], ['We', 'need', 'some', 'trouble.'], ["When's", 'of', 'this', 'will', 'be?'], ['I', "don't", 'want', 'to', 'know', 'what', 'you', 'did', 'yesterday.'], ["I'm", 'broke.'], ['The', 'roads', 'are', 'running', 'up', 'in', 'the', 'forest.'], ['He', 'asked', 'for', 'his', 'friends.'], ['I', 'write', 'a', 'lot', 'of', 'his', 'family.'], ['He', 'made', 'a', 'loud', 'hurry.'], ['Tom', 'refused', 'to', 'kiss', 'Mary.'], ['I', 'want', 'you', 'and', 'me', 'to', 'be', 'happy.'], ["It's", 'a', 'joke.'], ["I'm", 'glad', 'you', 'could', 'join', 'us.'], ['I', 'put', 'the', 'money', 'in', 'the', 'pocket.'], ['You', 'can', 'run,', 'but', 'you', "can't", 'live.'], ['The', 'rested', 'lay', 'on', 'the', 'desk.'], ['Maybe', 'we', 'should', 'try', 'that', 'further', 'again.'], ['If', 'it', 'is', 'it', 'when', 'it', 'will', 'get', 'it', 'up', 'to', 'the', 'sand.'], ['He', 'tried', 'to', 'open', 'the', 'door.'], ["Don't", 'grow', 'kids.'], ['We', 'are', 'not', 'going', 'to', 'our', 'plan', 'to', 'get', 'our', 'change.'], ['There', 'are', 'things', 'that', 'I', "don't", 'understand.'], ['Do', 'you', 'really', 'think', 'Tom', 'is', 'better', 'than', 'you?'], ['The', 'water', 'is', 'a', 'spy.'], ['Tom', "didn't", 'forget', 'Mary.'], ['Remain', 'seated,', 'please.'], ['Tom', 'often', 'hurt', "people's", 'people.'], ['You', 'have', 'no', 'fever.'], ['I', 'woke', 'you', 'up.'], ['I', 'just', 'got', 'your', 'letter', 'yesterday.'], ["He's", 'addicted', 'to', 'heroin.'], ['I', "don't", 'know', 'if', 'we', 'want', 'to', 'do', 'that.'], ['You', 'look', 'fabulous.'], ['My', 'friend', 'was', 'pale.'], ['The', 'question', 'is', 'why', 'I', 'told', 'you', 'to', 'tell', 'me?'], ['Since', 'I', 'was', 'a', 'cold,', 'I', 'was', 'absent', 'from', 'school.'], ['Are', 'you', 'going', 'to', 'the', 'car', 'or', 'by', 'car?'], ['She', "didn't", 'want', 'to', 'call', 'him', 'by', 'phone.'], ["I'm", 'not', 'here.'], ['Did', 'you', 'catch', 'the', 'telephone?'], ["There's", 'a', 'boy', 'from', 'the', 'door.'], ["Don't", 'be', 'upset.'], ["You're", 'lost.'], ['I', 'expect', 'that', 'he', 'is', 'honest.'], ['Very', 'long', 'fell', 'in', 'Canada', 'on', 'Sundays.'], ["I'll", 'find', 'some', 'time', 'I', 'think', "I'm", 'going.'], ['They', 'loaded', 'the', 'truck.'], ['He', 'has', 'two', 'choices.'], ['He', "doesn't", 'know', 'how', 'to', 'drive.'], ['This', 'is', 'a', 'black', 'eggs.'], ['It', 'has', 'gotten', 'over', 'the', 'year', 'yet?'], ['The', 'lines', 'lines', 'on', 'the', 'map', 'on', 'the', 'pond.'], ['Could', 'you', 'close', 'the', 'door,', 'please.'], ['Several', 'young', 'people', 'are', 'hard', 'to', 'lower', 'people.'], ['Do', 'I', "don't", 'have', 'any', 'word', 'at', 'him?'], ['My', 'father', 'is', 'used', 'to', 'the', 'debt.'], ['What', 'a', 'night!'], ['Tom', 'used', 'to', 'be', 'here', 'a', 'minute.'], ['Your', 'hands', 'needs', 'to', 'be', 'hot.'], ['Have', 'you', 'found', 'a', 'cure?'], ['I', 'want', 'the', 'best', 'of', 'my', 'children', 'to', 'be', 'seen.'], ['They', 'are', 'jealous', 'of', 'their', 'lives', 'by', 'side.'], ['Please', 'open', 'the', 'door', 'behind', 'you.'], ['The', 'train', 'stopped.'], ['I', "don't", 'really', 'know', 'what', 'you', 'mean.'], ['I', 'want', 'you', 'to', 'come', 'this', 'immediately.'], ['Why', 'were', 'you', 'holding', 'his', 'hand?'], ["I'm", 'not', 'like', 'you.'], ['This', 'person', 'is', 'the', 'best', 'I', 'have', 'eaten', 'people.'], ['I', 'just', 'want', 'you', 'to', 'know', "I'm", 'sorry.'], ['Have', 'you', 'ever', 'been', 'betrayed', 'by', 'a', 'friend?'], ['Is', 'there', 'something', 'you', 'want', 'to', 'talk', 'with', 'him?'], ['I', 'appreciate', 'your', 'support.'], ['Reading', 'is', 'on', 'the', 'wrong', 'problem.'], ['This', 'is', 'a', 'poem.'], ['How', 'old', 'were', 'the', 'old', 'car?'], ['I', "can't", 'agree', 'with', 'you.'], ['We', "didn't", 'think', 'we', 'were', 'going', 'to', 'meet', 'us.'], ['Be', 'content.'], ['I', 'know', 'that', 'Tom', 'is', 'a', 'genius.'], ['I', 'hope', "you're", 'not', 'alone.'], ['What', 'did', 'you', 'think', 'of', 'him?'], ["I've", 'been', 'told', 'you', 'everywhere.'], ["You're", 'very', 'wise.'], ['He', 'found', 'out', 'of', 'the', 'movie', 'he', 'saw', 'yesterday.'], ["I'm", 'sorry', 'that', 'I', "couldn't", 'find', 'out', 'so', 'as', 'you', 'as', 'dark.'], ['Tom', 'was', 'that?'], ['Your', 'suggestion', 'is', 'on', 'your', 'way', 'to', 'sign', 'your', 'health', 'of', 'your', 'head.'], ['He', 'speaks', 'English', 'when', 'he', 'is', 'like', 'a', 'child.'], ['Could', 'you', 'stop', 'talking', 'about?'], ['Beware', 'of', 'pickpockets.'], ["I'm", 'thirty', 'years', 'old.'], ['How', 'long', 'did', 'you', 'stay', 'at', 'the', 'car?'], ['What', 'are', 'your', 'weekend', 'and', 'put', 'it', 'on', 'your', 'table.'], ['They', "could've", 'killed', 'you.'], ['What', 'would', 'you', 'do', 'if', 'you', 'had', 'a', 'billion', 'dollars?'], ['I', "don't", 'like', 'this', 'much.'], ['I', "can't", 'stand', 'the', 'sight', 'of', 'blood.'], ['Why', "don't", 'they', 'happen?'], ['I', "don't", 'feel', 'much', 'like', 'going.'], ["That's", 'all', 'I', 'love', 'Tom.'], ['How', 'many', 'books', 'do', 'you', 'put', 'on', 'the', 'table.'], ['Were', 'you', 'busy?'], ['She', 'decided', 'to', 'quit', 'his', 'job.'], ['They', 'washed', "Tom's", 'eyes', 'as', 'Tom.'], ['I', 'pay', 'the', 'phone', 'for', 'the', 'map.'], ['I', 'like', 'this', 'baseball', 'guy.'], ['Tom', 'told', 'Mary', 'why', 'she', 'was', 'late.'], ['I', 'wanted', 'to', 'see', 'what', 'would', 'happen.'], ['I', 'decided', 'to', 'go', 'to', 'the', 'train.'], ['We', 'have', 'to', 'stand', 'to', 'the', 'fridge', 'and', 'have', 'to', 'change', 'the', 'enemy.'], ['I', 'usually', 'eat', 'well', 'as', 'long', 'as', 'I', 'used', 'to', 'eat', 'as', 'long', 'as', 'long', 'as', 'I', 'live.'], ['I', 'want', 'three', 'pairs', 'of', 'socks.'], ['He', 'drinks', 'wearing', 'a', 'lot', 'of', 'young', 'bones.'], ["I'd", 'like', 'to', 'help', 'if', 'I', 'can.'], ['He', 'went', 'to', 'everything', 'I', 'was', 'thinking.'], ['You', 'live', 'too', 'far.'], ['Could', 'you', 'let', 'me', 'know', 'your', 'name?'], ['You', 'remind', 'me', 'of', 'me.'], ['Are', 'you', 'fully', 'recovered?'], ["I've", 'come', 'home', 'from', 'here', 'to', 'Tom.'], ['He', 'is', 'like', 'an', 'teeth.'], ['I', 'returned', 'home', 'in', 'school.'], ['The', 'girls', 'are', 'beautiful.'], ['Humans', 'can', 'achieve', 'whether', 'they', 'would', 'succeed', 'and', 'native', 'speakers.'], ['Tom', 'tried', 'to', 'do', 'the', 'box.'], ['May', 'I', 'borrow', 'your', 'phone?'], ['Can', 'we', 'take', 'this', 'time?'], ["We're", 'here.'], ["Where've", 'you', 'been?'], ['What', 'Tom', 'did', 'was', 'stupid.'], ["We're", 'not', 'at', 'home.'], ["That's", 'a', 'possibility.'], ['I', "don't", 'like', 'my', 'job.'], ['I', "don't", 'know', 'when', 'she', 'got', 'married.'], ['We', 'must', 'wait', 'for', 'ten', 'minutes.'], ['We', 'often', 'hear', 'about', 'politics.'], ['She', 'will', 'be', 'here', 'tonight.'], ['This', 'car', 'is', 'completely', 'interesting.'], ['I', 'was', 'looking', 'for', 'the', 'key.'], ['The', 'investigation', 'he', 'is', 'when', 'he', 'is', 'innocent.'], ['Take', 'it', 'on.'], ['I', 'never', 'let', 'you', 'do', 'this', 'without', 'your', 'help.'], ['Do', 'you', 'drink', 'a', 'cup', 'of', 'tea?'], ['I', "didn't", 'know', 'you', 'were', 'about', 'it.'], ['There', 'is', 'a', 'nice', 'restaurant', 'why', 'he', 'is', 'not', 'a', 'nice', 'cold,', 'but', 'a', 'bad', 'place.'], ['He', 'sat', 'next', 'to', 'her.'], ['I', 'regret', 'that', 'you', 'had', 'paid', 'mail.'], ['Tom', 'died', 'yesterday.'], ['I', 'feel', 'like', 'I', 'can', 'do', 'something', 'I', 'do.'], ['Is', 'it', 'better', 'than', 'it?'], ['Tom', "doesn't", 'need', 'me.'], ['You', 'have', 'a', 'minute.'], ['Is', 'it', 'OK', 'to', 'me?'], ['Let', 'me', 'do', 'it', 'for', 'you.'], ['Do', 'you', 'think', 'Tom', 'is', 'going', 'to', 'stop', 'the', 'top', 'of', 'the', 'mountains?'], ['Did', 'you', 'get', 'two', 'two', 'here?'], ["I'll", 'never', 'be', 'able', 'to', 'escape', 'anymore.'], ['Am', 'I', 'wrong?'], ['I', 'like', 'a', 'little', 'more', 'warmer.'], ["You're", 'not', 'allowed', 'to', 'park', 'here.'], ['Who', 'is', 'it', 'one', 'of', 'an', 'emergency?'], ["You're", 'probably', 'too', 'young', 'to', 'understand', "what's", 'going', 'to', 'be', 'next.'], ['Can', 'you', 'tell', 'me', 'this', 'book,', 'please?'], ['Tom', 'hid', 'the', 'box', 'under', 'the', 'bed.'], ['At', 'last,', 'he', 'got', 'a', 'heavy', 'line', 'on', 'his', 'lack'], ['Japan', 'and', 'family', 'are', 'generally', 'covered', 'with', 'oil.'], ['I', 'must', 'smoke.'], ['Where', 'did', 'you', 'get', 'this', 'information?'], ['I', 'want', 'a', 'sheet', 'for', "Valentine's", 'resources.'], ['I', "didn't", 'see', 'Tom', 'yesterday.'], ['Air', 'is', 'in', 'public', 'and', 'rain.'], ['Are', 'you', 'still', 'interested?'], ['Is', 'this', 'really', 'what', 'you', 'want?'], ['We', 'probably', 'should', 'be', 'going.'], ['We', 'often', 'join', 'our', 'company.'], ["There's", 'a', 'little', 'wine', 'in', 'the', 'rest', 'of', 'the', 'glass.'], ['He', 'played', 'an', 'apple', 'swimming', 'in', 'the', 'world.'], ['Which', 'one', 'was', 'it?'], ["There's", 'a', 'crime', 'in', 'the', 'trunk', 'of', 'the', 'hill.'], ["You're", 'making', 'a', 'big', 'mistake.'], ['I', "can't.", 'anymore.'], ['I', "don't", 'have', 'a', 'lot', 'of', 'steel.'], ["What's", 'wrong', 'with', 'you?'], ["Let's", 'not', 'believe', 'it.'], ['Those', 'girls', 'two', 'children', 'in', 'the', 'same', 'age.'], ['Have', 'you', 'had', 'a', 'burglar', 'broke', 'into', 'the', "neighbor's", 'house?'], ['The', 'children', 'are', 'very', 'fast.'], ['How', 'do', 'you', 'translate', 'this', 'bag?'], ['Christmas', 'is', 'only', 'in', 'three', 'weeks.'], ["They're", 'out', 'of', 'town.'], ['Can', 'I', 'have', 'your', 'phone', 'number?'], ['The', 'audience', 'was', 'sure', 'to', 'have', 'a', 'blast.'], ["Tom's", 'cat', 'has', 'lost', 'our', 'cat', 'missing.'], ["They're", 'stalling.'], ['He', "couldn't", 'come', 'to', 'bed', 'before', 'morning.'], ['I', "can't", 'live', 'alone.'], ['Have', 'you', 'seen', 'my', 'keys?'], ['She', 'cooks', 'for', 'him', 'every', 'day.'], ['That', 'would', 'just', 'like', 'a', 'waste', 'of', 'time.'], ['I', 'thought', 'you', 'were', 'older', 'than', 'me.'], ['Tom', "doesn't", 'even', 'know', 'my', 'name.'], ['We', 'went', 'to', 'bed', 'again.'], ["I'd", 'like', 'to', 'hold', 'your', 'hand.'], ['Tom', 'says', 'that', 'he', 'will', 'be', 'a', 'little', 'late.'], ['How', 'do', 'you', 'spell', 'your', 'family', 'name?'], ['What', 'a', 'beautiful', 'girl!'], ['I', 'put', 'on', 'an', 'hour', 'on', 'the', 'clock.'], ["I've", 'had', 'enough.'], ['I', 'hope', 'that', 'it', 'will', 'rain', 'tomorrow.'], ['Tom', "isn't", 'a', 'big', 'one.'], ['Can', 'you', 'remember', 'the', 'first', 'time', 'we', 'first', 'met?'], ['Did', 'you', 'see', 'it?'], ['Will', 'you', 'come', 'next', 'to', 'next', 'next', 'before?'], ['I', 'am', 'at', 'home', 'every', 'night.'], ['He', 'was', 'walking', 'on', 'the', 'head', 'on', 'the', 'head', 'of', 'breath.'], ["We're", 'already', 'late.'], ['Her', 'mother', 'speaks', 'to', 'him', 'for', 'his', 'speech.'], ['I', 'saw', 'you', 'walking', 'in', 'the', 'park', 'yesterday.'], ['She', 'married', 'a', 'sailor.'], ['Ask', 'me', 'some', 'research.'], ['This', 'clock', 'is', 'almost', 'over.'], ["It's", 'a', 'sentence.'], ['Take', 'your', 'hands', 'on', 'your', 'pockets.'], ['Why', "don't", 'you', 'stay', 'here?'], ['Tom', 'hid', 'under', 'the', 'table.'], ["What's", 'wrong', 'with', 'me?'], ['I', 'have', 'a', 'plan.'], ['I', 'noticed', 'the', 'difference.'], ['The', 'meeting', 'was', 'postponed', 'due', 'to', 'meet', 'the', 'rain.'], ['I', "can't", 'imagine', 'another', 'solution.'], ['Are', 'you', 'alone', 'alone?'], ["We're", 'ruthless.'], ['That', "won't", 'be', 'easy.'], ["Let's", 'find', 'a', 'place', 'to', 'hide.'], ['Thank', 'you', 'for', 'fun.'], ['Is', 'there', 'a', 'big', 'word', 'in', 'your', 'life?'], ['When', 'will', 'the', 'plane', 'scheduled', 'to', 'work?'], ['The', 'weather', 'was', 'weather!'], ["I'm", 'sure', 'of', 'that.'], ['I', "don't", 'know', "what's", 'in', 'this', 'box.'], ['What', 'is', 'your', 'school', 'money?'], ['I', 'just', 'know', 'I', 'just', 'want', 'to', 'be', 'married', 'to', 'you.'], ["That's", 'the', 'one', 'who', 'trained', 'you.'], ['These', 'are', 'all', 'important.'], ["It's", 'totally', 'nonsense.', 'but', 'nonsense.'], ['Neither', 'of', 'us', 'are', 'a', 'coward.'], ['I', 'go', 'to', 'the', 'store', 'while', 'I', 'am', 'going', 'to', 'the', 'day', 'every', 'day.'], ['I', 'have', 'no', 'friends.'], ['We', 'have', 'a', 'lot', 'to', 'do.'], ['No', 'one', 'believed', 'the', 'war.'], ['Did', 'you', 'lock', 'the', 'room?'], ['I', 'can', 'lend', 'you', 'a', 'long', 'time.'], ["There's", 'no', 'solution.'], ["They're", 'nice.'], ["I'm", 'taking', 'my', 'shower.'], ['Can', 'you', 'tell', 'us', 'what', 'the', 'police', 'are?'], ['Nothing', 'has', 'to', 'be', 'changed.'], ['Can', 'you', 'saying', 'a', 'difference', 'between', 'the', 'difference', 'and', 'a', 'telescope?'], ["Aren't", 'you', 'thirsty?'], ['He', 'is', 'no', 'use', 'trying', 'to', 'try', 'on.'], ['Did', 'I', 'embarrass', 'you?'], ['How', 'much', 'have', 'these', 'these', 'stuff?'], ['Who', 'will', 'do', 'it?'], ['Do', 'you', 'still', 'believe', 'my', 'brother', 'is', 'still', 'he?'], ['We', 'need', 'to', 'listen', 'to', 'your', 'advice.'], ['Clean', 'your', 'right', 'week.'], ['He', 'is', 'watching', 'TV', 'every', 'day.'], ['I', 'tried', 'to', 'be', 'your', 'friend.'], ['She', 'used', 'to', 'smoke,'], ['Nobody', 'wants', 'to', 'look', 'like', 'a', 'child.'], ["I'm", 'going', 'to', 'be', 'soon.'], ["Wasn't", 'it', 'to', 'me', 'in', 'the', 'future.'], ["I'm", 'not', 'so', 'sure', 'of', 'that.'], ['I', "don't", 'want', 'to', 'fight', 'with', 'you.'], ["I'm", 'sorry,', 'I', "didn't", 'recognize', 'you.'], ["We're", 'just', 'lucky.'], ["They're", 'bad', 'news.'], ['You', "won't", 'be', 'young', 'again.'], ['Did', 'you', 'know', 'this', 'was', 'coming', 'from?'], ['I', 'met', 'an', 'old', 'friend', 'at', 'Osaka', 'by', 'Tokyo.'], ['I', 'want', 'you', 'to', 'talk', 'with', 'my', 'life.'], ['Does', 'Tom', 'buy', 'it?'], ['I', "don't", 'fear', 'to', 'fear', 'people.'], ['I', 'forgot', 'to', 'tell', 'you', 'who', 'you', 'want', 'to', 'go', 'to', 'the', 'station.'], ['I', 'was', 'shaken.'], ['I', 'have', 'an', 'appointment', 'to', 'catch', 'a', 'diet.'], ['Let', 'their', 'dirty', 'rights.'], ["Don't", 'talk', 'to', 'know', 'who', 'she', 'is.'], ["I'm", 'not', 'doing', 'this', 'for', 'the', 'money.'], ['I', 'wanted', 'to', 'make', 'sure', 'you', 'were', 'OK.'], ['You', 'have', 'no', 'luck.'], ['She', 'demanded', 'to', 'see', 'the', 'company.'], ['I', "can't", 'swim.'], ["You've", 'always', 'been', 'good', 'at', 'math.'], ['It', 'was', 'a', 'student', 'on', 'the', 'meal'], ['I', 'guess', 'I', 'was', 'wrong.'], ['How', 'much', 'do', 'you', 'have?'], ["There's", 'been', 'a', 'problem', 'with', 'the', 'next', 'day.'], ['I', 'want', 'to', 'buy', 'a', 'new', 'bicycle.'], ['I', 'want', 'the', 'truth', 'to', 'tell', 'the', 'truth.'], ['Tell', 'me', 'why', 'you', "don't", 'want', 'me.'], ['I', 'have', 'a', 'good', 'salary.'], ['We', 'had', 'a', 'stroke', 'idea', 'of', 'killing', 'success.'], ['Did', 'you', 'have', 'dinner', 'with', 'me', 'about', 'this', 'river?'], ['He', 'was', 'very', 'cold,', "isn't", 'it?'], ['His', 'story', 'was', 'too', 'big', 'to', 'help', 'me', 'down.'], ["That's", 'my', 'house.'], ['I', 'am', 'proud', 'of', 'you', 'to', 'help', 'you.'], ['No', 'one', 'happened.'], ['This', 'time,', "you've", 'gone', 'too', 'far.'], ["I'm", 'trying', 'to', 'make', 'sure', 'you', 'do', 'anything', 'for', 'me.'], ['She', 'is', 'guilty', 'of', 'stealing.'], ['I', 'have', 'friends', 'in', 'Australia.'], ['I', 'knew', 'there', 'was', 'wrong', 'with', 'it.'], ['This', 'dog', "doesn't", 'smoke.'], ['Lake', 'can', 'be', 'invaluable', 'when', 'the', 'plane', 'is', 'to', 'be', 'late.'], ['I', 'stopped', 'the', 'car.'], ["I'd", 'like', 'to', 'ask', 'you', 'a', 'few', 'questions.'], ["Don't", 'forget', 'to', 'go', 'out', 'of', 'the', 'question.'], ['When', 'your', 'body', 'will', 'be', 'an', 'hour', 'with', 'you.'], ['Could', 'I', 'have', 'my', 'ticket', 'for', 'a', 'job?'], ['Why', "don't", 'you', 'quit?'], ['I', 'beg', 'you.'], ['The', 'United', 'States', 'was', 'wearing', 'an', 'American', 'gas', 'and', 'New', 'York.'], ['Why', "don't", 'you', 'Tom?'], ['I', 'ache', 'everywhere.'], ['All', 'you', 'have', 'to', 'do', 'this', 'book', 'to', 'do', 'with', 'this', 'book.'], ['The', 'young', 'teacher', 'and', 'I', 'live', 'in', 'his', 'face.'], ["I've", 'never', 'seen', 'that', 'whale', 'fat.'], ['Could', 'he', 'tell', 'us', 'what', 'happened', 'to', 'us.'], ['He', 'earns', 'his', 'life', 'to', 'English.'], ['You', "don't", 'have', 'standards.'], ['You', 'have', 'to', 'be', 'prepared.'], ['I', "don't", 'really', 'have', 'a', 'gun.'], ['This', 'made', 'me', 'very', 'sad.'], ['I', 'love', 'you', 'like', 'a', 'child.'], ['English', 'is', 'a', 'lot', 'of', 'English', 'in', 'Kyoto.'], ["I'm", 'used', 'to', 'this', 'machine', 'use', 'this', 'game.'], ['You', 'may', 'come', 'in', 'now.'], ['Tell', 'Tom', 'that', 'he', 'is', 'doing', 'who', 'he', 'is', 'to', 'do', 'that.'], ['I', "don't", 'like', 'the', 'guitar,', 'but', 'I', 'get', 'it', 'a', 'lot.'], ['I', 'know', 'that', 'I', 'can', 'hardly', 'offer', 'that', 'he', "can't.", 'but', 'I', "can't."], ['I', 'like', 'reading', 'novels.'], ['I', 'never', 'wanted', 'that', 'to', 'buy', 'such', 'a', 'nightmare.'], ['The', 'dog', 'threw', 'a', 'stone', 'on', 'the', 'dog.'], ['He', 'wants', 'to', 'go.'], ['What', 'he', 'did', 'he', 'think', 'there', 'is', 'two', 'years', 'ago.'], ["That's", 'great!'], ["there's", 'a', 'problem.'], ['I', 'suddenly', 'have', 'everything.'], ['I', "don't", 'understand', 'why', 'Tom', 'does', 'that.'], ['Take', 'it', 'on.'], ["I'm", 'glad', 'to', 'see', 'that', 'you', 'happy.'], ['This', 'is', 'the', 'book', 'I', 'ever', 'read', 'the', 'book?'], ["I'm", 'looking', 'for', 'your', 'voice.'], ['Tell', 'Tom', 'where', 'he', "doesn't", 'know', 'where', 'he', 'is', 'a', 'car.'], ['May', 'I', 'keep', 'you', 'somewhere?'], ['They', 'were', 'too', 'tired', 'to', 'come.'], ['It', "doesn't", 'concern', 'me.'], ["We're", 'still', 'married.'], ['Were', 'you', 'excited?'], ["You're", 'being', 'prepared.'], ['How', 'far', 'are', 'you', 'prepared', 'to', 'go?'], ['She', 'has', 'never', 'met', 'him', 'after', 'that.'], ['Tom', 'said', 'that', 'he', "didn't", 'want', 'to', 'attend', "Mary's", 'party.'], ['Our', 'baby', 'is', 'not', 'at', 'home.'], ['Who', 'was', 'in', 'charge?'], ['Sorry,', 'I', "didn't", 'mean', 'to', 'interrupt.'], ['Who', 'says', 'that', "it's", 'not', 'that', 'odd?'], ['She', 'advised', 'him', 'when', 'he', 'found', 'out', 'of', 'the', 'air.'], ["They're", 'in', 'trouble.'], ['Could', 'you', 'tell', 'us', "what's", 'going', 'on?'], ['We', "aren't", 'planning', 'to', 'Boston.'], ['We', 'will', 'survive.'], ["It's", 'already', 'eleven.'], ["You're", 'kind', 'of', 'cute', 'when', "you're", 'mad.'], ['Today', 'is', 'Monday.'], ['Tom', 'waited', 'for', 'Mary', 'for', 'three', 'hours.'], ['I', 'am', 'beginning', 'to', 'lose', 'with', 'Tom.'], ['We', 'elected', 'him', 'mayor.'], ['Try', 'on', 'that.'], ['We', 'will', 'survive.'], ['Do', 'you', 'speak', 'French?'], ['She', "didn't", 'want', 'him', 'to', 'play', 'poker.'], ['I', 'want', 'to', 'cheer', 'you', 'up.'], ['I', 'want', 'my', 'evidence.'], ['Make', 'it', 'up.'], ["We're", 'involved.'], ["That's", 'all', 'I', 'could.'], ['I', 'know', 'Tom', 'is', 'afraid', 'of', 'me.'], ['She', 'is', 'on', 'me.'], ['I', 'know', 'that', 'Tom', 'is', 'a', 'liar.'], ['I', 'thought', "you'd", 'come.'], ['Everything', 'is', 'fine.'], ['I', "should've", 'thought', 'about', 'it', 'before.'], ["I'll", 'leave', 'it', 'up', 'to', 'you.'], ['Was', 'that', 'necessary?'], ['My', 'cat', 'is', 'missing.'], ['I', 'have', 'waited', 'for', 'someone', 'to', 'help', 'you.'], ['Your', 'success', 'is', 'as', 'good', 'as', 'good', 'as', 'you', 'think.'], ['The', 'book', 'is', 'on', 'the', 'table.'], ['He', 'used', 'to', 'work', 'away', 'with', 'a', 'fast', 'time.'], ["I'd", 'say', 'you', 'did', 'well.'], ['Please', 'do', 'this', 'one', 'yet.'], ['Was', 'it', 'a', 'nice', "you'd", 'told', 'me', 'to', 'lie', 'on.'], ['I', 'waited', 'for', 'a', 'week', 'for', 'an', 'hour.'], ["She's", 'not', 'without', 'any', 'money.'], ['She', "didn't", 'want', 'me', 'to', 'read', 'the', 'letter.'], ['He', 'is', 'a', 'poet.'], ['I', 'believe', 'you.'], ['I', 'figured', 'it', 'necessary', 'to', 'try', 'to', 'find', 'out.'], ['We', 'need', 'someone.'], ['What', 'kind', 'of', 'problems', 'is', 'it', 'that', 'kind', 'of', 'stuff?'], ['Do', 'you', 'want', 'another', 'piece', 'of', 'pie?'], ['I', 'hear', 'people', 'filled', 'with', 'their', 'people.'], ['I', 'told', 'Tom', 'why', 'Mary', 'had', 'told', 'me.'], ['Is', 'it', 'a', 'Saturday?'], ['Why', 'are', 'you', 'upset?'], ['I', 'bought', 'him', 'a', 'dog.'], ['Which', 'one', 'is', 'it?'], ['Our', 'company', 'is', 'scheduled', 'to', 'what', 'is', 'going', 'to', 'discuss.'], ['Tom', 'is', 'packing.'], ['I', "don't", 'know', 'your', 'family.'], ['I', 'am', 'sorry,', 'but', 'I', "don't", 'speak', 'French.'], ['At', 'any', 'time', 'I', 'go', 'straight', 'and', 'tired', 'of', 'her', 'complaints.'], ['Tom', 'looks', 'really', 'upset.'], ['It', 'appears', 'to', 'take', 'care', 'of', 'this', 'lot.'], ['Where', 'is', 'the', 'universe?'], ['It', 'was', 'a', 'pretty', 'good', 'advice.'], ['We', 'love', 'a', 'fruit.'], ['How', 'many', 'people', 'were', 'talking', 'with', 'each', 'other.'], ['Eat', 'your', 'teeth.'], ['I', 'was', 'as', 'surprised', 'as', 'you.'], ['She', 'told', 'me', 'that', 'she', 'loved', 'me.'], ['There', 'are', 'a', 'lot', 'of', 'options.'], ["You'll", 'soon', 'be', 'at', 'home.'], ["You're", 'preaching', 'to', 'the', 'choir.'], ['They', "couldn't", 'go', 'there', 'quickly.'], ['"May', 'I', 'go', 'to', 'the', 'dance', 'with', 'you."', '"Really?'], ['I', 'love', 'you', 'all', 'my', 'heart.'], ['What', 'is', 'the', 'idea', 'of', 'the', 'difference', 'between', 'air', 'and', 'powerful.'], ['I', "can't", 'drive', 'a', 'car.'], ['I', 'heard', 'French', 'song', 'in', 'French.'], ['They', 'will', 'be', 'safe', 'with', 'her.'], ['I', 'got', 'completely', 'confident.'], ['It', "doesn't", 'look', 'fair.'], ['I', 'have', 'to', 'be', 'here', 'in', 'your', 'time.'], ['Hand', 'down', 'this', 'weekend.'], ['I', 'wish', 'I', 'had', 'a', 'gift', 'for', 'Tom.'], ["You'll", 'have', 'a', 'rough', 'time.'], ['I', 'just', 'who', 'you', 'were', 'serious.'], ["Don't", 'worry', 'about', 'anything.'], ['This', 'is', 'the', 'perfect', 'location.'], ['I', 'told', 'you', "I'm", 'not', 'drunk.'], ['I', 'thought', 'I', 'had', 'to', 'read', 'the', 'exact', 'test.'], ['How', 'much', 'is', 'the', 'idea?'], ['She', 'was', 'surprised', 'when', 'he', 'heard', 'the', 'news.'], ['You', 'came', 'at', 'just', 'the', 'right', 'time.'], ['Do', 'you', 'want', 'some', 'more', 'tea?'], ['What', 'are', 'some', 'foods', 'you', 'usually', 'eat', 'with', 'a', 'spoon?'], ['It', "wasn't", 'a', 'matter', 'of', 'thought.'], ["We're", 'late.'], ['Do', 'you', 'enjoy', 'talking?'], ['We', "don't", 'have', 'to', 'do', 'that', 'every', 'day.'], ['Tom', "couldn't", 'give', 'him', 'a', 'lie.'], ["It's", 'been', 'ten', 'years', 'since', 'my', 'father', 'died.'], ['Tom', "isn't", 'really', 'a', 'teacher.'], ['Your', 'wristwatch', 'is', 'on', 'the', 'table.'], ["Someone's", 'knocked', 'on', 'the', 'door.'], ['I', "didn't", 'think', 'you', 'could', 'do', 'that.'], ['I', 'had', 'no', 'choice', 'but', 'to', 'take', 'the', 'word.'], ['Wait', 'until', 'I', 'wait', 'for', 'me', 'to', 'drink.'], ['I', "don't", 'know', 'if', 'I', 'want', 'that.'], ['Where', 'is', 'the', 'American', 'embassy?'], ["That's", 'very', 'kind', 'of', 'you.'], ['I', 'think', 'you', 'know', 'what', "I'm", 'talking', 'about.'], ["You're", 'very', 'understanding.'], ['I', 'came', 'here', 'when', 'I', 'was', 'four.'], ["I'm", 'not', 'going', 'to', 'going', 'on', 'the', 'details.'], ['I', 'feel', 'like', "I've", 'already', 'like', 'you.'], ['She', 'has', 'a', 'beautiful', 'tan.'], ["I'd", 'like', 'to', 'catch', 'it', 'over.'], ['I', 'think', 'we', 'should', 'go.'], ['He', 'decided', 'not', 'to', 'leave.'], ["You're", 'contradicting', 'yourself.'], ['I', 'am', 'bored', 'when', 'I', 'get', 'up.'], ['Please', 'give', 'me', 'a', 'letter', 'tomorrow.'], ['I', 'was', 'born', 'and', 'I', 'was', 'born', 'in', 'Tokyo.'], ['I', "didn't", 'know', 'that', 'she', 'was', 'married.'], ['I', 'want', 'to', 'become', 'a', 'doctor.'], ["I'm", 'going', 'on.'], ['Do', 'you', 'enjoy', 'New', 'York', 'please?'], ['Tom', 'has', 'a', 'secret', 'secret.'], ['How', 'do', 'I', 'eat', 'that?'], ['May', 'I', 'share', 'your', 'opinion?'], ['Our', 'garden', 'was', 'full', 'of', 'high', 'school.'], ['Is', 'this', 'something', 'important?'], ['Why', 'are', 'you', 'trying', 'to', 'call', 'me?'], ["I'd", 'like', 'to', 'ask', 'you', 'to', 'dinner.'], ['My', 'life', 'is', 'now.'], ["You're", 'the', 'only', 'one', 'I', 'can', 'help', 'me.'], ["Who's", 'at', 'home?'], ["That's", 'not', 'good.'], ['This', 'is', 'my', 'jacket', 'in', 'my', 'pocket.'], ['The', 'probably', 'will', 'be', 'careful', 'in', 'the', 'future', 'closely', 'in', 'the', 'future.'], ['I', "didn't", 'want', 'to', 'live', 'in', 'my', 'parents.'], ['The', 'problem', 'is', 'that', "you're", 'not', 'Canadians.'], ['I', 'am', 'not', 'an', 'alcoholic.'], ['I', 'often', 'play', 'with', 'him', 'in', 'this', 'hour.'], ['What', 'do', 'you', 'want?'], ['What', 'do', 'you', 'want', 'to', 'do', 'tomorrow?'], ['Tom', "couldn't", 'attend', 'the', 'police', 'that', 'we', "couldn't", 'attend', 'the', 'beach.'], ['We', 'have', 'connections'], ['Do', 'you', 'want', 'the', 'details', 'now?'], ["I'd", 'like', 'you', 'to', 'do', 'your', 'best.'], ["There's", 'a', 'good', 'chance', 'that', 'he', 'will', 'come.'], ['I', "didn't", 'sleep', 'quite', 'enough.'], ['I', 'need', 'a', 'handkerchief.'], ['This', 'makes', 'seems', 'simple', 'is', 'going', 'on.'], ['I', 'snore.'], ['This', 'dictionary', 'is', 'mine.'], ['He', 'drew', 'a', 'line', 'with', 'his', 'pencil.'], ['Tom', 'is', 'three', 'and', 'dangerous.'], ['Everything', 'he', 'reached', 'the', 'weather.'], ['May', 'I', 'have', 'my', 'trip?'], ['You', "can't", 'be', 'serious.'], ['Tom', "didn't", 'have', 'done', 'that.'], ['I', 'think', 'we', 'still', 'have', 'plenty', 'of', 'time.'], ['This', 'is', 'a', 'good', 'time', 'for', 'us', 'to', 'get', 'a', 'good', 'gift.'], ["I'm", 'not', 'going', 'to', 'a', 'couple', 'of', 'animals', 'or', 'other.'], ["There's", 'something', 'in', 'the', 'right', 'eye.'], ['I', 'love', 'apples.'], ['I', "shouldn't", 'have', 'to', 'know', 'that.'], ['You', 'said', 'you', 'were', 'here', 'yesterday.'], ['It', 'was', 'every', 'day', 'in', 'this', 'one.'], ['He', 'feels', 'hurt.'], ["She's", 'been', 'ill', 'since', 'last', 'Wednesday.'], ['You', "don't", 'have', 'to', 'come', 'this', 'room.'], ['What', 'is', 'the', 'world', 'in', 'the', 'world?'], ['You', 'should', 'keep', 'breakfast', 'every', 'day.'], ['Please', 'let', 'me', 'down.'], ["It's", 'worse', 'than', 'I', 'thought.'], ['I', 'felt', 'like', 'an', 'idiot.'], ['It', 'may', 'be', 'the', 'last', 'time.'], ['Could', 'I', 'talk', 'to', 'you', 'about', 'all', 'of', 'the', 'world?'], ['Let', 'us', 'do', 'the', 'job.'], ['Tom', 'is', 'not', 'deaf.'], ['I', 'went', 'to', 'school.'], ['I', 'made', 'myself', 'myself.'], ['Do', 'you', 'drink', 'wine?'], ['Would', 'you', 'know', 'that?'], ['I', 'live', 'in', 'town.'], ['How', 'do', 'I', 'thank', 'you?'], ["You'll", 'be', 'the', 'first', 'to', 'know.'], ['That', 'feels', 'like', 'a', 'lot.'], ['Our', 'school', 'was', 'going', 'to', 'go', 'to', 'the', 'movies', 'on', 'us', 'alone.'], ['I', "don't", 'have', 'a', 'walk.'], ['Did', 'you', 'find', 'your', 'purse?'], ['She', 'avoided', 'answering', 'my', 'questions.'], ['Why', 'do', 'people', 'hibernate?'], ['You', 'enjoyed', 'your', 'hair', 'that', 'it', 'is', 'very', 'busy', 'so', 'it', 'is.'], ['I', 'know', "you're", 'not', 'serious.'], ['You', 'need', 'to', 'be', 'at', 'least', 'more.'], ['Tom', 'said', 'he', 'was', 'going', 'to', 'play', 'tennis', 'with', 'us.'], ['Tom', 'said', 'that', 'he', 'could', 'OK.'], ['She', 'is', 'a', 'dangerous', 'day.'], ['They', 'say', 'that', "Tom's", 'taste', 'is', 'healthy.'], ['When', 'did', 'you', 'come', 'to', 'Japan?'], ['I', "didn't", 'realize', 'you', 'were', 'awake.'], ['Most', 'of', 'them', 'are', 'dead.'], ['This', 'is', 'a', 'great', 'point.'], ['Have', 'you', 'played', 'tennis', 'from', 'the', 'game?'], ['I', 'was', 'going', 'to', 'visit', 'Tokyo.'], ['The', 'candle', 'was', 'almost', 'because', 'my', 'day.'], ['I', "didn't", 'drink.'], ['I', 'promise', 'he', 'thought', 'that', 'I', "wouldn't", 'help', 'him.'], ['I', 'have', 'an', 'idea', 'today.'], ['I', "didn't", 'have', 'to', 'call', 'you', 'yesterday.'], ['I', 'think', "it's", 'right.'], ['I', 'was', 'born', 'in', 'Osaka.'], ['I', 'thought', 'you', 'might', 'like', 'my', 'own', 'picture.'], ['We', 'tried', 'to', 'cheer', 'him', 'up.'], ['He', 'can', 'easily', 'catch', 'the', 'trees.'], ['They', 'say', 'that', 'you', 'were', 'able', 'to', 'change', 'his', 'first', 'try.'], ["You're", 'very', 'understanding.'], ['Did', 'anyone', 'hear', 'you?'], ['Your', 'phone', 'was', 'a', 'promotion.'], ['What', 'is', 'it', 'you', 'really', 'here?'], ['You', 'may', 'bring', 'whoever', 'wants', 'you.'], ['As', 'soon', 'as', 'I', 'told', 'you', "I'll", 'come.'], ['I', "haven't", 'met', 'my', 'mother', 'in', 'my', 'life.'], ["Tom's", 'distracted.'], ["Don't", 'do', 'that.'], ["I'm", 'sure', 'you', "won't", 'disappoint', 'me.'], ['Let', 'me', 'carry', 'your', 'suitcase.'], ['Lie', 'up', 'with', 'the', 'effort', 'to', 'get', 'up', 'your', 'head', 'on.'], ['Keep', 'the', 'children', 'far', 'from', 'the', 'pond.'], ['Why', 'do', 'you', 'need', 'French?'], ['I', 'would', 'like', 'to', 'go', 'to', 'Japan.'], ['I', 'never', 'really', 'wanted', 'to', 'do', 'that.'], ['I', 'left', 'you', 'a', 'letter', 'at', 'the', 'letter.'], ["You're", 'very', 'understanding.'], ['Take', 'the', 'stairs.'], ['Tom', 'asked', 'Mary', 'why', 'he', 'was', 'so', 'sad.'], ['Are', 'you', 'happy', 'with', 'that?'], ['No', 'matter', 'how', 'he', 'could', 'write', 'his', 'name.'], ['Could', 'you', 'give', 'me', 'a', 'phone', 'phone', 'number?'], ['Your', 'opinion', 'is', 'worthless.'], ['I', "don't", 'need', 'to', 'talk', 'to.'], ['We', "don't", 'expect', 'Tom', 'to', 'help', 'Tom', 'money.'], ['This', 'takes', 'rain', 'hours.'], ['I', 'gave', 'you', 'a', 'little', 'giving', 'but', 'not', 'ask', 'you.'], ['I', 'like', 'red', 'wine', 'better', 'than', 'white.'], ['He', 'tried', 'to', 'keep', 'out', 'of', 'all', 'his', 'stuff', 'in', 'the', 'box.'], ['Did', 'the', 'dishwasher', 'suit', 'you?'], ["I'll", 'call', 'you', 'after', 'midnight.'], ['I', 'was', 'so', 'frightened.'], ['I', 'knew', 'it', 'would', 'be', 'with', 'you.'], ['He', 'never', 'told', 'me', 'that', 'I', 'could', 'be', 'just', 'about', 'it.'], ['I', 'just', 'did', 'it', 'on', 'the', 'phone.'], ['I', 'wish', 'you', 'told', 'me', 'the', 'truth.'], ['I', 'won', 'the', 'bill.'], ['When', 'did', 'Tom', 'say', 'that?'], ['I', 'know', 'what', "it's", 'like', 'to', 'be', 'heartbroken.'], ['double', 'is', 'an', 'exciting', 'expression.'], ['Guess', 'who', 'happened', 'to', 'me', 'yesterday.'], ['Maybe', 'you', 'can', 'do', 'it.'], ['I', 'need', 'to', 'talk', 'to', 'you.'], ['This', 'coffee', 'tastes', 'good.'], ['I', 'suggest', 'that', 'little', 'way', 'to', 'sleep.'], ['You', 'need', 'to', 'warn', 'me.'], ['Are', 'you', 'going', 'to', 'leave?'], ['Have', 'you', 'ever', 'eaten', 'at', 'this', 'restaurant?'], ['Everyone', 'was', 'happy.'], ['Tom', "couldn't", 'stop', 'crying.'], ['Tom', "didn't", 'want', 'to', 'call', 'the', 'doctor.'], ['I', "can't", 'believe', 'your', 'mom', 'did', 'you', 'get', 'the', 'difference.'], ['I', "don't", 'believe', 'it.'], ['Can', 'you', 'read', "what's", 'written', 'on', 'the', 'blackboard?'], ['She', 'intended', 'to', 'become', 'an', 'actress.'], ['Can', 'you', 'write', 'it', 'a', 'letter', 'in', 'English?'], ['He', 'is', 'at', 'the', 'top', 'of', 'criticism.'], ['We', 'almost', 'almost', 'starved.'], ['How', 'often', 'do', 'I', 'ever', 'see?'], ['He', 'asked', 'to', 'meet', 'his', 'gift.'], ['My', 'daughter', 'went', 'to', 'school.'], ['Will', 'you', 'go?'], ['It', 'is', 'said', 'to', 'be', 'here.'], ['The', 'work', 'is', 'almost', 'done.'], ['Is', 'there', 'something', 'you', 'want', 'to', 'tell', 'me?'], ['Excuse', 'me,', 'could', 'you', 'have', 'a', 'small', 'beer?'], ['We', 'ran', 'into', 'the', 'winter.'], ['I', 'have', 'two', 'questions', 'for', 'you.'], ['I', 'need', 'someone', 'to', 'help', 'me.'], ['A', 'young', 'man', 'would', 'be', 'able', 'to', 'help', 'us', 'when', 'he', 'would', 'buy', 'him.'], ['You', 'are', 'an', 'old', 'woman.'], ['Something', "weird's", 'from', 'something', 'nothing.'], ['I', 'slept', 'not', 'slept', 'enough.'], ["Don't", 'we', 'have', 'anything', 'else', 'to', 'do?'], ['I', "should've", 'talked', 'to', 'you', 'about', 'it.'], ['He', 'is', 'a', 'lawyer.'], ['This', 'is', 'not', 'a', 'disaster.'], ['I', 'wanted', 'you', 'to', 'give', 'a', 'little', 'more', 'harm.'], ['I', 'think', 'Tom', 'is', 'sick.'], ['The', 'fact', 'was', 'not', 'in', 'my', 'intention.'], ['Is', 'Tom', 'wearing', 'Tom', 'black?'], ['I', 'forgot', 'to', 'buy', 'a', 'birthday', 'card.'], ['He', 'is', 'a', 'famous', 'artist.'], ['A', 'number', 'of', 'people', 'used', 'to', 'drink', 'here.'], ['How', 'much', 'is', 'the', 'entrance', 'person?'], ['I', 'made', 'a', 'big', 'ring.'], [], ['They', 'kept', 'their', 'secret.'], ["That's", 'totally', 'unfair.'], ["You're", 'probably', 'already', 'responsible', 'for', 'our', 'age.'], ["I've", 'never', 'had', 'a', 'friend', 'before.'], ["You're", 'not', 'permitted', 'to', 'bring', 'dogs', 'in', 'this', 'building.'], ["We'll", 'continue', 'to', 'know', 'him', 'when', 'he', 'comes.'], ['It', 'was', 'a', 'nice', 'woman', 'of', 'date.'], ['I', 'was', 'advised', 'when', 'I', 'was', 'going', 'to', 'swim', 'child.'], ['If', 'you', "don't", 'want', 'to', 'go,', 'you', "don't", 'have', 'to.'], ['They', 'all', 'understand.'], ['Hand', 'in', 'your', 'shoes.'], ['Tom', "didn't", 'promise', 'me', 'anything.'], ['I', 'think', 'we', 'need', 'more', 'ice.'], ["It's", 'never', 'too', 'late', 'to', 'learn.'], ["I'm", 'going', 'to', 'watch', 'TV', 'tonight.'], ["She's", 'in', 'the', 'kitchen.'], ['Tom', 'is', 'going', 'to', 'come', 'back', 'next', 'month.'], ['How', 'are', 'you', 'connected?'], ['I', "don't", 'want', 'to', 'know', "what's", 'going', 'to', 'happen', 'to', 'you.'], ['He', 'made', 'up', 'his', 'quickly.'], ['Are', 'there', 'any', 'seats', 'yet?'], ["I'm", 'not', 'sure', 'I', 'can', 'trust', 'you.'], ['He', "didn't", 'change', 'his', 'hand.'], ['This', 'town', 'is', 'not', 'a', 'lot', 'of', 'life.'], ["What's", 'worrying', 'you?'], ['Tom', 'seemed', 'to', 'be', 'a', 'farmer.'], ['She', 'is', 'wrong.'], ['I', "don't", 'know', 'how', 'to', 'play', 'soccer.'], ['I', 'want', 'to', 'be', 'certain', 'you', 'are', 'who', 'you', 'say', 'you', 'are.'], ['Is', 'Tom', 'the', 'fastest', 'or', 'so?'], ['The', 'cat', 'is', 'in', 'the', 'mountains.'], ['I', "can't", 'sleep', 'when', "I'm", 'too', 'fast.'], ["That's", 'not', 'your', 'desk.'], ["Don't", 'let', 'them', 'kill', 'you.'], ['Thanks', 'for', 'the', 'hint.'], ['Her', 'voice', 'is', 'very', 'good', 'at', 'me.'], ['It', "can't", 'fall', 'to', 'the', 'park', 'with', 'the', 'rain.'], ['Why', 'do', 'you', 'want', 'it?'], ['Tom', 'is', 'alone', 'at', 'home.'], ['Stir', 'the', 'bird.'], ['Call', 'me', 'a', 'tomorrow.'], ['I', 'could', 'kiss', 'you.'], ['I', "don't", 'care', 'as', 'much', 'as', 'you', 'are', 'happy.'], ["We're", 'going', 'to', 'climb', 'this', 'mountain.'], ['It', 'was', 'unlocked.'], ['She', 'listens', 'to', 'him.'], ['I', 'did', 'a', 'lot', 'of', 'crime', 'from', 'the', 'team.'], ['The', 'students', 'were', 'cool.'], ['Hand', 'in', 'your', 'papers.'], ['You', 'have', 'my', 'word.'], ['Money', "isn't", 'the', 'best', 'thing', 'that', 'is', 'wrong.'], ["I'd", 'say', 'you', 'did', 'well.'], ['We', 'gave', 'the', 'apples', 'as', 'a', 'distance,', 'pie.'], ['Did', 'you', 'teach', 'me?'], ['We', 'have', 'only', 'two', 'weeks', 'left.'], ['I', 'apologize', 'if', 'I', 'offended', 'you.'], ['It', 'was', 'amazing.'], ['Who', 'do', 'you', 'think', 'of', 'the', 'most', 'better', 'name?'], ['Tom', 'has', 'two', 'daughters,', 'one', 'of', 'Boston.'], ['She', 'visited', 'him', 'on', 'October', '20th.'], ['He', 'was', 'invited.'], ['You', "can't", 'do', 'it', 'a', 'little', 'for', 'him', 'to', 'eat', 'on', 'Sundays.'], ['Did', 'you', 'hear', 'that?'], ['Is', 'Tom', 'supposed', 'to', 'do', 'that?'], ["It's", 'time', 'for', 'me', 'to', 'take', 'a', 'holiday.'], ["You'll", 'be', 'safe', 'here.'], ['This', 'tastes', 'wonderful.'], ['I', "don't", 'trust', 'people', 'who', 'are', 'serious.'], ['I', 'only', 'did', 'it', 'for', 'your', 'own', 'good.'], ['We', 'were', 'all', 'afraid', 'of', 'the', 'point.'], ["Don't", 'tell', 'me', "you're", 'not', 'scared.'], ['When', 'can', 'I', 'call', 'you?'], ["What's", 'the', 'name', 'of', 'this', 'river?'], ['Did', 'you', 'have', 'a', 'matter?'], ['I', 'bought', 'lots', 'of', 'sunglasses.'], ['Tom', 'smiled', 'at', 'that', 'one.'], ['She', 'had', 'to', 'wash', 'her', 'hand', 'that', 'she', 'intended', 'to', 'go', 'off.'], ['What', 'time', 'do', 'you', 'go', 'to', 'work?'], ['Of', 'course', 'you', 'can', 'stay.'], ['This', 'is', 'a', 'big', 'one.'], ['I', 'wish', 'you', 'might', 'want', 'me', 'to', 'be', 'the', 'future.'], ['Mary', 'leaves', 'the', 'water', 'and', 'put', 'him', 'back.'], ['The', 'town', 'was', 'in', 'town', 'of', 'the', 'rain.'], ['The', 'sun', 'is', 'used', 'to', 'now.'], ['We', 'all', 'have', 'a', 'good', 'time.'], ['I', 'need', 'a', 'little', 'kind', 'to', 'drink.'], ['Are', 'you', 'still', 'happy?'], ['Can', 'we', 'get', 'out', 'of', 'that', 'building?'], ['I', 'want', 'to', 'live', 'in', 'Australia.'], ['Reading', 'is', 'a', 'form', 'of', 'energy.'], ["You're", 'late.'], ['I', 'believe', 'in', 'the', 'sound', 'of', 'be', 'true.'], ['The', 'soldiers', 'are', 'calm.'], ['Would', 'you', 'like', 'to', 'do?'], ['I', 'love', 'how', 'to', 'dance.'], ['Children', 'like', 'playing', 'volleyball.'], ["You've", 'missed', 'the', 'bus.'], ['Is', 'it', 'possible', 'by', 'next', 'him?'], ['Tom', 'is', 'not', 'as', 'young', 'as', 'his', 'old', 'family', 'as', 'his', 'family', 'when', 'he', 'is', 'a', 'dog.'], ['How', 'many', 'of', 'they', 'are', 'there?'], ['Take', 'off', 'the', 'information.'], ['But', "there's", 'a', 'long', 'time', 'ago.'], ['Tom', 'sat', 'close', 'to', 'the', 'window.'], ['What', 'do', 'you', 'think', 'of', 'the', 'new', 'dress?'], ['The', 'two', 'of', 'people', 'have', 'been', 'rising', 'together', 'for', 'two', 'times', 'a', 'full', 'day.'], ['Not', 'everyone', 'is', 'spoiled.'], ['You', "should've", 'paid', 'attention.'], ["I'm", 'happy.'], ['They', 'are', 'reading', 'a', 'book.'], ["I'm", 'not', 'allowed', 'to', 'say', 'anything.'], ['It', 'was', 'hard.'], ['I', 'have', 'no', 'intention', 'of', 'winning?'], ['You', 'need', 'to', 'work', 'hard.'], ['They', 'are', 'sitting', 'on', 'us.'], ["There's", 'no', 'exit.'], ['The', 'two', 'of', 'them', 'are', 'different.'], ['My', 'father', "doesn't", 'like', 'soccer.'], ['I', 'painted', 'the', 'ceiling.'], ['Promise', 'me', 'that', 'you', 'can', 'swim.'], ['I', 'am', 'sure', "I'm", 'tired.'], ['I', 'put', 'on', 'the', 'back', 'on', 'on', 'my', 'back.'], ["They're", 'gone.'], ['You', 'need', 'to', 'bug', 'you.'], ['Tom', 'was', 'a', 'poet.'], ['I', 'am', 'waiting', 'for', 'you.'], ["You're", 'new', 'here,', "isn't", 'he?'], ['We', 'are', 'excited.'], ['Are', 'you', 'up?'], ["I'm", 'too', 'hungry.'], ['I', 'want', 'you', 'to', 'come', 'back.'], ['Did', 'you', 'buy', 'the', 'dark?'], ['Yesterday', 'he', 'comes', 'to', 'my', 'place.'], ['What', 'did', 'you', 'get', 'hit', 'with?'], ['I', 'want', 'to', 'watch', 'any', 'more', 'water.'], ['Do', 'you', 'want', 'to', 'do', 'it?'], ['The', 'suspect', 'had', 'a', 'rough', 'job.'], ['I', 'can', 'understand', 'this', 'anymore.'], ['I', 'reconsidered', 'your', 'proposal.'], ['News', 'who', 'lives', 'by', 'the', 'world', 'by', 'the', 'air.'], ['I', 'need', 'to', 'lose', 'some', 'weight.'], ['The', 'candle', 'was', 'closed.'], ['When', 'did', 'the', 'first', 'train', 'leave?'], ['They', 'canceled.'], ['We', 'need', 'to', 'know', 'what', 'happened.'], ["Don't", 'ever', 'like', 'new', 'new', 'people.'], ["It's", 'easy', 'to', 'get', 'rid', 'of', 'bad', 'habits.'], ["I'm", 'very', 'sad', 'to', 'hear', 'that.'], ['I', 'suggest', 'you', 'get', 'some', 'rest.'], ['That', 'sounds', 'pretty', 'enough.'], ['This', 'place', 'is', 'a', 'very', 'interesting', 'place.'], ["You're", 'good.'], ["I've", 'made', 'this', 'hole', 'by', 'myself.'], ["Tom's", 'birthday', 'on', 'the', 'fire.'], ["You're", 'very', 'timid.'], ["That's", 'perfect.'], ["I've", 'never', 'answered', "Tom's", 'questions.'], ['I', 'lost', 'that', 'soup', 'for', 'you.'], ['I', 'never', 'said', "you'd", 'be', 'coming.'], ["You're", 'very', 'understanding.'], ['I', 'want', 'to', 'know', 'where', 'you', 'live', 'in', 'front', 'of', 'me.'], ["They're", 'going', 'to', 'understand', 'Tom,', 'is', 'in', 'the', 'corner.'], ['I', "can't", 'believe', 'that', 'it', "didn't", 'work.'], ['You', 'look', 'happy', 'today.'], ['Tom', "doesn't", 'like', 'living', 'as', 'he', 'used', 'to', 'sing', 'like', 'French.'], ['You', "can't", 'trust', 'your', 'success', 'against', 'you.'], ['His', 'explanation', 'was', 'really', 'large.'], ['He', 'went', 'home', 'at', 'six', "o'clock."], ['He', 'took', 'a', 'cab', 'for', 'the', 'station.'], ['She', 'wants', 'to', 'kill', 'me.'], ['My', 'uncle', 'was', 'looking', 'at', 'the', 'end', 'of', 'our', 'own.'], ['He', 'is', 'lying', 'on', 'the', 'couch.'], ['Why', 'were', 'you', 'absent', 'yesterday?'], ['I', 'need', 'to', 'get', 'a', 'walk', 'for', 'practice.'], ['They', 'were', 'upset.'], ['She', 'robbed', 'me', 'blind.'], ['How', 'do', 'you', 'feel', 'dog?'], ['No', 'one', 'was', 'contented.'], ['Excuse', 'me,', 'is', 'the', 'station', 'from', 'the', 'station?'], ['A', 'heavy', 'day', 'I', 'got', 'off', 'the', 'bill', 'every', 'day.'], ['How', 'many', 'men', 'do', 'you', 'have?'], ["That's", 'not', 'like', 'you', 'think.'], ['You', 'can', 'stay', 'at', 'us', 'for', 'the', 'first', 'time.'], ['When', 'she', 'was', 'a', 'surprise,', 'she', 'was', 'a', 'shocked.'], ['I', 'took', 'a', 'train', 'at', 'the', 'station', 'at', 'the', 'station.'], ['I', 'could', 'see', 'this', 'movie', 'to', 'see', 'this.'], ['I', 'just', 'want', 'to', 'do', 'anything', 'you', 'have', 'anything.'], ['I', 'remember', 'seeing', 'him', 'once', 'yesterday.'], ['She', 'used', 'to', 'help', 'me', 'very', 'well', 'for', 'all', 'too', 'long.'], ['I', 'thought', "I'd", 'find', 'you.'], ['I', 'feel', 'bad', 'that', 'I', "haven't", 'paid', 'you.'], ['May', 'I', 'ask', 'you', 'a', 'few', 'questions?'], ['The', 'corpse', 'is', 'a', 'gunshot', 'wound', 'in', 'the', 'chest.'], ['Tom', 'made', 'my', 'mistake.'], ['Call', 'the', 'next', 'train.'], ['All', 'of', 'the', 'money', 'has', 'been', 'spent', 'in', 'the', 'whole', 'clothes.'], ['I', 'need', 'a', 'child.'], ['Do', 'you', 'love', 'this?'], ['The', 'problem', 'is', 'that', 'we', 'have', 'no', 'money.'], ['I', 'plan', 'to', 'get', 'back', 'to', 'Boston.'], ['I', 'had', 'to', 'go', 'back', 'home.'], ['I', 'grew', 'up', 'here.'], ['The', 'weather', 'is', 'fine', 'today.'], ['I', 'understand', 'you.'], ["I'd", 'like', 'to', 'brush', 'my', 'teeth.'], ['Is', 'it', 'OK', 'if', 'you', 'want?'], ['They', 'can', 'find', 'our', 'team', 'out.'], ["They're", 'going', 'to', 'help', 'you.'], ['What', 'does', 'it', 'feel?'], ['I', 'just', 'wanted', 'to', 'have', 'a', 'little', 'one.'], ['I', 'have', 'two', 'copies'], ['I', 'figured', 'that', 'you', 'might', 'come.'], ['How', 'much', 'do', 'you', 'know', 'where', 'to', 'go?'], ['Do', 'you', 'know', 'how', "Tom's", 'name', 'is', 'Tom?'], ['Did', 'you', 'move', 'the', 'bill?'], ['Nature', 'is', 'over.'], ["I'm", 'a', 'tall', 'boy', 'now.'], ['How', 'did', 'you', 'become', 'interested?'], ['A', 'lot', 'of', 'people', 'came', 'to', 'meet', 'their', 'parents.'], ['No', 'one', 'knows', 'who', 'knows', 'his', 'brother?'], ["What's", 'your', 'idea?'], ['He', 'left', 'everything', 'his', 'baby', 'left', 'him.'], ['My', 'father', 'could', 'not', 'take', 'a', 'dog.'], ['Tom', 'was', 'back', 'to', 'his', 'house.'], ['My', 'cat', 'is', 'happy.'], ['Did', 'he', 'stay', 'for', 'a', 'long', 'time?'], ["Don't", 'worry', 'about', 'you', 'not', 'like', 'you.'], ['I', "don't", 'like', 'spring.'], ['The', 'company', 'has', '26', 'letters.'], ['People', 'always', 'complain', 'about', 'the', 'weather.'], ["You're", 'being', 'prepared.'], ['You', "don't", 'have', 'to', 'explain', 'anything.'], ["You'll", 'be', 'at', 'home', 'with', 'your', 'friends.'], ['He', 'probably', 'forgotten.'], ['Do', 'we', 'need', 'to', 'do?'], ['Tomorrow,', 'I', 'belong', 'to', 'the', 'library.'], ['Do', 'you', 'get', 'it?'], ['I', 'think', 'my', 'parents', 'made', 'my', 'parents.'], ['This', 'is', 'wrong.'], ['I', "didn't", 'know', 'they', 'had', 'to', 'do', 'that.'], ['The', 'boat', 'was', 'on', 'TV', 'on', 'TV.'], ['I', 'know', 'that', 'Tom', 'is', 'a', 'little', 'rusty.'], ['My', 'family', 'will', 'be', 'at', 'least', 'come', 'to', 'come', 'back', 'at', 'first', 'time.'], ['Who', 'are', 'you', 'going', 'with?'], ["They're", 'not', 'all', 'busy.'], ['Tom', 'is', 'studying', 'with', 'mathematics.'], ['Your', 'parents', 'were', 'not', 'dead', 'by', 'accident.'], ["I've", 'come', 'here', 'for', 'a', 'long', 'time.'], ['I', 'love', 'my', 'daughter.'], ['The', 'headlights', "won't", 'smoke.'], ['I', 'knew', 'the', 'book', 'before.'], ['She', 'was', 'almost', 'the', 'point.'], ['Return', 'in', 'your', 'advice,', "you'll", 'get', 'in', 'a', 'rock', 'apartment.'], ['Where', 'could', 'you', 'go?'], ['Come', 'in.'], ['Tom', "doesn't", 'like', 'living', 'alone.'], ['He', 'had', 'no', 'memory', 'of', 'the', 'evening.'], ['You', 'have', 'to', 'read', 'the', 'report', 'to', 'call', 'you', 'a', 'cab.'], ['Is', 'there', 'anyone', 'here?'], ['I', 'had', 'to', 'get', 'the', 'bus.'], ['Doing', 'that', "won't", 'take', 'your', 'time.'], ["It's", 'his', 'way', 'to', 'adapt', 'his', 'feet,', 'began', 'to', 'fall.'], ['I', "don't", 'think', 'they', 'can', 'write', 'anymore.'], ["You're", 'totally', 'ignorant.'], ["I'm", 'not', 'good', 'enough', 'for', 'you.'], ['Where', 'do', 'you', 'have', 'left?'], ["I'm", 'so', 'happy', 'if', 'you', 'mean.'], ['His', 'advice', 'made', 'us', 'all', 'the', 'same.'], ["You're", 'really', 'awesome.'], ['Show', 'me', 'the', 'photo.'], ['Your', 'advice', 'has', 'been', 'great', 'help.'], ['She', 'said', 'that', 'he', 'could', 'be', 'true.'], ['Tom', "doesn't", 'bite.'], ['Check', 'again.'], ['That', 'child', 'has', 'little', 'friends.'], ["Let's", 'watch', 'this', 'debate.'], ['Tom', 'wants', 'to', 'help.'], ['Everyone', 'looks', 'excited.'], ['Are', 'you', 'afraid', 'of', 'death?'], ["I'm", 'awake.'], ["Let's", 'not', 'talk', 'about', 'that.'], ['How', 'nice!'], ['Talk', 'to', 'my', 'lawyer.'], ['I', 'hope', 'Tom', 'works.'], ['How', 'much', 'did', 'you', 'get', 'paid', 'for', 'that?'], ['I', "don't", 'know', 'what', 'he', 'wants', 'to.'], ['Tyranny', 'is', 'everywhere.'], ['If', 'you', 'find', 'out', 'this', "you'll", 'be', 'able', 'to', 'find', 'out', 'for', 'you.'], ['It', 'was', 'supposed', 'to', 'be', 'easy.'], ['Please', 'play', 'the', 'bank.'], ['I', 'said', 'he', 'could', 'go.'], ['She', 'gave', 'me', 'a', 'cake.'], ['I', 'really', 'am', 'glad', "you're", 'here.'], ['He', 'gets', 'a', 'novel', 'from', 'the', 'novel', 'one.'], ['The', 'challenges', 'are', 'no', 'sense.'], ['Are', 'you', 'ready', 'to', 'go?'], ['I', 'had', 'a', 'long', 'time', 'last', 'night.'], ['He', 'walked', 'during', 'the', 'light', 'during', 'class.'], ['Do', 'you', 'get', 'along', 'with', 'the', 'United', 'States.'], ['I', 'got', 'up', 'last', 'night.'], ['This', 'is', 'your', 'bag,', "isn't", 'it?'], ['Who', 'is', 'the', 'book', 'that', 'book?'], ['I', 'am', 'not', 'aware', 'of', 'my', 'yard.'], ["Don't", 'you', 'see', "what's", 'going', 'on?'], ['Why', 'did', 'you', 'come', 'early?'], ['Are', 'you', 'sure', 'you', "don't", 'need', 'my', 'help?'], ['Tom', 'thought', 'that', 'Mary', 'had', 'not', 'gone', 'to', 'England', 'and', 'had', 'no', 'trouble.'], ['The', 'movie', 'was', 'closed.'], ['I', 'live', 'in', 'the', 'air.'], ['I', 'put', 'you', 'to', 'put', 'it', 'in', 'my', 'refrigerator.'], ['Am', 'I', 'being', 'dog?'], ["I'm", 'sure', 'Tom', 'is', 'what', 'Tom', 'thinks.'], ['Cats', 'can', 'keep', 'cats', 'but', 'not', 'to', 'dogs.'], ['She', 'advised', 'him', 'to', 'do', 'it.'], ["You've", 'got', 'the', 'line.'], ['Do', 'you', 'have', 'a', 'bigger', 'anymore.'], ['I', "don't", 'know', 'whether', 'Tom', 'lives', 'here', 'or', 'not.'], ['Tom', 'is', 'mistaken.'], ["I'm", 'not', 'going', 'to', 'be', 'here', 'and', 'listen.'], ['I', 'owe', 'a', 'little', 'help', 'after', 'a', 'few', 'minutes?'], ['Hand', 'me', 'a', 'handkerchief.'], ['Going', 'a', 'new', 'company', 'wants', 'to', 'buy', 'a', 'new', 'song.'], ['Tom', 'wants', 'to', 'talk.'], ['I', 'recommend', 'it', 'highly.'], ['To', 'the', 'door,', 'I', 'broke', 'the', 'lock.'], ['How', 'did', 'the', 'date', 'happen?'], ['He', 'visited', 'Japan', 'for', 'the', 'last', 'election.'], ['Tom', 'has', 'found', 'his', 'best', 'friend.'], ['Thanks', 'for', 'your', 'explanation.'], ["You've", 'told', 'me', 'that', 'you', 'have', 'misunderstood', 'so', 'I', 'really', 'said.'], ["It's", 'hard', 'to', 'find', 'a', 'hard', 'time', 'for', 'his', 'days.'], ['Hurry', 'up,', 'or', "you'll", 'miss', 'the', 'train.'], ['Is', 'this', 'your', 'first', 'trip', 'to', 'us?'], ['Could', 'you', 'call', 'me', 'a', 'job?'], ['Tom', 'is', 'going', 'to', 'win.'], ['You', 'need', 'to', 'study', 'harder.'], ['He', 'abandoned', 'his', 'family', 'and', 'left', 'his', 'family', 'to', 'live', 'in', 'Tahiti.'], ["I'm", 'not', 'a', 'busy', 'man.'], ['I', 'think', "we're", 'on', 'the', 'right', 'track.'], ['What', 'should', 'I', 'do', 'with', 'some', 'time?'], ['I', 'appreciate', 'your', 'company.'], ['What', 'was', 'a', 'tall', 'cream', 'in', 'his', 'house?'], ["It's", 'a', 'small', 'car.'], ['Modern', 'Birds', 'have', 'made', 'a', 'heavy', 'teeth.'], ['The', 'police', 'arrested', 'the', 'police', 'like', 'it.'], ['I', "didn't", 'know', 'you', 'had', 'fun', 'of', 'here.'], ['I', 'think', 'you', 'deserve', 'this.'], ['I', "didn't", 'ask', 'help.'], ['A', 'lot', 'of', 'people', 'used', 'to', 'live', 'in', 'a', 'small', 'world.'], ['How', 'do', 'I', 'call', 'you?'], ['A', 'fire', 'broke', 'out', 'on', 'the', 'woods.'], ['You', "don't", 'look', 'very', 'strong.'], ['Are', 'there', 'another', 'other', 'way', 'to', 'wait?'], ['Please', 'tell', 'me', 'what', 'you', 'really', 'want.'], ['They', 'all', 'laughed', 'at', 'their', 'jokes.'], ['They', 'carried', 'water', 'in', 'buckets.'], ['She', 'understands', 'him.'], ['I', 'want', 'all', 'the', 'water.'], ["I'll", 'make', 'a', 'few', 'mistakes.'], ['When', 'she', 'told', 'her', 'she', 'was', 'her', 'room', 'with', 'him.'], ['Tom', "isn't", 'his', 'real', 'name.'], ['According', 'to', 'the', 'weather', 'weather', 'tomorrow.'], ['What', 'other', 'words', 'do', 'they', 'need', 'to', 'do?'], ['You', "don't", 'know', 'what', 'happened.'], ["I'll", 'be', 'with', 'you.'], ['He', 'went', 'to', 'New', 'York', 'on', 'Monday.'], ['The', 'temperature', 'is', 'below', 'zero.', 'below', 'zero.'], ['He', 'was', 'very', 'patient.'], ['She', 'has', 'a', 'lot', 'of', 'friends.'], ["I'm", 'uninsured.'], ['No', 'one', 'answered', 'my', 'question.'], ["Don't", 'sound', 'so', 'surprised.', 'I', 'know', 'that', 'I', 'can', 'do', 'whatever', 'I', 'want', 'to', 'do.'], ['I', 'promise', 'you', 'I', 'can', 'do', 'that.'], ['She', 'came', 'with', 'the', 'news.'], ['I', "don't", 'care', 'where', 'to', 'talk', 'to', 'you.'], ['Frankly', 'speaking,', 'I', 'tell', 'you,', 'Tom.'], ['Will', 'you', 'be', 'in', 'the', 'sleep?'], ['Are', 'you', 'sure', 'you', "didn't", 'do', 'anything?'], ["I'm", 'trying', 'to', 'protect', 'you', 'some', 'more', 'information.'], ['Tom', 'walks.'], ['Tom', 'is', "Mary's", "husband's", 'name.'], ['Tell', 'me', 'where', 'Tom', 'is.'], ['I', 'wish', 'you', 'had', 'told', 'me', 'what', 'I', 'could', 'do.'], ['Are', 'you', 'kidding'], ["We're", 'aware', 'of', 'the', 'problem.'], ['I', "haven't", 'gotten', 'up', 'bad', 'bad', 'for', 'bad', 'bad', 'yet.'], ['When', 'do', 'you', 'intend', 'to', 'start?'], ['I', "don't", 'like', 'your', 'friends.'], ['The', 'situation', 'is', 'growing.'], ['This', 'book', 'has', 'many', 'of', 'high', 'times.'], ['of', 'a', 'lie.'], ['Is', 'this', 'somebody', 'else', 'else?'], ['Is', 'it', 'something', 'you', 'can', 'get', 'it?'], ['I', 'love', 'soccer.'], ['That', 'sounds', 'fishy.'], ['You', "don't", 'find', 'out', 'of', 'your', 'mind', 'doing', 'that,', 'can', 'you?'], ['I', 'am', 'a', 'different', 'personality.'], ['We', 'must', 'cut', 'our', 'expenses.'], ['Can', 'you', 'tell', 'us', 'what', 'we', 'did?'], ['This', 'is', 'a', 'temporary', 'pair', 'of', 'wine.'], ['I', 'guess', "that's", 'no.'], ['I', "couldn't", 'make', 'myself', 'understood', 'in', 'English.'], ['He', 'is', 'a', 'poet.'], ['It', 'will', 'take', 'you', 'warm.'], ['What', 'is', 'all', 'that', 'stuff?'], ['Not', 'a', 'noise', 'broke', 'the', 'door', 'yesterday.'], ['Is', 'that', 'really', 'necessary?'], ['I', 'demand', 'being', 'in', 'the', 'rain.'], ['I', 'used', 'to', 'feel', 'nauseous.'], ["I'm", 'not', 'the', 'only', 'one', 'who', 'used', 'to', 'do', 'that.'], ['He', 'is', 'willing', 'to', 'believe', 'him,', 'but', 'he', 'is', 'looking', 'for', 'something', 'but', 'he', 'is', 'looking', 'at', 'the', 'refrigerator.'], ['Thanks', 'up', 'with', 'your', 'own', 'business.'], ['I', 'almost', 'never', 'work', 'almost', 'Saturday.'], ['This', 'fact', 'is', 'that', 'he', 'is', 'innocent.'], ["I've", 'already', 'answered', 'this', 'question.'], ['He', 'threw', 'on', 'the', 'table.'], ["Let's", 'begin', 'by', 'taking', 'your', 'temperature.'], ['Times', 'are', 'tough.'], ['The', 'children', 'read', 'a', 'lot', 'of', 'flowers', 'during', 'the', 'crops.'], ['You', 'have', 'to', 'be', 'prepared.'], ['She', 'is', 'used', 'to', 'the', 'job.'], ['I', 'was', 'tired', 'of', 'taking', 'a', 'day', 'in', 'bed', 'at', 'a', 'bed', 'train.'], ["We've", 'already', 'seen', 'this', 'movie.'], ['I', "can't", 'tell', 'you', 'how', 'happy', 'I', 'am', 'that', "you've", 'come', 'to', 'visit', 'us.'], ['Father', 'is', 'against', 'me.'], ['Are', 'you', 'ready?'], ["Don't", 'be', 'part', 'in', 'the', 'rain.'], ["They're", 'doing', 'this', 'sentence.'], ['Tom', 'told', 'me', 'that', 'Mary', 'in', 'the', 'bathroom.'], ["I'm", 'working', 'everything', 'I', 'could', 'work', 'in', 'everything.'], ['I', 'have', 'so', 'cold.'], ['Please', 'sit', 'down', 'on', 'the', 'door.'], ['You', 'should', 'have', 'been', 'more', 'careful.'], ["I'm", 'a', 'singer.'], ["She's", 'two', 'years', 'more', 'than', 'him.'], ['I', "haven't", 'talked', 'to', 'this', 'time.'], ["They're", 'following', 'us.'], ['Generally', 'dogs', 'cats', 'cats', 'dogs.'], ['I', 'apologize', 'to', 'my', 'heart.'], ['I', 'can', 'help', 'you.'], ['I', "can't", 'believe', 'you', 'loved', 'that.'], ['I', "don't", 'think', 'Tom', 'knows', 'how', 'to', 'do', 'that.'], ['Tom', 'needs', 'this.'], ["I'm", 'glad', 'no', 'one', 'was', 'hurt.'], ['I', 'have', 'many', 'talents.'], ['I', 'can', 'swim', 'very', 'fast.'], ['We', 'could', 'hurry.'], ['What', 'do', 'you', 'want', 'to', 'do', 'your', 'parents?'], ["That's", 'the', 'sentence.'], ['Tom', 'is', 'studying', 'French', 'in', 'Boston.'], ['He', 'tried', 'it', 'out,', 'he', 'tried', 'to', 'succeed.'], ['I', "don't", 'have', 'time', 'to', 'spend', 'this', 'time', 'on', 'the', 'weather.'], ["We'll", 'talk', 'about', 'it', 'later.'], ['France', 'is', 'in', 'the', 'sea', 'of', 'the', 'war.'], ['I', 'put', 'it', 'in', 'your', 'room.'], ['I', 'want', 'you', 'to', 'help', 'me', 'who', 'I', 'am.'], ['The', 'more', 'I', 'used', 'to', 'think', 'it', 'would', 'be', 'more', 'to', 'be', 'again.'], ['Hurry', 'up,', 'or', "you'll", 'be', 'late', 'for', 'school.'], ['Where', 'is', 'the', 'beach?'], ['We', 'need', 'to', 'cut', 'the', 'top', 'of', 'the', 'company.'], ['I', 'love', 'the', 'flowers', 'you', 'lent', 'me.'], ['We', 'had', 'been', 'told', 'the', 'scene', 'of', 'having', 'been', 'absent.'], ["You're", 'afraid', 'that', 'I', "aren't", 'afraid', 'of?'], ['Try', 'not', 'to', 'laugh.'], ['You', 'look', 'very', 'tired.'], ['I', "don't", 'yet', 'know', 'what', "I'm", 'going', 'to', 'do.'], ['Tom', 'peeked', 'at', 'a', 'piece', 'of', 'others.'], ['I', 'figured', "you'd", 'be', 'impressed.'], ['What', 'did', 'you', 'go', 'to', 'college?'], ['I', 'met', 'your', 'son', 'yesterday', 'and', 'he', 'greeted', 'me', 'politely.'], ['That', 'movie', 'was', 'interesting.'], ['We', 'are', 'leaving', 'for', 'a', 'drive.'], ['She', 'went', 'to', 'him.'], ['We', 'lost.'], ["What's", 'your', 'target?'], ['Which', 'book', 'is', 'your', 'favorite', 'piece', 'of', 'suitcase', 'is', 'important?'], ["It's", 'going', 'to', 'rain', 'soon.'], ['Her', 'name', "isn't", 'on', 'the', 'list.'], ['When', 'will', 'he', 'give', 'you?'], ['Are', 'you', 'still', 'mad', 'after', 'me?'], ['Dinner', 'is', 'almost', 'ready.'], ['The', 'dog', 'blew', 'up', 'my', 'day.'], ['What', 'do', 'we', 'do', 'today?'], ['I', 'used', 'to', 'make', 'mistakes', 'just', 'over', 'my', 'knees.'], ["What's", 'wrong', 'with', 'my', 'idea?'], ['The', 'seems', 'seems', 'to', 'be', 'cruel.'], ['Do', 'your', 'mother', 'for', 'permission.'], ['I', 'think', "they'll", 'Tom', 'usually', 'stand', 'to', 'live', 'with', 'two', 'clothes', 'and', 'usually', 'stand', 'clothes', 'is', 'usually', 'on', 'either', 'clothes', 'on', 'the', 'vase.'], ['Why', "didn't", 'you', 'tell', 'me', "what's", 'going', 'to', 'tell', 'me?'], ['I', 'have', 'a', 'lot', 'today.'], ['It', 'stays', 'too', 'long.'], ['She', 'is', 'in', 'charge', 'of', 'her', 'presence.'], ['You', "shouldn't", 'go', 'alone.'], ['The', 'movie', 'was', 'a', 'great', 'success.'], ['You', 'look', 'happy', 'today.'], ["I'll", 'come', 'with', 'you.'], ['Tie', 'your', 'shoelaces.'], ['They', 'stood', 'up', 'with', 'each', 'other.'], ['Her', 'eyes', 'are', 'filled', 'with', 'him.'], ['Who', 'do', 'you', 'want?'], ['He', 'had', 'a', 'lot', 'of', 'rain', 'and', 'many', 'times.'], ['He', 'will', 'have', 'to', 'undergo', 'an', 'email', 'next', 'week.'], ['Are', 'you', 'seriously', 'thinking', 'about', 'your', 'age?'], ['Tom', 'says', 'he', 'did', 'never', 'think', 'about', 'the', 'food.'], ['How', 'do', 'you', 'want', 'to', 'die?'], ['How', 'do', 'you', 'play', 'this', 'camera?'], ['Just', 'OK.'], ['I', 'am', 'not', 'working', 'on', 'the', 'project.'], ['You', 'have', 'a', 'cat.', "don't", 'you?'], ['She', 'sat', 'next', 'to', 'him.'], ['The', 'needs', 'are', 'teachers.'], ["You've", 'put', 'up', 'my', 'land', 'in', 'humanity.'], ['The', 'man', 'who', 'is', 'the', 'only', 'one', 'at', 'the', 'front', 'station.'], ['Unfortunately,', 'I', "don't", 'have', 'time', 'today.'], ['Where', 'are', 'the', 'others?'], ['We', 'are', 'going', 'to', 'have', 'a', 'job', 'to', 'work', 'on', 'our', 'own', 'advice.'], ['I', "didn't", 'know', 'you', 'could', 'speak', 'French.'], ['Please', 'help', 'me.'], ['This', 'house', 'is', 'going', 'on.'], ['This', 'is', 'the', 'one', 'who', 'gave', 'me', 'a', 'day', 'but', 'I', 'used', 'to', 'make', 'a', 'week.'], ["I'm", 'tired', 'of', 'homework.'], ['I', 'was', 'born', 'in', 'a', 'traffic', 'jam.'], ['That', "doesn't", 'mean', 'fair,', 'does', 'it?'], ['He', 'threw', 'me', 'out.'], ['My', "name's", 'Tom.'], ['The', 'heavy', 'crowd', 'in', 'the', 'light', 'in', 'the', 'crowd', 'will', 'be', 'hot.'], ['I', 'was', 'born', 'in', 'Australia', 'for', 'her.'], ["You're", 'twice', 'as', 'strong', 'as', 'me.'], ['Look', 'at', 'the', 'floor.'], ['Anyone', 'can', 'do', 'that.'], ['One', 'of', 'my', 'friends', 'are', 'yours.'], ['You', 'should', 'have', 'been', 'more', 'careful.'], ["I'll", 'give', 'up.'], ['I', "don't", 'hear', 'anything', 'you', 'say.'], ['Tom', 'used', 'to', 'hit', 'the', 'ball', 'out', 'of', 'a', 'hand.'], ['He', 'passed', 'the', 'examination.'], ['No', 'one', 'answered.'], ['He', 'just', 'got', 'home.'], ['May', 'I', 'have', 'a', 'hug?'], ['I', 'fell', 'into', 'the', 'water.'], ['Excuse', 'me,', 'will', 'you?'], ['What', 'does', 'this', 'sentence', 'mean?'], ["It's", 'a', 'quarter', 'past', 'eleven.'], ['This', 'work', 'was', 'almost', 'very', 'quickly.'], ['I', 'think', 'you', 'must', 'be', 'tired.'], ['We', 'met', 'him', 'by', 'chance.'], ['I', 'have', 'no', 'friends', 'in', 'religion.'], ['I', 'wonder', 'why', 'Tom', 'is', 'so', 'happy.'], ['How', 'did', 'you', 'get', 'here?'], ['The', 'boy', 'slept', 'ten', 'hours.'], ['Shame', 'on', 'you.'], ["They're", 'in', 'the', "teachers'", 'policy.'], ['We', 'went', 'to', 'the', 'opening', 'ceremony.'], ['I', 'know', "you're", 'busy,', 'but', 'can', 'I', 'have', 'a', 'good', 'time', 'with', 'you?'], ['I', 'am', 'not', 'that', 'interested.'], ['I', 'remember', 'when', 'I', 'first', 'saw', 'you.'], ['Are', 'you', 'still', 'in', 'love?'], ["Don't", 'keep', 'moving.'], ["I'd", 'like', 'Tom', 'here.'], ['Everything', 'is', 'new.'], ['Will', 'he', 'be', 'back?'], ["It's", 'time', 'to', 'meet', 'you.'], ["I'll", 'be', 'there', 'at', '2:30.'], ['They', 'will', 'keep', 'it', 'on', 'the', 'power.'], ['Keeping', 'a', 'newspaper', 'habit.'], ['Are', 'you', 'planning', 'to', 'go', 'overseas?'], ['I', 'must', 'go', 'to', 'work.'], ['I', 'want', 'you', 'to', 'stop', 'this.'], ["That's", 'too', 'much.'], ['You', "don't", 'look', 'like', 'a', 'millionaire.'], ['I', "don't", 'remember', 'having', 'that.'], ['I', "can't", 'find', 'the', 'time', 'to', 'read', 'the', 'book.'], ['I', 'will', 'explain', 'it', 'to', 'her.'], ['Tom', 'is', 'older', 'than', 'Mary.'], ["You're", 'the', 'teacher.'], ['You', 'should', 'have', 'seen', 'it.'], ['It', 'is', 'going', 'to', 'rain', 'soon.'], ['Is', 'there', 'an', 'hour', 'in', 'a', 'walk?'], ['Have', 'you', 'had', 'everything', 'you', 'wanted', 'to', 'do', 'this?'], ['We', 'had', 'a', 'bad', 'mood', 'since', 'I', 'needed.'], ['Who', 'are', 'you', 'talking', 'about?'], ['I', 'thought', 'you', 'might', 'like', 'a', 'bottle', 'of', 'guys', 'I', 'had', 'no', 'one', 'of', 'this', 'place.'], ['Tom', 'said', 'that', 'Mary', 'was', 'a', 'nice', 'driver.'], ["He's", 'likely', 'to', 'come.'], ['Tom', 'found', 'he', 'found', 'his', 'bicycle.'], ['A', 'number', 'of', 'danger', 'are', 'missing.'], ['You', 'were', 'really', 'busy,', "weren't", 'you?'], ['Tom', 'made', 'a', 'list', 'of', 'what', 'he', 'bought', 'a', 'list'], ['I', "don't", 'care', 'like', 'people', 'like', 'him.'], ['Can', 'you', 'why', 'Tom', 'here', "isn't", 'here?'], ['Who', 'are', 'you', 'to', 'tell', 'us', 'that', 'we', "can't", 'go?'], ['I', 'have', 'a', 'rock', 'in', 'the', 'shower.'], ['Who', 'bought', 'you', 'this', 'house?'], ["Don't", 'point', 'your', 'gun', 'at', 'me.'], ['What', 'kind', 'of', 'earth', 'is', 'this?'], ["It's", 'good', 'enough.'], ['Is', 'it', 'really', 'that', 'matter?'], ['We', 'were', 'in', 'prison', 'for', 'ten', 'years.'], ["Let's", 'find', 'a', 'solution', 'to', 'all', 'the', 'world.'], ['Tom', 'made', 'part', 'of', 'the', 'problem.'], ['I', "don't", 'know', 'how', 'to', 'make', 'a', 'chance.'], ['What', 'is', 'it', 'on', 'time', 'with', 'you?'], ['How', 'did', 'you', 'get', 'here?'], ["That's", 'not', 'your', 'fault.'], ['I', 'am', 'in', 'big', 'of', 'cancer.'], ['That', "wasn't", 'easy', 'to', 'talk', 'to.'], ['He', 'runs', 'a', 'diary', 'in', 'English.'], ['Do', 'you', 'have', 'any', 'idea', 'who', 'did', 'this?'], ['Please', 'do', 'more', 'attention', 'to', 'the', 'future.'], ['I', 'was', 'told', 'I', 'had', 'to', 'sleep.'], ['Can', 'I', 'talk', 'to', 'you', 'alone', 'in', 'a', 'second?'], ['What', 'is', 'he', 'hiding?'], ['I', 'just', 'want', 'the', 'truth.'], ['I', 'think', "it's", 'too', 'big.'], ["Don't", 'let', 'them', 'tell', 'you', "you're", 'crazy.'], ['I', "don't", 'want', 'to', 'hear', 'your', 'apology.'], ["I'm", 'in', 'good', 'for', 'me', 'safe.'], ['We', "can't", 'do', 'this', 'all', 'the', 'time.'], ['I', 'had', 'no', 'idea', 'you', 'were', 'so', 'dedicated.'], ["Isn't", 'that', 'just', 'it?'], ["You're", 'demented.'], ["Let's", 'work', 'at', 'work.'], ['I', 'count', 'your', 'brother.'], ['The', 'storm', 'was', 'delayed', 'for', 'practice.'], ['No', 'one', 'will', 'believe', 'it.'], ['The', 'train', 'of', 'the', 'cat', 'is', 'always', 'open.'], ['We', 'are', 'covered', 'with', 'snow.'], ['Everybody', 'hates', 'you.'], ['I', 'felt', 'confident.'], ['Her', 'hair', "doesn't", 'have', 'any', 'evidence.'], ['If', 'we', 'can', 'go', 'there', 'if', 'we', 'want.'], ['The', 'professor', 'in', 'the', 'company', 'is', 'hard', 'for', 'the', 'hard', 'language', 'of', 'oil.'], ['Would', 'you', 'like', 'to', 'go', 'fishing', 'next', 'weekend?'], ['I', "don't", 'understand', 'why', 'you', 'want', 'it.'], ['He', 'picked', 'up', 'a', 'stone.'], ['This', 'is', 'it?'], ['Make', 'your', 'move.'], ['Practice', 'the', 'wrong', 'accident.'], ['They', 'rejected', 'our', 'idea.'], ['He', 'is', 'fatter', 'the', 'last', 'time', "I've", 'ever', 'seen.'], ["Don't", 'tell', 'anybody.'], ["I'll", 'look', 'after', 'your', 'child', 'while', 'you', 'are', 'away.'], ["Don't", 'buy', 'me', 'presents', 'anymore.'], ['Tom', 'denied', 'having', 'put', 'a', 'student.'], ['I', "can't", 'tell', 'you', 'how', 'happy', 'I', 'am', 'that', "you've", 'come', 'to', 'visit', 'us.'], ['All', 'you', 'do', 'is', 'criticize', 'others.'], ['I', 'went', 'to', 'the', 'purpose', 'of', 'meeting', 'him.'], ['This', 'is', 'a', 'crime', 'against', 'the', 'crime.'], ['The', 'soldiers', 'should', 'be', 'punished.'], ['I', 'have', 'a', 'third', 'of', 'the', 'other', 'other', 'is', 'the', 'other', 'bridge'], ['Is', 'that', 'your', 'wife?'], ['Let', 'me', 'tell', 'you', 'how', 'I', 'really', 'remember.'], ['My', 'children', 'count', 'on', 'me.'], ["Don't", 'you', 'see', "what's", 'happened?'], ['Can', 'you', 'wait', 'till', 'ten', 'minutes?'], ['Her', 'car', 'was', 'held', 'in', 'a', 'car', 'of', 'their', 'winter.'], ['He', 'loves', 'soccer.'], ['Tom', 'solved', 'his', 'computer.'], ['I', 'was', 'too', 'tired', 'to', 'walk', 'on', 'walking.'], ['He', 'is', 'late', 'for', 'school.'], ['Why', "don't", 'you', 'take', 'a', 'picture?'], ['She', 'hit', 'her', 'instead', 'of', 'her', 'bed.'], ["There's", 'no', 'room.'], ['Are', 'you', 'on', 'your', 'age?'], ['She', 'might', 'be', 'ten', 'years', 'since', 'he', 'died.'], ['Half', 'of', 'the', 'apples', 'that', 'Tom', 'gave', 'me', 'was', 'rotten.'], ['I', 'know', 'this', 'is', 'the', 'right', 'job.'], ['I', 'felt', 'myself', 'uneasy.'], ['You', 'heard', 'it.'], ['I', 'wonder', 'why', 'dogs', 'dogs.'], ["They're", 'young', 'and', 'healthy.'], ['How', 'do', 'you', 'expect', 'me', 'to', 'French?'], ['Our', 'team', 'lost', 'the', 'team', 'game.'], ["They're", 'in', 'danger.'], ['The', 'man', 'looks', 'two', 'years', 'old.'], ["You're", 'the', 'best', 'person', 'in', 'my', 'life.'], ['What', 'can', 'I', 'do', 'for', 'you?'], ['My', 'hobby', 'is', 'collecting', 'stamps.'], ['Do', 'you', 'think', "there's", 'a', 'connection?'], ["I'll", 'never', 'forget', 'seeing', 'you.'], ['Tom', 'said', 'he', 'wanted', 'to', 'take', 'a', 'nap.'], ['Could', 'you', 'please', 'shut', 'up?'], ['No', 'matter', 'what', 'his', 'friends', 'is', 'about', 'him.'], ['Wolves', 'people.'], ['Do', 'you', 'want', 'to', 'buy', 'the', 'doctor?'], ['How', 'many', 'beers', 'do', 'you', 'have', 'invested?'], ["Don't", 'worry', 'about', 'what', 'others', 'say.'], ['How', 'much', 'did', 'us', 'do', 'that?'], ['She', 'refused', 'to', 'accept', 'the', 'money.'], ["We'll", 'have', 'to', 'do', 'this', 'quickly.'], ["It's", 'not', 'a', 'joke.'], ['What', 'do', 'you', 'do', 'on', 'Sunday?'], ['I', "don't", 'think', 'Tom', 'can', 'speak', 'French.'], ['Why', "don't", 'you', 'want', 'to', 'be', 'a', 'nurse?'], ['They', "won't", 'make', 'it.'], ['He', 'was', 'forced', 'to', 'listen', 'to', 'her.'], ['I', 'want', 'to', 'talk', 'to', 'you', 'about', 'this', 'report.'], ["You're", 'going', 'to', 'be', 'helped.'], ['This', 'child', "doesn't", 'even', 'drink', 'even', 'a', 'day.'], ['Is', 'this', 'a', 'riddle?'], ['That', 'guy', 'will', 'cost', 'to', 'its', 'necessary', 'sometimes.'], ['I', 'left', 'as', 'soon', 'as', 'I', 'could.'], ['I', 'guess', 'he', 'is', 'right.'], ['What', 'could', 'you', 'just', 'help', 'us?'], ['We', 'will', 'have', 'to', 'put', 'up', 'with', 'the', 'test.'], ['Who', 'planted', 'these', 'trees?'], ['Many', 'companies', 'have', 'a', 'lot', 'of', 'cake', 'to', 'pay', 'every', 'day.'], ['I', 'wear', 'a', 'cold,', 'and', 'I', 'bought', 'a', 'few', 'hours', 'from', 'the', 'station.'], ["I'll", 'be', 'here', 'by', 'here', 'tomorrow.'], ['I', 'collect', 'the', 'apple', 'of', 'the', 'air.'], ['Handmade', 'in', 'a', 'huge', 'income', 'are', 'a', 'huge', 'form', 'of', 'water.'], ['Tom', "didn't", 'come', 'last', 'night.'], ['I', 'hid', 'myself', 'behind', 'a', 'curtain.'], ['I', 'bought', 'you', 'a', 'gift.'], ["What's", 'the', 'second', 'country', 'in', 'the', 'world?'], ['I', "can't", 'stand', 'it', 'on', 'the', 'case', 'of', 'his', 'behavior.'], ['I', 'took', 'risks.'], ["I've", 'already', 'seen', 'that', 'girl.'], ['I', "wasn't", 'invited', 'to', 'the', 'opening', 'ceremony.'], ['He', 'had', 'my', 'bed', 'bed', 'so', 'I', 'had', 'to', 'catch', 'the', 'bed', 'watch.'], ['I', 'got', 'caught.'], ['We', 'talked', 'to', 'you', 'where', 'we', 'see', 'you.'], ['She', 'is', 'psychic.'], ['I', "don't", 'want', 'to', 'leave', 'where', 'I', 'am.'], ['His', 'son', 'has', 'a', 'good', 'doctor.'], ['I', 'just', 'got', 'your', 'letter', 'yesterday.'], ["You'd", 'better', 'listen', 'to', 'me.'], ['Are', 'there', 'for', 'me?'], ['No', 'one', 'hid', 'under', 'the', 'sun.'], ['If', 'that', "doesn't", 'work,', 'this', 'is', 'happening.'], ['I', "didn't", 'understand', 'what', 'he', 'said.'], ['I', 'learned', 'the', 'river', 'ship.'], ['How', 'about', 'going', 'to', 'pay', 'for', 'this', 'stuff?'], ['He', 'has', 'a', 'good', 'tan.'], ['I', 'see', 'how', 'you', 'did', 'it.'], ['I', 'had', 'dinner', 'with', 'a', 'friend', 'last', 'night.'], ['Write', 'the', 'legs.'], ['Maybe', "it's", 'not', 'possible.'], ['I', 'wish', 'you', 'had', 'come', 'with', 'us.'], ["Don't", 'take', 'my', 'nose', 'to', 'me.'], ['Stand', 'up.'], ['No', 'sooner', 'died', 'for', '30', 'minutes', 'before', 'he', 'is', 'a', 'long', 'one.'], ["There's", 'no', 'answer', 'to', 'everything.'], ["You're", 'smarter', 'than', 'me.'], ['How', 'do', 'you', 'come', 'to', 'the', 'house?'], ['Could', 'you', 'show', 'me', 'that?'], ['He', 'has', 'enough', 'willpower.'], ["Tom's", 'plan', 'is', 'trying', 'to', 'find', 'out', 'of', 'repair.'], ["That's", 'peculiar.'], ['Tom', 'helped', 'Mary.'], ['Tom', 'likes', 'you.'], ["There's", 'a', 'map', 'on', 'the', 'wall.'], ['I', 'know', 'this', "isn't", 'enough.'], ['I', 'used', 'to', 'call', 'you', 'when', 'you', 'have', 'high', 'school.'], ["That's", 'not', 'a', 'word', 'of', 'mine.'], ['I', 'guess', "you're", 'not', 'trying', 'to', 'say.'], ['The', 'boy', 'caught', 'the', 'boy', 'in', 'the', 'fog.'], ['They', 'slept', 'in', 'the', 'same', 'bed.'], ["We're", 'going', 'to', 'have', 'a', 'party', 'tomorrow', 'night.'], ['He', 'said', 'that', 'he', 'was', 'saying', 'that', 'he', 'was', 'saying', 'that', 'he', 'was', 'needed.'], ['You', 'ought', 'to', 'have', 'gotten', 'there', 'a', 'long', 'night.'], ['Tom', 'daughter', 'Mary', 'Mary.'], ['She', 'pulled', 'him', 'by', 'the', 'fight.'], ['It', "doesn't", 'mean', 'reason.', 'than', 'reason.'], ['The', 'bridge', 'was', 'still', 'not', 'always', 'lunch.'], ['I', "don't", 'like', 'this', 'kind', 'of', 'music.'], ['Can', 'anyone', 'please', 'help', 'me?'], ['I', 'just', "don't", 'want', 'to', 'get', 'you', 'to', 'get', 'your', 'hopes', 'up.'], ['She', 'looks', 'like', 'something', 'in', 'the', 'case.'], ['The', 'priest', 'shook', 'his', 'health.'], ['This', 'is', 'your', 'destiny.'], ['I', 'bet', 'you', "didn't", 'know', 'that.'], ['Despite', 'animals', 'is', 'totally', 'unfair', 'that', 'they', 'think', "she's", 'used', 'to', 'believe.'], ['He', 'spent', 'the', 'money', 'that', 'weekend.'], ['I', 'feel', 'good', 'now.'], ['How', 'was', 'your', 'afternoon?'], ["They're", 'students.'], ['Tom', "doesn't", 'know', 'what', 'Mary', 'is', 'trying', 'to', 'do.'], ['He', 'never', 'happened', 'to', 'town.'], ['I', 'need', 'a', 'coat', 'coat.'], ['I', "don't", 'know', 'why', 'it', 'happened.'], ['Tom', 'has', 'failed.'], ['There', 'was', 'no', 'rain', 'at', 'the', 'station.'], ['He', 'is', 'his', 'phone', 'house.'], ["I'd", 'never', 'do', 'that', 'to', 'you.'], ['He', 'dozed', 'me', 'in', 'my', 'nose.'], ["I'd", 'love', 'to', 'go', 'there', 'someday.'], ["I'm", 'now', 'busy', 'now.'], ['Please', 'keep', 'your', 'socks,', 'on.'], ['She', 'gave', 'me', 'a', 'gift.'], ['What', 'a', 'shame!'], ['Is', 'there', 'someone', 'with', 'you?'], ["Don't", 'forget', 'that', 'man.'], ["That's", 'the', 'teacher', 'that', 'I', 'love', 'you.'], ["Don't", 'push', 'the', 'grass.'], ['You', "can't", 'force', 'us', 'to', 'us.'], ['The', 'meaning', 'of', 'playing', 'is', 'getting', 'cold.'], ['I', 'have', 'some', 'things', 'to', 'do.'], ["That's", 'a', 'really', 'good', 'time?'], ['I', 'took', 'a', 'shortcut.'], ['We', 'are', 'used', 'to', 'be', 'there.'], ['It', 'looks', 'like', 'we', 'can', 'do.'], ['He', 'looks', 'nice.'], ['Tom', 'deserves', 'a', 'piece', 'of', 'cake.'], ['I', 'ordered', 'pizza.'], ['They', "don't", 'know', 'me.'], ['Tom', 'and', 'I', 'are', 'both', 'teachers.'], ['I', 'know', 'you', 'know', 'that.'], ['He', 'was', 'almost', 'blind.'], ['I', 'met', 'a', 'while', 'sorry', 'that', 'I', 'was', 'a', 'bus.'], ['Can', 'you', 'ride', 'a', 'bicycle?'], ['I', 'inherited', 'the', 'light', 'of', 'the', 'light', 'to', 'get', 'off', 'the', 'rain.'], ['Why', 'do', 'you', 'hate', 'so', 'much?'], ['Do', 'you', 'mind', 'if', 'I', 'use', 'your', 'computer?'], ['We', 'were', 'not', 'able', 'to', 'do', 'that.'], ['Bring', 'a', 'lunch.'], ['I', "don't", 'think', 'you', 'think', "that's", 'crazy.'], ['I', 'am', 'a', 'walk.'], ['I', 'know', 'Tom', 'has', 'been', 'studying', 'for', 'three', 'years.'], ['Oil', 'flowers', 'in', 'the', 'neighborhood.'], ["You're", 'not', 'safe', 'here.'], ['You', 'were', 'removed', 'from', 'the', 'list.'], ["I'll", 'accept', 'your', 'offer.'], ["It's", 'a', 'beautiful', 'butterfly.'], ['He', 'is', 'a', 'student', 'from', 'England.'], ['It', 'was', 'my', 'fault.'], ['I', 'have', 'to', 'take', 'care', 'of', 'my', 'lunch.'], ['The', 'cat', 'is', 'going', 'to', 'be', 'forty', 'languages.'], ['You', 'really', "don't", 'need', 'to', 'do', 'that.'], ['I', 'know', 'that', 'you', 'love', 'Tom.'], ["I'm", 'unhappy.'], ['Tom', 'comes', 'from', 'a', 'small', 'town.'], ['What', 'does', 'the', 'door', 'say?'], ['Tom', 'asked', 'Mary', 'to', 'come', 'here.'], ['Her', 'death', 'was', 'a', 'hit.'], ['The', 'baby', 'has', 'been', 'a', 'long', 'time.'], ['I', "can't", 'believe', 'I', 'really', 'said', 'that.'], ["Don't", 'make', 'me', 'ask', 'you.'], ['Please', 'give', 'me', 'a', 'hug.'], ['Look', 'out', 'of', 'the', 'street.'], ["I'm", 'good', 'aware', 'of', 'that.'], ['It', 'might', 'be', 'a', 'gold', 'test', 'when', 'he', 'would', 'get', 'a', 'day.'], ['I', 'think', 'why', 'Tom', 'is', 'why', "I'm", 'not', 'here.'], ['She', 'has', 'been', 'busy', 'yesterday.'], ['Both', 'of', 'us', 'were', 'going', 'to', 'meet', 'again.'], ['I', 'have', 'no', 'particular', 'to', 'tell', 'that', 'situation.'], ['I', "don't", 'believe', 'in', 'miracles.'], ['Do', 'you', 'have', 'plans', 'for', 'dinner?'], ['I', 'was', 'very', 'tired', 'last', 'night.'], ['You', "can't", 'do', 'this', 'only', 'one', 'here', 'every', 'child', 'works.'], ['No', 'matter', 'what', 'I', 'did', 'my', 'best.'], ['I', 'can', 'try.'], ['You', 'have', 'a', 'good', 'lawyer.'], ['My', 'temperature', 'has', 'taken', 'up', 'of', 'mankind.'], ['Tom', 'called', 'Mary', 'and', 'Mary', 'called', 'into', 'the', 'bus', 'room.'], ['I', "don't", 'know', 'you.'], ['I', "didn't", 'think', "we'd", 'be', 'able', 'to', 'help', 'it.'], ['I', 'think', "that's", 'the', 'best', 'plan.'], ['She', 'is', 'not', 'used', 'to', 'jazz', 'themselves.'], ['It', 'was', 'five', 'minutes', 'to', 'sleep.'], ['Did', 'you', 'wash', 'your', 'hands', 'on', 'your', 'hands?'], ['I', 'appreciate', 'all', 'your', 'help.'], ['Tom', 'must', 'be', 'wrong.'], ['I', 'had', 'no', 'idea', 'you', 'understood', 'that', 'if', 'you', 'speak', 'so', 'well.'], ["That's", 'the', 'perfect', 'season', 'here.'], ['You', 'must', 'go', 'by', 'early.'], ['How', 'do', 'you', 'understand?'], ['Do', 'you', 'believe', 'in', 'the', 'toilet?'], ['I', 'want', 'you', 'to', 'be', 'quiet.'], ['Her', 'never', 'had', 'no', 'sense', 'to', 'me.'], ['Beautiful', 'me,', "isn't", 'it?'], ['Her', 'hobby', 'is', 'filled', 'with', 'flowers.'], ['I', 'appreciate', 'your', 'company.'], ['Tom', 'is', 'wearing', 'a', 'door', "doesn't", 'he?'], ['Tom', 'has', 'a', 'chair.'], ['I', 'go', 'to', 'the', 'beach', 'every', 'day.'], ['I', 'need', 'a', 'partner.'], ["I'm", 'wearing', 'the', 'computer.'], ['This', 'will', 'be', 'a', 'great', 'time', 'from', 'the', 'office', 'from', 'the', 'trip?'], ['Can', 'I', 'stop', 'telling', 'me', 'what', 'I', 'mean?'], ['Do', 'you', 'have', 'any', 'new', 'one?'], ['I', 'hurried', 'and', 'missed', 'the', 'bus.'], ['Can', 'you', 'spell', 'your', 'dog', 'last', 'night?'], ['Take', 'to', 'pay', 'taxes.'], ['I', 'was', 'in', 'the', 'train.'], ['The', 'number', 'of', 'fish', 'in', 'the', 'world', 'would', 'be', 'disgusting.'], ["I'm", 'sorry.', 'I', "didn't", 'mean', 'to', 'hurt', 'you.'], ['My', 'father', 'gave', 'me', 'a', 'healthy', 'meal', 'for', 'lunch.'], ['Do', 'you', 'feel', 'like', 'eating?'], ['Your', 'plan', 'worked.'], ['Please', "don't", 'give', 'me', 'my', 'advice.'], ['I', "can't", 'stand', 'you.'], ['He', 'went', 'back', 'to', 'his', 'parents.'], ['May', 'I', 'see', 'your', 'passport?'], ['I', 'borrowed', 'it.'], ['This', 'is', 'the', 'newspaper', 'newspaper?'], ['I', 'saved', 'you.'], ['How', 'big', 'is', 'the', 'big', 'point.'], ['Why', 'are', 'you', 'jealous', 'of', 'me?'], ['The', 'two', 'were', 'two', 'pieces', 'were', 'two', 'together.'], ['He', 'was', 'always', 'at', 'that', 'time.'], ['I', 'never', 'drink', 'anything', 'that', 'if', 'it', 'would', 'do.'], ["You've", 'got', 'your', 'coffee.'], ["He's", 'innocent.'], ['He', 'ran', 'as', 'fast', 'as', 'he', 'could.'], ['He', 'wants', 'you', 'to', 'come', 'home.'], ['Everyone', 'was', 'crying.'], ["I'll", 'give', 'you', 'what', 'you', 'want.'], ["I'm", 'looking', 'for', 'you.'], ["That's", 'very', 'kind', 'of', 'you.'], ['Tom', "didn't", 'do', 'the', 'same', 'thing', 'as', 'Mary', 'did.'], ['Tom', 'likes', 'rats.'], ['These', 'people', 'are', 'looking', 'for', 'two', 'water.'], ['I', "don't", 'have', 'my', 'purse.'], ['I', 'found', 'this', 'under', 'your', 'bed.'], ["Don't", 'be', 'upset.'], ['They', 'lost', 'again.'], ['A', 'job', 'is', 'not', 'as', 'easy', 'as', 'it', 'is', 'necessary.'], ['The', 'milk', 'stopped.'], ['Several', 'people', 'have', 'already', 'tried.'], ['The', 'matter', 'of', 'your', 'need', 'help.'], ['I', 'was', 'going', 'to', 'go', 'there.'], ['What', 'an', 'idiot!'], ['I', 'know', 'you', 'and', 'Tom', 'are', 'happy.'], ['She', 'was', 'walking', 'in', 'the', 'head', 'for', 'a', 'walk', 'for', 'the', 'baby.'], ['Tom', 'gets', 'up', 'early', 'early', 'in', 'the', 'morning.'], ["I'm", 'sure', 'if', 'it', 'takes', 'to', 'be', 'a', 'lot.'], ['We', 'miss', 'you', 'very', 'much.'], ['I', 'have', 'a', 'tight', 'schedule.'], ["They're", 'all', 'hungry.'], ['I', 'went', 'to', 'see', 'my', 'parents.'], ['She', 'writes', 'every', 'time', 'she', 'tried.'], ['Tom', 'slept', 'on', 'the', 'weather.'], ['That', 'door', 'was', 'not', 'unlocked.'], ['My', 'food', 'is', 'eating', 'eating', 'food.'], ["It's", 'a', 'tower.'], ['My', 'wife', 'is', 'not', 'fast', 'because', 'of', 'it.'], ['Tom', 'is', 'watching', 'me.'], ["I'd", 'like', 'to', 'keep', 'some', 'countries.'], ['Sleep', 'is', 'the', 'most', 'interesting', 'is.'], ['My', 'sister', 'takes', 'a', 'shower', 'every', 'morning.'], ['What', 'is', 'it', 'you', 'like', 'him?'], ['I', 'am', 'afraid', 'of', 'spiders.'], ['We', 'intend', 'to', 'do', 'better', 'next', 'year.'], ['Everyone', 'has', 'a', 'bicycle.'], ['I', 'had', 'to', 'have', 'been', 'a', 'speech', 'in', 'advance.'], ['I', 'told', 'Tom', 'why', 'I', 'wanted', 'to', 'do', 'that.'], ['I', 'studied', 'for', 'dinner.'], ['I', 'said', 'that', 'not', 'to', 'do', 'that.'], ['I', 'had', 'my', 'reasons.'], ['She', 'has', 'never', 'been', 'to', 'love', 'me.'], ['"Who\'s', 'in', 'your', 'age?'], ['Why', 'do', 'you', 'want', 'to', 'know?'], ['We', 'still', 'have', 'a', 'little', 'time.'], ["Let's", 'see', 'how', 'you', 'get', 'out', 'of', 'your', 'own.'], ['I', 'have', 'the', 'habit', 'of', 'ten.'], ['I', 'ran', 'in', 'a', 'place', 'in', 'his', 'place.'], ['Tom', 'came', 'at', 'me', 'yesterday', 'afternoon.'], ['He', 'borrowed', 'two', 'books.'], ['Oh,', "let's", 'know.'], ['I', "can't", 'believe', 'that', 'you', 'loves', 'this.'], ['As', 'soon', 'as', 'I', 'can', 'open', 'the', 'chance,', "I'll", 'call', 'your', 'broken', 'fence.'], ['No', 'one', 'is', 'like', 'you.'], ['Tom', "doesn't", 'understand', 'how', 'to', 'win.'], ['Maybe', 'you', 'have', 'the', 'date', 'of', 'the', 'team.'], ['He', "doesn't", 'even', 'remember', 'what', 'happened', 'last', 'night.'], ['Tom', "isn't", 'alone.'], ['A', 'cold', 'child', 'will', 'ten', 'ten', 'dollars.'], ['Why', "shouldn't", 'I', 'do', 'this?'], ["You've", 'done', 'your', 'handkerchief.'], ['The', 'days', 'were', 'going', 'to', 'get', 'poison.'], ['The', 'news', 'died', 'in', 'England', 'yesterday.'], ["That's", 'really', 'fun.'], ["You're", 'all', 'for', 'me.'], ['How', 'do', 'you', 'want', 'to', 'handle', 'this?'], ['Maybe', 'you', 'should', 'think', 'about', 'it.'], ['I', "can't", 'believe', 'that', 'really', 'you.'], ['I', 'hope', 'you', "won't", 'be', 'disappointed.'], ['Are', 'you', 'a', 'maniac?'], ['Are', 'you', 'up?'], ['Why', "don't", 'you', 'take', 'a', 'drink?'], ['I', "don't", 'think', "that's", 'all', 'that', 'story.'], ['A', 'apple', 'apple', 'tree', 'down.'], ['Who', 'do', 'you', 'want', 'to', 'speak', 'with?'], ['One', 'of', 'my', 'teeth', 'are', 'missing.'], ["Don't", 'go', 'out', 'of', 'the', 'way.'], ["You're", 'a', 'man', 'now.'], ['He', 'did', 'not', 'have', 'enough', 'but', 'I', 'am.'], ['Since', 'I', "didn't", 'have', 'told', 'you', 'so', 'I', "didn't", 'mind.'], ['Let', 'Tom', 'tell', 'Tom', 'how', 'you', 'believe', 'Mary', 'and', 'John.'], ["You're", 'not', 'very', 'organized,', 'are', 'you?'], ['Tom', 'had', 'no', 'idea', 'how', 'much', 'Mary', 'was', 'rich.'], ["You're", 'very', 'understanding.'], ['I', "can't", 'read', 'these', 'boxes'], ["You're", 'supposed', 'to', 'help', 'your', 'friends', 'when', "you're", 'in', 'trouble.'], ['Tom', 'heard', 'everything', 'we', 'have.'], ['Be', 'careful', 'on', 'the', 'road.'], ['Which', 'one', 'of', 'you', 'arrived', 'here', 'the', 'first', 'step.'], ["I'll", 'come', 'to', 'visit', 'you', 'tomorrow', 'at', 'home.'], ["I'm", 'not', 'afraid', 'of', 'death.'], ["I'm", 'in', 'the', 'rain.'], ['Tom', 'seems', 'to', 'be', 'rude.'], ['I', 'like', 'your', 'painting.'], ['Tell', 'me', 'that', "I'm", 'not', 'dreaming.'], ['Generally', 'speaking,', 'animals', 'are', 'beautiful.'], ["I'll", 'come', 'after', 'you', 'after', 'school.'], ["I'm", 'in', 'my', 'own', 'way', 'in', 'my', 'own.'], ['Is', 'that', 'the', 'dictionary', 'you', "haven't", 'done?'], ['He', 'bought', 'him', 'some', 'times.'], ["It's", 'no', 'use', 'doing', 'that.'], ['I', 'think', "I'd", 'like', 'to', 'be', 'a', 'student.'], ['That', "wasn't", 'just', 'that.'], ['My', 'mother', 'has', 'been', 'sick', 'for', 'ten', 'years.'], ['Maybe', "you're", 'good', 'at', 'me.'], ['He', 'died', 'ten', 'years', 'ago.'], ['He', 'fell', 'in', 'the', 'shower.'], ['Come', 'on,', 'do', 'is', 'still', 'missing.'], ['I', 'had', 'a', 'lot', 'of', 'things', 'to', 'play', 'tennis', 'at', 'the', 'idea.'], ['I', 'must', 'go', 'alone.'], ["It's", 'never', 'too', 'late', 'for', 'me', 'to', 'get', 'used', 'to', 'you.'], ['He', 'must', 'be', 'tired.'], ['They', 'entered', 'the', 'cream', 'in', 'a', 'puddle', 'and', 'put', 'it', 'into', 'a', 'hot', 'cup.'], ['I', 'feel', 'helpless.'], ['Her', 'car', 'broke', 'down', 'on', 'the', 'way.'], ['Just', 'let', 'your', 'help.'], ['There', 'are', 'three', 'hundred', 'game.'], ['I', 'forget', 'to', 'leave', 'the', 'door', 'when', 'we', 'leave.'], ['This', 'number', 'is', 'two', 'thousand', 'people.'], ['I', 'told', 'her', 'a', 'glass', 'of', 'water', 'and', 'a', 'glass', 'of', 'water.'], ['That', "couldn't", 'bother', 'you.'], ['I', "don't", 'know', 'what', 'I', 'am', 'in', 'this', 'situation.'], ['Have', 'you', 'ever', 'seen', 'a', 'country', 'at', 'his', 'pocket.'], ['Tom', "didn't", 'mean', 'that', 'there', 'would', 'he?'], ['He', "didn't", 'seem', 'to', 'drink', 'all', 'night.'], ['Can', 'I', 'talk', 'to', 'you', 'for', 'a', 'second?'], ['Is', 'the', 'cool', 'you', 'are', 'full.'], ["You're", 'grumpy.'], ['What', 'makes', 'you', 'trying', 'to', 'try', 'doing', 'that?'], ["I've", 'left', 'to', 'go', 'there.'], ['What', 'does', 'that', 'ship', 'exactly?'], ['A', 'good', "night's", 'can', 'make', 'you', 'a', 'good', "night's", 'sleep.'], ['How', 'much', 'is', 'this', 'number?'], ['I', "didn't", 'do', 'the', 'time', 'to', 'do', 'that.'], ['Tom', "doesn't", 'have', 'anything', 'to', 'lose.'], ['Can', 'it', 'see', 'what', 'happens.'], ['You', 'really', 'seem', 'to', 'worry', 'about', 'that.'], ['I', "won't", 'tell', 'you.'], ['I', 'hope', 'the', 'entrance', 'bird', 'is', 'the', 'entrance', 'examination.'], ['Have', 'you', 'laugh.'], ['Open', 'your', 'eyes.'], ['He', 'wants', 'to', 'talk.'], ["Don't", 'ask', 'me', 'like', 'my', 'sister', 'like', 'that.'], ['Who', 'did', 'you', 'talk', 'with?'], ['His', 'crime', 'is', 'a', 'crime', 'to', 'the', 'bottom', 'of', 'a', 'month.'], ['I', 'hope', 'that', 'can', 'be', 'still', 'friends.'], ['Take', 'it', 'on.'], ['Can', 'I', 'have', 'a', 'one?'], ['This', "won't", 'work.'], ["Don't", 'let', 'it', 'look', 'up', 'in', 'this', 'room.'], ["What's", 'Tom', 'from', 'Tom?'], ['I', "couldn't", 'eat', 'more', 'than', 'a', 'thing.'], ['I', 'want', 'to', 'make', 'you', 'happy.'], ['Why', "don't", 'you', 'tell', 'me', 'how', 'you', 'think', 'it', 'happened?'], ['She', 'showed', 'her', 'face', 'to', 'danger.'], ['I', "didn't", 'know', 'that', 'I', 'had', 'to', 'go', 'to', 'college.'], ['It', 'made', 'the', 'job.'], ['My', 'grandfather', "doesn't", 'drink', 'without', 'a', 'cane.'], ['She', 'was', 'about', 'to', 'go', 'home.'], ['Tom', 'cut', 'the', 'top', 'of', 'the', 'state', 'above', 'the', 'light.'], ['You', 'gave', 'me', 'a', 'bad', 'way', 'of', 'me.'], ['You', "don't", 'even', 'know', 'who', 'they', 'are.'], ['Tom', 'claims', 'I', 'have', 'to', 'be', 'unreasonable.'], ["When's", 'dinner', 'served?'], ["That's", 'not', 'a', 'bad', 'thing.'], ['We', 'went', 'skiing', 'in', 'the', 'picnic.'], ['He', 'is', 'the', 'only', 'other', 'man', 'you', 'met', 'the', 'other', 'day.'], ['It', 'was', 'a', 'good', 'movie.'], ['I', 'gave', 'you', 'fair', 'warning.'], ['Stay', 'in', 'this', 'room.'], ["That's", 'not', 'what', 'I', 'think.'], ['Some', 'of', 'the', 'town', 'really', 'really', 'are', 'really', 'ugly.'], ['Tom', 'is', 'moving', 'to', 'me.'], ['Swimming', 'is', 'something', "you're", 'serious.'], ["Don't", 'push', 'my', 'daughter.'], ['Tom', 'was', 'right', 'after', 'all.'], ['You', 'should', 'always', 'wash', 'your', 'hands', 'before', 'meals.'], ["He's", 'not', 'in', 'love', 'with', 'us.'], ["I'm", 'proud', 'of', 'you.'], ['Tom', 'closed', 'his', 'eyes', 'again.'], ['I', 'hope', 'he', 'will', 'survive.'], ['Are', 'you', 'going', 'to', 'party?'], ['The', 'boy', 'made', 'a', 'paper', 'plane.'], ['Are', 'you', 'still', 'scared?'], ['God', 'sent', 'a', 'sign.'], ['I', 'want', 'to', 'know', 'where', 'they', 'are.'], ['Tom', 'is', 'a', 'big', 'prankster.'], ["You're", 'grounded.'], ['I', 'understand', 'what', "you're", 'saying.'], ['Put', 'yourself', 'comfortable.'], ['Eggs', 'are', 'in', 'the', 'United', 'States.'], ['He', 'took', 'advantage', 'of', 'his', 'glasses.'], ['I', 'love', 'this', 'store.'], ['He', 'has', 'three', 'thousand', 'yen', 'in', 'three', 'weeks.'], ['I', 'see', 'nothing', 'wrong.'], ['It', 'was', 'time', 'for', 'us', 'to', 'take', 'a', 'while.'], ['Be', 'polite', 'to', 'your', 'parents.'], ['They', 'have', 'some', 'answers.'], ['What', 'happened', 'to', 'your', 'car?'], ["Aren't", 'you', 'open', 'the', 'box?'], ['Bad', 'weather', 'prevented', 'the', 'weather', 'to', 'get', 'started.'], ['Tom', 'noticed', 'that', 'his', 'hands', "weren't", 'pleased.'], ["You're", 'very', 'understanding.'], ['Eat', 'as', 'many', 'people', 'as', 'you', 'like.'], ["I've", 'decided', 'to', 'go.'], ['Your', 'life', 'is', 'in', 'danger.'], ['She', 'lives', 'in', 'a', 'living', 'apartment.'], ["I'm", 'kind', 'of', 'people', 'who', 'have', 'who', 'needs', 'to', 'do', 'that.'], ['I', "can't", 'take', 'this', 'decision', 'to', 'you.'], ['I', 'think', 'I', 'know', 'where', 'Tom', 'is.'], ['I', "don't", 'know', 'what', 'you', 'will', 'do.'], ['If', 'you', 'answer', 'this,', 'Tom', "isn't", 'here.'], ['I', 'need', 'to', 'get', 'paid', 'for', 'practice.'], ["You're", 'very', 'good', 'right', 'right', 'now.'], ['I', 'think', "we're", 'going', 'to', 'go', 'there', 'by', 'now.'], ['If', 'you', 'want', 'to', 'come,', 'please.'], ['He', 'took', 'his', 'room', 'for', 'his', 'hand', 'for', 'his', 'success', 'to', 'his', 'hand.'], ["You're", 'quite', 'attractive.'], ['She', 'always', 'buys', 'from', 'having', 'a', 'bad', 'speaker.'], ['Almost', 'all', 'of', 'the', 'mayor.'], ['Did', 'you', 'sing?'], ["There's", 'a', 'desk.'], ['Take', 'a', 'change.'], ['No', 'matter', 'how', 'fast', 'you', 'could', 'hear', 'the', 'same', 'way.'], ['He', 'remained', 'three', 'minutes', 'in', 'front', 'of', 'school.'], ['He', 'left', 'two', 'sleep', 'night', 'in', 'front', 'of', 'TV.'], ['This', 'novel', 'is', 'good.'], ['We', 'are', 'very', 'hungry.'], ['Do', 'you', 'know', 'who', 'lives', 'in', 'this', 'house?'], ["I'm", 'going', 'to', 'the', 'doctor', 'after', 'my', 'office.'], ['I', 'think', 'we', 'should', 'go.'], ['He', 'devoted', 'his', 'son', 'to', 'his', 'own', 'place.'], ['The', 'stars', 'were', 'out', 'of', 'breath.'], ['They', 'built', 'the', 'stone', 'out', 'of', 'doctors.'], ["Don't", 'forget', 'to', 'see', 'me', 'tomorrow', 'morning.'], ['The', 'sky', 'was', 'unavoidable.'], ['It', 'was', 'time', 'for', 'lunch.'], ['I', 'was', 'really', 'surprised', 'by', 'news.'], ["Don't", 'talk', 'to', 'that.'], ['What', 'year', 'were', 'you', 'born?'], ['Is', 'this', 'fish', 'still', 'alive?'], ["I'm", 'pleased', 'with', "Mary's", 'performance.'], ['Has', 'the', 'robbery', 'already', 'come?'], ['Two', 'sugar,', 'please.'], ['They', 'are', 'jealous', 'of', 'us.'], ['Please', 'smile.'], ['I', "don't", 'need', 'your', 'help', 'anymore.'], ['We', 'need', 'to', 'buy', 'this', 'room', 'for', 'the', 'best', 'to', 'finish', 'the', 'problem.'], ["I've", 'never', 'been', 'to', 'love', 'with', 'Tom.'], ['He', 'is', 'a', 'poet.'], ['I', "don't", 'want', 'anymore.'], ['I', 'want', 'you', 'to', 'come', 'over', 'by', 'seven.'], ['You', "don't", 'go', 'without', 'any', 'without', 'you.'], ['I', 'feel', 'like', 'your', 'pain.'], ["That's", 'what', 'I', "don't", 'understand.'], ['He', 'gave', 'a', 'brief', 'problem.'], ["I'm", 'here', 'to', 'talk', 'with', 'Tom.'], ['You', 'have', 'to', 'do', 'this', 'alone.'], ['This', 'is', 'the', 'best', 'city', "isn't", 'it?'], ['When', 'it', 'is', 'likely', 'to', 'sign', 'two', 'numbers', 'and', 'two', 'hydrogen', 'together.'], ["I've", 'done', 'that', 'all', 'my', 'life.'], ['I', 'fell', 'in', 'the', 'shower.'], ['I', "can't", 'really', 'remember.'], ['Return', 'to', 'your', 'right', 'now.'], ['If', 'I', 'were', 'in', 'school,', 'I', 'would', 'have', 'bought', 'me.'], ['The', 'taxi', 'made', 'up', 'the', 'air', 'and', 'set', 'up', 'the', 'air.'], ['I', 'will', 'not', 'be', 'at', 'this', 'place.'], ["Didn't", 'you', 'really', 'swim?'], ['One', 'of', 'the', 'coffee', 'products', 'in', 'the', 'coffee', 'is', 'higher', 'for', 'the', 'coffee', 'level', 'for', 'the', 'coffee', 'planet.'], ['That', 'guy', "doesn't", 'fit', 'me.'], ['Tom', 'is', 'a', 'good', 'student,'], ['I', 'know', 'these', 'students.'], ['Tom', 'is', 'a', 'lawyer.'], ['The', 'captain', 'threw', 'he', 'left', 'the', 'uncle', 'for', 'almost', 'a', 'day.'], ['Are', 'you', 'going', 'to', 'tomorrow', 'tomorrow?'], ['Take', 'up', 'the', 'garden.'], ['I', 'have', 'a', 'few', 'news', 'for', 'you.'], ['This', 'is', 'mine.'], ['Tom', "didn't", 'tell', 'me', 'this.'], ['I', 'was', 'stung', 'by', 'a', 'bee.'], ['He', 'is', 'a', 'very', 'intelligent', 'guy.'], ['None', 'of', 'these', 'people', 'is', 'enough.'], ['He', 'attended', 'his', 'enemy.'], ['She', 'seems', 'to', 'be', 'sick.'], ['I', 'already', 'wanted', 'to', 'pay', 'for', 'the', 'job.'], ['This', 'room', 'is', 'very', 'hot.'], ['The', 'boss', 'addressed', 'me', 'from', 'my', 'childhood.'], ['I', "can't", 'believe', 'in', 'person.'], ['Do', 'you', 'know', 'how', "we're", 'going', 'on?'], ['My', 'idea', 'is', 'quite', 'different', 'from', 'yours.'], ['We', 'will', 'have', 'to', 'leave', 'next', 'week.'], ['He', 'forgot', 'to', 'lock', 'the', 'door.'], ['I', "don't", 'want', 'you', 'to', 'go', 'there', 'by', 'yourself.'], ["I'm", 'at', 'work.'], ['I', 'have', 'plenty', 'of', 'news.'], ["Let's", 'meet', 'you.'], ['I', 'have', 'a', 'old', 'car.'], ['He', 'must', 'be', 'crazy', 'to', 'say', 'such', 'a', 'thing.'], ['This', 'happens', 'every', 'day.'], ['His', 'book', 'is', 'very', 'interesting.'], ['I', 'was', 'as', 'surprised', 'as', 'you.'], ['Would', 'you', 'like', 'to', 'hear', 'my', 'new', 'song?'], ["I'll", 'try', 'to', 'help', 'you', 'entirely', 'up', 'to', 'this', 'kind', 'of', 'personal', 'water.'], ['She', 'suggested', 'the', 'first', 'time', 'for', 'a', 'student.'], ['Tom', 'often', 'goes', 'shopping', 'alone.'], ['You', "don't", 'look', 'so', 'busy.'], ['Are', 'you', 'sure', "that's", 'necessary?'], ['The', 'museum', 'was', 'the', 'island', 'of', 'the', 'island', 'in', 'the', 'fifth', 'century.'], ['How', 'was', 'the', 'beach?'], ['I', 'really', 'did', 'last', 'night.'], ['Why', 'did', 'you', 'call', 'me?'], ['Kyoto', 'is', 'hard', 'to', 'master', 'in', 'Canada', 'and', 'Africa.'], ['I', "don't", 'know', 'anything', 'about', 'you.'], ['Why', 'are', 'you', 'always', 'so', 'busy?'], ['He', 'will', 'play', 'tennis', 'tomorrow.'], ['Tom', 'refused', 'to', 'stop', 'his', 'name.'], ["Don't", 'worry.', "There's", 'wrong', 'with', 'you.'], ['Am', 'I', 'really', 'friends?'], ["I'm", 'looking', 'for', 'a', 'wallet.'], ['We', 'have', 'to', 'do', 'this', 'this', 'week.'], ["It's", 'getting', 'darker', 'and', 'colder.'], ["We'll", 'soon', 'be', 'able', 'to', 'park', 'the', 'morning', 'of', 'the', 'floor.'], ['Do', 'you', 'want', 'this', 'or', 'not?'], ["You'll", 'be', 'able', 'to', 'swim.'], ['Make', 'a', 'pleasant', 'choice.'], ['In', 'all', 'those', 'is', 'my', 'ability.'], ["We're", 'not', 'prisoners.'], ['I', 'respect', 'your', 'talent.'], ['He', 'was', 'more', 'surprised', 'than', 'I', 'expected.'], ["There's", 'something', 'wrong', 'with', 'this', 'television.'], ['How', 'old', 'were', 'you', 'when', 'you', 'did', 'this?'], ["That's", 'my', 'friend.'], ['The', 'world', 'is', 'there', 'that', 'it', 'will', 'be', 'a', 'busy', 'day.'], ['I', 'thought', 'I', 'could', 'sleep', 'all', 'day.'], ['It', 'was', 'a', 'chance', 'to', 'meet', 'him', 'off.'], ['I', 'just', "can't", 'help', 'you', 'right', 'now.'], ['Tom', 'is', 'much', 'more', 'than', 'you', 'anymore.'], ['The', 'soup', 'is', 'too', 'salty.'], ['I', 'have', 'to', 'warn', 'my', 'mom.'], ['You', 'need', 'to', 'be', 'prepared.'], ['You', 'have', 'to', 'go', 'without', 'me', 'without', 'me.'], ['We', 'have', 'to', 'understand.'], ['It', 'should', 'be', 'fun', 'and', 'most', 'of', 'the', 'day.'], ['Tom', 'sat', 'down', 'on', 'the', 'third', 'quarter.', 'and', 'on', 'the', 'third', 'quarter.'], ['I', "don't", 'have', 'any', 'promises.'], ['It', 'would', 'be', 'nice', 'if', 'we', 'can', 'manage', 'to', 'do', 'that.'], ['"Why', "don't", 'you', 'want', 'me', 'to', 'grow', 'up,', 'I', "don't", 'want', 'to.'], ['We', 'will', 'hurry.'], ['It', 'was', 'very', 'funny.'], ['A', 'good', 'woman', 'is', 'a', 'great', 'watch', 'as', 'a', 'woman.'], ['We', 'found', 'it.'], ['He', 'said', 'he', "won't", 'come.'], ["You'd", 'better', 'handle', 'it.'], ['If', 'you', "don't", 'want', 'to', 'make', 'sure', 'you', "don't", 'have', 'a', 'look.'], ['You', "can't", 'believe', 'it.'], ['Money', "doesn't", 'make', 'you', 'happy.'], ['tall', 'is', 'a', 'great', 'number', 'of', 'people.'], ['I', 'need', 'to', 'buy', 'a', 'new', 'one.'], ['Tom', 'asked', 'Mary', 'to', 'cut', 'the', 'police.'], ['Does', 'this', 'seem', 'yours?'], ["I'd", 'like', 'to', 'buy', 'a', 'few', 'hours.'], ['Tom', 'tried', 'to', 'hide', 'his', 'pain.'], ['I', 'just', 'wanted', 'to', 'tell', 'you', 'badly.'], ['"What', 'will', 'be', 'worth', 'going', 'out', 'every', 'hard', 'worth', 'hearing.'], ['I', "can't", 'do', 'this', 'alone.'], ['Did', 'I', 'not', 'mention', 'that?'], ['I', 'will', 'get', 'up', 'at', 'the', 'driving', 'for', 'my', 'lecture.'], ['I', 'thought', 'Tom', 'was', 'sick.'], ['Tom', 'loves', 'his', 'eggs.'], ['In', 'the', 'fact', 'that', 'you', 'are', 'right.'], ['His', 'dress', 'was', 'on', 'the', 'new', 'dress.'], ['May', 'I', 'go', 'to', 'the', 'house?'], ['I', 'want', 'to', 'get', 'married.'], ['We', 'almost', 'finished', 'today.'], ['There', 'are', 'a', 'lot', 'of', 'people', 'not', 'asked', 'people', 'to', 'give', 'up', 'with', 'our', 'people', 'that', 'Tom', 'needs', 'to', 'do.'], ["That's", 'not', 'the', 'point.'], ['We', 'have', 'plenty', 'of', 'people', 'dream.'], ['I', 'pulled', 'the', 'map', 'on', 'the', 'desk.'], ['How', 'come', "I've", 'never', 'seen', 'you', 'here', 'before?'], ['That', 'will', 'be', 'better', 'next', 'time.'], ['Come', 'on,', 'wake', 'up.'], ['I', 'want', 'to', 'watch', 'my', 'legs.'], ['How', 'much', 'can', 'the', 'average', 'class', 'can', 'we?'], ['It', 'seems', 'I', 'was', 'lost.'], ['You', 'seem', 'busy.'], ["Don't", 'be', 'unhappy.'], ['What', 'do', 'you', 'remember?'], ['This', 'meat', 'is', 'worthless.'], ['I', 'think', "he's", 'a', 'doctor.'], ['Tom', "didn't", 'know', 'what', 'else', 'to', 'say.'], ['He', 'gets', 'up', 'all', 'night.'], ['Are', 'you', 'sure', "we've", 'never', 'met', 'before?'], ['This', 'is', 'a', 'bridge.'], ['Have', 'you', 'seen', 'my', 'camera?'], ['My', "computer's", 'still', 'is', 'still', 'yet.'], ['Why', 'do', 'we', 'need', 'that?'], ["I'm", 'glad', 'I', 'never', 'been', 'happy', 'here.'], ['How', 'many', 'people', 'do', 'you', 'need?'], ["I'd", 'better', 'not', 'talk', 'about', 'that', 'now.'], ['The', 'bullet', 'is', 'worth', 'a', 'ball.'], ["I'm", 'sorry,', 'but', 'I', 'already', 'have', 'a', 'boyfriend.'], ["Don't", 'be', 'serious.'], ['Atomic', 'children', 'can', 'be', 'sure', 'to', 'be', 'monitored.'], ['She', 'waited', 'for', 'her', 'family', 'for', 'twenty', 'years.'], ['He', 'tried', 'to', 'help', 'me', 'do', 'it.'], ['Tom', 'refused', 'to', 'keep', 'working.'], ['He', 'likes', 'baseball', 'baseball.'], ["I'll", 'need', 'you', 'to', 'be', 'here.'], ['This', 'watch', 'is', 'in', 'Japan.'], ['Everything', 'is', 'so', 'fast.'], ['Reading', 'person', "isn't", 'the', 'most', 'person', 'in', 'the', 'world.'], ['I', 'had', 'no', 'sooner', 'be', 'here', 'again.'], ["I'm", 'sorry.', "I'm", 'not', 'here.'], ["I've", 'always', 'surprised', 'to', 'hear', 'your', 'son', 'like', 'you.'], ["You're", 'new', 'here,', "aren't", 'you?'], ['He', 'went', 'home', 'yesterday.'], ['Is', 'the', 'time', 'you', 'sitting', 'at', 'least', 'any', 'other', 'way?'], ['Who', 'is', 'this?'], ['Where', 'is', 'my', 'slippers?'], ['I', 'have', 'no', 'idea', 'what', 'that', 'happened.'], ["Don't", 'waste', 'my', 'bubble.'], ['You', 'do', 'the', 'cookies.'], ["Let's", 'hit', 'the', 'road.'], ['"How', 'old', 'are', 'you?"', '"Sixteen', 'years', 'old".'], ['I', 'just', 'left', 'you', 'at', 'home.'], ['I', 'hope', 'you', 'have', 'to', 'wait', 'for', 'dinner.'], ['Please', 'book', 'the', 'book', 'please.'], ['How', 'many', 'pictures', 'did', 'Tom', 'take?'], ['You', 'were', 'doing', 'that.'], ['Tom', 'became', 'a', 'professional', 'photographer.'], ["That's", 'what', 'we', 'were', 'told.'], ['A', 'car', 'has', 'a', 'car.'], ['Tom', "didn't", 'know', 'what', 'to', 'say', 'to', 'Mary.'], ['Do', 'you', 'understand', 'what', "I'm", 'saying?'], ['She', 'was', 'entirely', 'up.'], ['Every', 'year,', 'people', 'used', 'to', 'earn', 'many', 'people.'], ['Do', 'you', 'know', 'anyone', 'here?'], ['I', 'know', 'what', 'they', 'are', 'for.'], ['"How', 'many', 'people', 'will', 'teach', 'you', 'the', 'teacher', 'that', 'he', 'gave', 'him', 'to', 'master', 'songs.'], ['You', 'were', 'there,', "weren't", 'you?'], ['Take', 'off', 'your', 'hat.'], ['I', 'want', 'to', 'buy', 'a', 'new', 'brother.'], ['How', 'do', 'you', 'concentrate?'], ['He', 'may', 'not', 'have', 'the', 'case', 'in', 'his', 'place.'], ["How's", 'the', 'water?'], ['I', 'just', 'got', 'married.'], ['She', 'listens', 'to', 'the', 'stairs.'], ['I', 'found', 'it', 'in', 'the', 'attic.'], ["I'm", 'sure', 'nothing', 'in', 'the', 'rest', 'of', 'the', 'four', 'and', 'the', 'rest', 'of', 'the', 'students.'], ['I', "didn't", 'say', 'you', 'were', 'crazy.'], ['This', 'meat', 'was', 'not', 'necessary', 'in', 'tail.'], ['We', 'all', 'change.'], ['I', 'have', 'no', 'job.'], ['She', 'was', 'busy', 'with', 'the', 'housework.'], ['And', 'do', 'you', 'think', 'about', 'what', 'will', 'you', 'learn', 'to', 'write', 'to', 'foreign', 'language?'], ['They', 'shouted', 'for', 'help.'], ['I', 'refused', 'to', 'believe', 'it.'], ['She', 'did', 'not', 'believe', 'it', 'there.'], ["I'll", 'take', 'anything.'], ["I'd", 'like', 'to', 'study', 'my', 'English.'], ['Loosen', 'it', 'out!'], ['I', "don't", 'know', 'what', 'you', 'are.'], ['We', 'all', 'agree.'], ['I', 'got', 'it', 'for', 'you.'], ['Is', 'that', 'really', 'what', 'you', 'want?'], ['I', 'promise', 'you', "won't", 'be', 'disappointed.'], ['I', "don't", 'want', 'you', 'to', 'be', 'upset.'], ['She', 'died.'], ['The', 'ship', 'was', 'in', 'the', 'face', 'of', 'the', 'fog.'], ['Tom', "didn't", 'attend', 'the', 'meeting', 'meeting', 'the', 'meeting.'], ['What', 'are', 'you', 'talking', 'about?'], ['He', 'had', 'not', 'seen', 'in', 'this', 'room.'], ['Tom', 'made', 'up', 'early', 'this', 'morning.'], ["Don't", 'tell', 'Tom.'], ['Do', 'you', 'have', 'what', 'you', 'were', 'in', 'the', 'top', 'of', 'the', 'trip?'], ['Do', 'you', 'have', 'enough', 'money?'], ['The', 'police', 'are', 'looking', 'for', 'the', 'accident.'], ['Look', 'at', 'that', 'dog.'], ['I', "haven't", 'heard', 'from', 'since', 'he', 'graduated', 'from', 'since.'], ['He', 'ordered', 'us', 'taxes.'], ["I'm", 'looking', 'forward', 'to', 'here.'], ["I'm", 'not', 'afraid', 'of', 'death.'], ['What', 'a', 'nice', 'dress!'], ["I'm", 'very', 'tired.'], ['These', 'toys', 'are', 'yellow.'], ['Did', 'you', 'enjoy', 'the', 'show?'], ["You'll", 'feel', 'a', 'bath', 'after', 'a', 'bath.'], ["I'm", 'here', 'to', 'help', 'you', 'for', 'your', 'help.'], ['We', 'almost', "didn't", 'like', 'the', 'kitchen.'], ["Don't", 'try', 'it', 'more', 'people', 'who', 'is', 'going', 'on.'], ['I', 'know', 'no', 'one', 'of', 'her.'], ["That's", 'what', 'you', 'mean.'], ['Do', 'you', 'have', 'any', 'risks?'], ["I'm", 'the', 'same', 'height', 'as', 'Tom', 'is.'], ["You're", 'the', 'best', 'person', 'to', 'tell', 'the', 'second', 'person', 'to', 'me.'], ['Tom', 'will', 'come', 'and', 'the', 'next', 'day', 'next', 'weekend.'], ['I', "can't", 'believe', 'what', 'to', 'say.'], ['He', 'is', 'an', 'artist.'], ["You'll", 'come', 'here', "isn't", 'it?'], ["That's", 'adorable.'], ['He', 'is', 'likely', 'that', 'he', 'needs', 'to', 'be', 'the', 'job.'], ['I', 'feel', 'bad', 'for', 'you.'], ['That', 'way', 'he', 'says', 'he', 'is', 'going', 'to', 'be', 'able', 'to', 'try', 'the', 'way', 'it', 'needs', 'on.'], ['Tom', 'likes', 'to', 'learn', 'so', 'much.'], ['Tom', 'ironed', 'his', 'glasses.'], ["They're", 'working.'], ['I', 'left', 'the', 'party', 'early.'], ['She', 'borrowed', 'her', 'sister', 'for', 'her', 'sister.'], ["That's", 'the', 'place', 'I', 'was', 'a', 'bit', 'embarrassed.'], ['I', 'want', 'you', 'to', 'go', 'upstairs.'], ['Do', 'you', 'really', 'like', 'that?'], ['She', 'has', 'anything', 'in', 'everything.'], ['They', 'waved', 'the', 'door', 'and', 'saw', 'him', 'not', 'to', 'go', 'to', 'the', 'gate.'], ['Is', 'there', 'someone', 'someone', 'who', 'someone', 'here', 'in', 'Australia?'], ['There', 'is', 'a', 'lot', 'of', 'town', 'in', 'the', 'city.'], ['I', 'study', 'every', 'one', 'of', 'each', 'other.'], ['We', 'just', 'have', 'to', 'get', 'out', 'of', 'here.'], ['You', 'should', 'try', 'doing', 'that.'], ['I', 'know', "you're", 'smart.'], ['I', 'speak', 'French', 'at', 'least', 'every', 'day.'], ["I'll", 'tell', 'Tom', 'you', 'called.'], ["I'll", 'get', 'a', 'cold.'], ['I', 'feel', 'really', 'betrayed.'], ['Can', 'I', 'go', 'to', 'bed', 'now?'], ['Tom', 'said', 'he', 'saw', 'a', 'ghost.'], ["It's", 'all', 'to', 'know', 'anything', 'from', 'his', 'own.'], ['She', 'whispered', 'it', 'all', 'but', 'he', 'puts', 'him', 'to', 'play', 'with', 'each', 'other.'], ['Let', 'me', 'give', 'it', 'to', 'me', 'that', 'I', "can't."], ['Why', 'did', 'you', 'buy', 'the', 'flowers?'], ['I', 'never', 'told', 'what', 'time', 'I', 'expected', 'to', 'buy.'], ['My', 'house', 'is', 'approaching', 'the', 'town', 'for', 'a', 'day.'], ['The', 'bread', 'was', 'delicious.'], ['Am', 'I', 'in', 'the', 'dark?'], ['I', "haven't", 'seen', 'you', 'around', 'before.'], ['Do', 'you', 'understand', "what's", 'going', 'on?'], ['Be', 'careful!'], ['Is', 'Tom', 'a', 'violin?'], ['Show', 'me', 'the', 'ability', 'to', 'do', 'it.'], ['Who', 'believes', 'this?'], ['They', 'play', 'tennis', 'chocolate.'], ['Yesterday', 'I', 'had', 'a', 'letter', 'written', 'in', 'English.'], ["I'm", 'sure', 'he', 'will', 'succeed.'], ['Which', 'one', 'of', 'Tom', 'will', 'buy', 'me?'], ['I', 'thought', 'I', 'heard', 'you.'], ['You', 'look', 'like', 'a', 'lawyer.'], ['Most', 'of', 'the', 'shops', 'are', 'about', 'to', 'vote.'], ['Are', 'you', 'ambitious?'], ['Stay', 'positive.'], ['There', 'were', 'no', 'problems.'], ['You', "can't", 'count', 'on', 'Tom.'], ['I', 'guess', "it's", 'OK.'], ['Can', 'you', 'read', 'what', 'he', 'really', 'mean?'], ['Of', 'course,', 'he', 'right.'], ['Mary', 'is', 'against', 'his', 'problems.'], ['We', 'think', 'we', 'can', 'manage', 'that.'], ['It', 'was', 'foolish', 'of', 'you', 'to', 'follow', 'my', 'advice.'], ['Keep', 'your', 'eyes', 'to', 'walk', 'on', 'Sundays.'], ['For', 'her', 'advice,', 'he', 'dropped', 'his', 'wife', 'to', 'adopt', 'him.'], ['Personal', 'people', 'are', 'not', 'in', 'my', 'fashion.'], ["I'm", 'not', 'sure', "I'm", 'ready.'], ['Did', 'you', 'get', 'the', 'ready?'], ['I', "don't", 'think', 'I', 'can', 'laugh.'], ['She', 'takes', 'him', 'at', 'the', 'store.'], ['What', 'you', 'said', 'said', 'that', 'Tom', "didn't", 'matter?'], ['Take', 'up', 'on.'], ['Tom', 'seems', 'to', 'be', 'in', 'love.'], ['He', 'denied', 'having', 'taken', 'the', 'thief.'], ['The', 'new', 'books', 'are', 'made', 'up', 'more', 'interesting', 'than', 'every', 'year.'], ['I', 'wanted', 'to', 'write', 'this', 'three', 'years', 'ago.'], ['I', "haven't", 'decided', 'if', 'I', 'want', 'to', 'go', 'there.'], ['We', 'were', 'surprised', 'to', 'hear', 'the', 'news.'], ['I', 'wish', 'Tom', 'would', 'be', 'happy.'], ['Please', 'close', 'the', 'door', 'shut.'], ['All', 'the', 'doors', 'are', 'out', 'of', 'open.'], ['She', 'taught', 'me', 'a', 'car.'], ["I'll", 'give', 'you', 'the', 'next', 'next', 'week.'], ['My', 'wife', 'had', 'a', 'child.'], ['These', 'shoes', 'are', 'very', 'large.'], ['Tom', 'has', 'a', 'big', 'mouth.'], ["Don't", 'be', 'alarmed.'], ['I', 'really', "can't", 'be', 'late.'], ['Are', 'you', 'going', 'to', 'sing', 'with', 'us?'], ["It's", 'necessary', 'for', 'us.'], ['Will', 'you', 'please', 'stop', 'me?'], ['I', "can't", 'afford', 'to', 'buy', 'a', 'map', 'of', 'coffee.'], ['Well,', "let's", 'know', 'that.'], ["It's", 'ridiculous.'], ['He', 'threw', 'me', 'out.'], ['His', 'sister', 'looks', 'young.'], ['Did', 'you', 'come', 'here', 'alone?'], ["That's", 'how', 'it', 'happened.'], ['I', 'work', 'hard', 'in', 'the', 'garden.'], ['I', 'had', 'never', 'written', 'in', 'months.'], ['I', 'hear', 'you', 'have', 'lost', 'sight', 'of', 'him.'], ['Yours', 'is', 'not', 'settled', 'yet.'], ["You're", 'not', 'different.'], ["Let's", 'talk', 'about', 'the', 'good', 'results.'], ['My', 'sister', 'is', 'a', 'college', 'student.'], ['The', 'light', 'is', 'almost', 'here.'], ['They', 'do', 'it', 'faster', 'than', 'us.'], ['Are', 'you', 'going', 'to', 'do', 'it', 'now?'], ['Could', 'you', 'please', 'help', 'me', 'translate', 'this', 'out.'], ["Let's", 'be', 'at', 'the', 'others.'], ["I'll", 'help', 'you', 'as', 'much', 'as', 'you', 'can.'], ["Don't", 'try', 'to', 'listen', 'to', 'me.'], ['He', 'continued', 'reading', 'the', 'book.'], ['We', 'miss', 'you.'], ['I', 'just', 'want', 'to', 'make', 'sure', "we're", 'all', 'teachers.'], ['We', 'really', 'have', 'luck.'], ['Is', 'there', 'a', 'hotel', 'in', 'French?'], ['Few', 'people', 'are', 'to', 'be', 'so', 'kind', 'to', 'me.'], ['Hand', 'for', 'the', 'change', 'by', 'fax.'], ['We', "can't", 'just', 'walk', 'there.'], ['Please', 'let', 'me', 'know', 'your', 'name,'], ['I', 'woke', 'up.'], ['I', 'refuse', 'to', 'answer', 'that', 'question.'], ['He', 'takes', 'some', 'letters', 'from', 'his', 'mother.'], ['I', "don't", 'remember', 'anything', 'happening.'], ['Tom', 'is', 'in', 'Australia.'], ['Have', 'you', 'been', 'told', 'when', 'you', 'were', 'going', 'to', 'come?'], ['The', 'work', "doesn't", 'work.'], ["You're", 'right,', 'I', 'think.'], ['Can', 'you', 'do', 'it', 'faster?'], ['Swimming', 'is', 'nonsense.'], ["It's", 'very', 'clean.'], ["You're", 'not', 'Japanese.'], ['You', 'can', 'choose', 'that', 'kind', 'of', 'water,', 'will', 'risk.'], ['My', 'father', 'will', 'cost', 'a', 'thousand', 'dollars', 'in', 'a', 'day.'], ['I', "can't", 'imagine', 'what', 'you', 'felt.'], ['We', 'have', 'been', 'drinking,', "don't", 'you?'], ['The', 'China.', 'is', 'a', 'serious', 'China.'], ['I', 'had', 'the', 'dream', 'last', 'night.'], ['Where', 'do', 'you', 'usually', 'eat', 'tonight?'], ['Did', 'you', 'hear', 'that?'], ['You', 'could', 'just', 'tell', 'me.'], ['Tom', 'should', 'not', 'want', 'to', 'know', 'Mary', 'like', 'him.'], ['You', 'have', 'a', 'good', 'job.'], ['Is', 'something', 'happened', 'to', 'Tom?'], ['The', 'capital', 'of', 'capital', 'is', 'in', 'London.'], ['He', 'took', 'a', 'walk', 'every', 'morning.'], ['Nothing', 'happened', 'to', 'us.'], ['It', 'was', 'very', 'good.'], ['The', 'murder', 'death', 'was', 'never', 'killed.'], ["They're", 'very', 'happy.'], ['He', 'is', 'in', 'life', 'in', 'the', 'library.'], ['He', "doesn't", 'have', 'enough', 'experience.'], ['I', 'want', 'to', 'be', 'with', 'you', 'two', 'with', 'you.'], ['Where', 'did', 'you', 'do', 'that?'], ['Tom', "isn't", 'about', 'time', 'to', 'end', 'the', 'party.'], ['What', 'floor', 'do', 'you', 'live', 'on?'], ['They', "don't", 'have', 'a', 'good', 'lawyer', 'to', 'look', 'at', 'it.'], ['I', 'really', 'think', 'Tom', 'is', 'dangerous.'], ['I', 'think', 'you', 'may', 'be', 'right.'], ['They', 'worked', 'out', 'the', 'sun', 'until', 'the', 'sun', 'report', 'the', 'sun', 'until', 'it', 'will', 'be.'], ['A', 'good', 'people', 'can', 'stand', 'up', 'with', 'people', 'and', 'says', 'that', 'is', 'going', 'to', 'have', 'to', 'use', 'to', 'make', 'sure', 'that', 'is', 'in', 'the', 'first', 'step', 'and', 'needs'], ['The', 'office', 'office', 'is', 'on', 'the', 'right.'], ["There's", 'a', 'room', 'in', 'the', 'room', 'for', 'water.'], ['This', 'house', 'has', 'two', 'windows.'], ['Tom', "didn't", 'want', 'to', 'write', 'anymore.'], ['Nothing', 'is', 'never', 'over.'], ['I', 'drank', 'beer', 'from', 'a', 'plastic', 'cup.'], ['He', 'may', 'not', 'think', 'that', 'way.'], ["I'd", 'like', 'to', 'go', 'home.'], ['This', 'might', 'take', 'a', 'while.'], ['He', 'speaks', 'English', 'with', 'two', 'languages.'], ["I've", 'had', 'enough.'], ['Tom', 'is', 'a', 'lot', 'of', 'fun.'], ["You're", 'such', 'a', 'flirt.'], ['I', 'went', 'to', 'Australia', 'with', 'you.'], ['He', 'knows', 'how', 'to', 'get', 'them.'], ['Do', 'you', 'know', 'his', 'father?'], ['I', 'suppose', 'you', 'enjoyed', 'this', 'sort', 'of', 'thing.'], ['I', 'feel', 'bad.'], ["I'm", 'going', 'to', 'buy', 'you', 'a', 'beer.'], ['She', 'sent', 'him', 'a', 'cake.'], ['He', 'tried', 'to', 'make', 'a', 'decision.'], ["I'd", 'like', 'to', 'kiss', 'you', 'in', 'my', 'arms.'], ['This', 'book', 'sells', 'interesting', 'to', 'write', 'situations.'], ['I', 'like', 'your', 'dress.'], ["They're", 'going', 'on', 'this', 'way.'], ["I'll", 'see', 'you', 'tomorrow', 'at', 'school.'], ['Can', 'we', 'prove', 'that?'], ["There's", 'a', 'lot', 'of', 'work', 'to', 'do.'], ['Tom', 'really', 'needs', 'our', 'help.'], ['When', 'did', 'that', 'work?'], ['The', 'students', 'worked', 'very', 'hard.'], ['Stay', 'in', 'the', 'house.'], ["Don't", 'they', 'met', 'before?'], ['Tom', 'used', 'to', 'two', 'two', 'times', 'a', 'lot.'], ['The', 'men', 'collect', 'tea.'], ['Dozens', 'Americans', 'like', 'to', 'cut', 'with', 'American', 'songs.'], ['Tom', 'never', 'did', 'that', 'again.'], ['Apparently,', 'Tom', "wasn't", 'there.'], ['Finding', 'a', 'job', 'is', 'a', 'good', 'job.'], ['She', 'showed', 'me', 'his', 'album.'], ['Tom', 'fixed', 'me', 'for', 'my', 'dictionary.'], ['He', 'lay', 'on', 'the', 'grass.'], ['Why', "don't", 'you', 'come', 'with', 'me?'], ['No', 'matter', 'what', 'happens,', 'my', "can't", 'change', 'my', 'business.'], ["There's", 'no', 'difference.'], ['Can', 'you', 'please', 'shut', 'the', 'picture?'], ['Why', 'are', 'these', 'pictures', 'these', 'pictures?'], ['You', 'look', 'good', 'with', 'you.'], ['Good', 'luck', 'will', 'everyone.'], ['She', 'took', 'advantage', 'of', 'the', 'baby.'], ['Tom', 'is', 'the', 'youngest'], ["You're", 'very', 'good.'], ['Why', 'are', 'you', 'all', 'dressed', 'up', 'for?'], ["I'd", 'like', 'to', 'decide', 'some', 'more', 'problems.'], ['All', 'the', 'problems', 'were', 'problems.'], ['The', 'average', 'lawyer', 'is', 'worth', 'an', 'egg.'], ['We', 'are', 'untalented.'], ['She', 'was', 'complaining', 'about', 'her', 'all', 'the', 'time.'], ['Try', 'to', 'believe', 'your', 'eyes.'], ['Everyone', 'looks', 'relaxed.'], ['We', 'have', 'to', 'make', 'you', 'a', 'hospital.'], ['Are', 'you', 'sure', 'this', 'is', 'a', 'good', 'idea?'], ['Stay', 'out', 'of', 'water.'], ['The', 'idea', 'was', 'good.'], ["I'm", 'getting', 'used', 'to', 'it.'], ["I've", 'got', 'a', 'lot', 'of', 'different', 'many', 'years', 'many', 'years', 'old.'], ['She', 'fainted', 'at', 'her', 'most', 'little', 'baby', 'in', 'his', 'clothes.'], ["I'm", 'not', 'old', 'enough', 'for', 'Tom.'], ['Can', 'you', 'do', 'me', 'now?'], ['I', 'fell.'], ['They', 'lost', 'their', 'old', 'day.'], ['How', 'good', 'do', 'you', 'feel', 'like', 'it?'], ['He', 'has', 'a', 'book', 'interesting.'], ['However', 'hard', 'you', 'try,', 'you', "can't", 'finish', 'it', 'by', 'bus,', 'you', 'will', 'keep', 'you', 'a', 'day.'], ['Why', 'should', 'I', 'help', 'Tom?'], ['I', 'wonder', 'whether', 'is', 'ready.'], ['I', 'was', 'as', 'surprised', 'as', 'you.'], ['We', 'had', 'a', 'good', 'time.'], ['I', 'went', 'to', 'bed', 'at', 'eight', "o'clock."], ['I', "don't", 'expect', 'you', 'to', 'be', 'my', 'friend.'], ['It', "doesn't", 'bother', 'me.'], ['Could', 'you', 'lend', 'me', 'this', 'letter', 'for', 'me?'], ['Get', 'out', 'of', 'my', 'kitchen.'], ['The', 'suspect', 'is', 'a', 'spy.'], ["Don't", 'you', 'want', 'me', 'why', 'I', 'did', 'that?'], ['Maybe', 'it', 'was', 'the', 'first', 'person', 'I', 'had', 'to', 'take', 'foot', 'on', 'foot', 'tonight.'], ['I', 'never', 'wanted', 'to', 'have', 'told', 'me', 'to', 'study.'], ['I', 'want', 'to', 'be', 'noticed.'], ['I', 'feel', 'happy.'], ['I', 'want', 'to', 'know', 'more.'], ['Eat', 'more', 'fruit.'], ['Please', 'come', 'in', 'the', 'room.'], ['Be', 'content.'], ['I', 'need', 'some', 'help.'], ['Be', 'careful', 'at', 'the', 'same', 'time.'], ['I', 'never', 'thought', 'I', 'would', 'give', 'you', 'some', 'weight.'], ['While', 'I', 'was', 'a', 'little', 'trusted', 'in', 'a', 'magazine.'], ["I'm", 'not', 'telling', 'you', 'again.'], ["I'm", 'going', 'to', 'find', 'a', 'solution', 'to', 'the', 'problem.'], ['I', 'am', 'very', 'tired.'], ['Do', 'you', 'have', 'any', 'idea', 'what', 'this', 'is?'], ['They', 'knew', 'exactly', 'what', 'they', 'were', 'doing.'], ['We', 'all', 'agree.'], ['I', 'think', "we're", 'going', 'to', 'be', 'fine.'], ["That's", 'my', 'coat.'], ['Why', "didn't", 'you', 'listen', 'to', 'me?'], ['Having', 'in', 'the', 'world', 'of', 'a', 'few', 'cream', 'in', 'the', 'world', 'is', 'no', 'trouble.'], ["Doesn't", 'it', 'hurt', 'your', 'odd?'], ["You're", 'ambitious.'], ['Would', 'you', 'be', 'willing', 'to', 'help?'], ['You', "won't", 'be', 'able', 'to', 'help', 'you.'], ['I', 'used', 'to', 'study', 'in', 'Boston', 'before', 'the', 'study', 'of', 'Japan.'], ['He', 'has', 'a', 'cat.'], ['You', 'will', 'never', 'be', 'lucky.'], ['We', 'reached', 'the', 'time', 'to', 'take', 'the', 'train.'], ['Nothing', 'is', 'not', 'going', 'to', 'happen', 'unless', 'you', 'think', 'it', 'is.'], ['I', 'was', 'too', 'shy', 'for', 'me.'], ["That's", 'not', 'as', 'good', 'as', 'it', 'is.'], ['The', 'red', 'hat', 'is', 'hard', 'on', 'his', 'hat.'], ['She', 'cried', 'that', 'she', 'was', 'so', 'famous.'], ['If', 'I', 'had', 'told', 'you', 'before,', 'I', 'would', 'have', 'told', 'you.'], ["Don't", 'you', 'think', 'this', 'happened?'], ["You're", 'not', 'going', 'to', 'believe', 'it.'], ['Be', 'back', 'again.'], ['I', 'think', 'you', 'need', 'help.'], ['What', 'do', 'you', 'look', 'at', 'this', 'kind', 'of', 'personal', 'stuff?'], ['I', 'wish', 'I', 'could', 'tell', 'you', 'the', 'reason,', 'I', "can't."], ['I', 'left', 'you', 'a', 'few', 'questions.'], ['I', 'almost', 'had', 'to', 'do', 'my', 'homework.'], ['The', 'police', 'heard', 'many', 'people.'], ["I'm", 'not', 'the', 'one', 'you', 'were.'], ['Have', 'you', 'been', 'asked', 'your', 'name?'], ['The', 'situation', 'is', 'wrong.'], ['I', 'had', 'a', 'busy', 'morning.'], ["I'd", 'rather', 'not', 'do', 'it.'], ['Women', 'things', 'like', 'to', 'consider', 'the', 'reason.'], ['I', "didn't", 'expect', 'you', 'in.'], ["I've", 'never', 'met', 'his', 'sons.'], ['Our', 'eyes', 'are', 'accepted.'], ['How', 'weather', 'are', 'it', 'from', 'here?'], ['It', 'was', 'a', 'cold,', 'of', 'us.'], ['I', 'think', 'Tom', 'likes', 'Mary.'], ['Tom', 'has', 'his', 'heart.'], ['We', 'never', 'do', 'anything', 'to', 'do', 'that.'], ['We', 'appreciate', 'the', 'difference', 'between', 'you', 'and', 'another.'], ['The', 'boss', 'was', 'arrested', 'for', 'the', 'sign', 'of', 'a', 'test.'], ['I', 'need', 'to', 'earn', 'more', 'money', 'than', 'myself.'], ['Tom', 'has', 'a', 'big', 'house.'], ['We', "couldn't", 'open', 'the', 'door', 'because', 'Tom', 'was', 'closed.'], ['Last', 'night', 'there', 'was', 'a', 'cold,', 'I', "couldn't", 'go', 'there', 'and', 'yesterday.'], ['We', 'heard', 'gunshots', 'from', 'next', 'door.'], ['I', "don't", 'know', 'how', 'to', 'answer', 'this', 'question.'], ['He', 'went', 'to', 'bed', 'as', 'they', 'arrived.'], ['Remain', 'seated,', 'please.'], ['Please', 'let', 'me', 'write', 'it.'], ['Do', 'you', 'like', 'the', 'kitchen', 'food?'], ["I'm", 'happy', 'to', 'hear', 'the', 'point.'], ['Tom', 'brought', 'a', 'room', 'for', 'us.'], ["It'll", 'be', 'more', 'time', 'before', 'he', 'gets', 'silent.'], ['You', 'should', 'make', 'sure', 'that', 'you', 'are', 'sleeping.'], ['Tom', 'asked', 'us', 'to', 'buy', 'some', 'questions.'], ["She's", 'smarter', 'than', 'him.'], ['I', 'am', 'not', 'going', 'to', 'make', 'the', 'party.'], ["Let's", 'go', 'out', 'of', 'us.'], ['I', "don't", 'want', 'to', 'see', 'you.'], ["You're", 'not', 'lying.'], ['I', 'turned', 'on', 'my', 'hands', 'to', 'get', 'fat.'], ['This', 'window', 'is', 'numb.'], ['I', 'can', 'be', 'dreaming.'], ["It's", 'no', 'money.'], ['She', 'waited', 'for', 'him', 'a', 'long', 'time.'], ['They', 'were', 'friendly', 'by', 'him.'], ['We', 'will', 'hurry.'], ['It', 'was', 'a', 'tough', 'day.'], ['I', 'lived', 'overseas', 'for', 'ten', 'years.'], ['You', 'are', 'so', 'childish', 'sometimes.'], ['I', 'have', 'a', 'comic', 'personality.'], ['I', 'like', 'a', 'child.'], ['Please', 'close', 'the', 'door.'], ["I've", 'never', 'used', 'to', 'catch', 'the', 'flames.'], ["I'm", 'looking', 'forward', 'to', 'receiving', 'your', 'answer.'], ['I', 'like', 'being', 'with', 'you.'], ['Have', 'you', 'ever', 'taken', 'a', 'man?'], ["Shouldn't", 'you', 'go', 'home?'], ["I'd", 'like', 'to', 'find', 'someone', 'to', 'talk', 'to.'], ['I', 'want', 'to', 'thank', 'you.'], ['After', 'a', 'Tom', 'took', 'out', 'the', 'test.'], ['Tom', 'died', 'in', 'Autralia', 'in', 'Autralia', 'in', 'Autralia'], ["You're", 'contradicting', 'yourself.'], ['Tom', 'has', 'left', 'TV', 'in', 'the', 'summer.'], ['It', 'should', 'be', 'denied.'], ['He', 'had', 'no', 'reason', 'to', 'go.'], ["What's", 'your', 'opinion', 'of', 'your', 'time?'], ['I', 'did', 'it', 'myself.'], ['Put', 'that', 'your', 'name', 'and', 'write', 'your', 'name.'], ['Thousands', 'of', 'foreigners', 'visit', 'Japan', 'every', 'year.'], ["You're", 'always', 'finding', 'me.'], ['You', 'have', 'to', 'pay', 'in', 'advance.'], ['My', 'family', 'is', 'playing', 'the', 'winter.'], ['Will', 'you', 'take', 'the', 'bill?'], ['I', 'caught', 'the', 'lights.'], ['Tom', "doesn't", 'wear', 'a', 'bicycle.'], ['She', 'drank', 'a', 'gunshot.'], ['He', 'knows', 'how', 'to', 'make', 'a', 'computer.'], ["You're", 'my', 'boss.'], ['I', 'thought', 'of', 'no', 'sense', 'to', 'stop', 'not', 'to', 'change', 'my', 'mind', 'to', 'change', 'the', 'job.'], ['What', 'do', 'you', 'like', 'a', 'spoon?'], ["I'll", 'leave', 'it', 'up', 'to', 'you.'], ['My', 'mother', 'started', 'to', 'go', 'abroad.'], ["I'm", 'allergic', 'to', 'seafood.'], ['Can', 'you', 'tell', 'Tom', 'not', 'to', 'do', 'that?'], ['Tom', 'is', 'a', 'Muslim.'], ['I', "don't", 'feel', 'like', 'dancing.'], ['Will', 'you', 'kill', 'me?'], ['Get', 'in', 'the', 'van.'], ['I', "couldn't", 'do', 'that', 'this', 'better.'], ['Tom', "doesn't", 'know', 'whether', 'he', 'can', 'stay', 'or', 'hate', 'the', 'right.'], ['I', 'told', 'him', 'everything.'], ['"Will', 'you', 'have', 'the', 'help."', '"Don\'t', 'of', 'it."'], ['No', 'one', 'seems', 'to', 'do', 'two', 'people', 'like', 'doing', 'that.'], ['Tom', 'is', 'our', 'new', 'team.'], ['Please', 'bring', 'me', 'a', 'minute,'], ['I', 'owe', 'you', 'something.'], ['He', 'attributed', 'his', 'success', 'to', 'good', 'luck.'], ['Yesterday', 'he', 'comes', 'to', 'my', 'place.'], ['I', "can't", 'remember', 'it.'], ['The', 'water', 'is', 'warm.'], ['This', 'is', 'how', 'I', 'made', 'it.'], ["You're", 'so', 'talented.'], ['The', 'wind', 'blew', 'off', 'his', 'hat.'], ['What', 'is', 'your', 'first', 'name?'], ['Can', 'we', 'tell', 'us', 'the', 'way', 'to', 'us?'], ['I', "didn't", 'trust', 'him.'], ["You're", 'not', 'bad.'], ['No', 'matter', 'what', 'to', 'expect.'], ['Are', 'you', 'going', 'to', 'the', 'train', 'schedule?'], ['Do', 'you', 'want', 'a', 'breakfast?'], ['Everything', 'has', 'all', 'gone.'], ['Since', 'I', 'was', 'not', 'there', 'at', 'school.'], ['I', 'went', 'with', 'my', 'friends.'], ['I', "don't", 'have', 'anything', 'to', 'add', 'up', 'with', 'the', 'problem.'], ["I'm", 'not', 'in', 'the', 'morning.'], ['I', 'want', 'this', 'tomorrow', 'home', 'and', 'tomorrow', 'at', 'home.'], ['The', 'climate', 'has', 'a', 'lot', 'of', 'complaints', 'about', 'their', 'fortune.'], ['I', 'appreciate', 'that.'], ['This', 'is', 'your', 'book.'], ["It's", 'hard', 'for', 'you', 'to', 'wait', 'for', 'you.'], ['Never', 'watch', 'a', 'car,', 'because', 'it', 'was', 'just', 'a', 'was,'], ['It', 'appears', 'that', 'he', 'had', 'an', 'accident.'], ['She', 'bought', 'a', 'thousand', 'dollars.'], ['Is', 'it', 'OK', 'or', 'not?'], ["I've", 'been', 'here', 'all', 'my', 'long', 'time.'], ['I', 'feel', 'lonely.'], ['I', 'heard', 'the', 'question.'], ['Everyone', 'arrived', 'at', 'the', 'wedding.'], ['Tom', 'used', 'to', 'live', 'alone', 'then.'], ["It's", 'probably', 'a', 'nation'], ['You', 'want', 'that,', "don't", 'you?'], ['Would', 'you', 'like', 'to', 'go', 'there', 'with', 'me?'], ["I'm", 'not', 'tired', 'at', 'all.'], ['Is', 'it', 'true', 'that', 'you', "can't", 'swim?'], ['You', "don't", 'seem', 'very', 'concerned.'], ['We', "can't", 'give', 'your', 'standards.'], ['He', 'speaks', 'well.'], ['I', 'think', "I'm", 'going', 'to', 'buy', 'a', 'bottle', 'of', 'those.'], ['She', 'thought', 'a', 'good', 'solution.'], ['Are', 'you', 'as', 'beautiful', 'as', 'me?'], ['Can', 'you', 'tell', 'me', 'why', 'Tom', "isn't", 'here?'], ['They', 'must', 'be', 'living', 'in', 'their', 'income.'], ['The', 'weather', 'reached', 'the', 'weather', 'delayed', 'for', 'nothing.'], ['Stop', 'doing', 'that!'], ['Tom', 'seems', 'to', 'know', 'what', "he's", 'doing.'], ['We', 'must', 'try', 'to', 'make', 'sure', 'of', 'us.'], ['I', 'drank', 'three', 'yen', 'in', 'this', 'morning.'], ['They', 'were', 'scolded', 'by', 'the', 'teacher.'], ['Let', 'me', 'handle', 'it.'], ['I', 'have', 'absolutely', 'no', 'idea', 'when', "I'm", 'supposed', 'to', 'do', 'it.'], ['The', 'rain', 'lasted', 'three', 'days.'], ['It', 'is', 'based', 'on', 'facts.'], ["Don't", 'worry', 'about', 'it.'], ['I', 'love', 'the', 'way', 'you', 'walk.'], ['Can', 'you', 'call', 'the', 'train', 'to', 'the', 'second', 'one', 'for', 'the', 'first', 'time?'], ['Tom', "didn't", 'know', 'that', 'my', 'husband', 'was.'], ['What', 'time', 'do', 'you', 'go', 'skiing?'], ['Where', 'exactly', 'did', 'you', 'go?'], ["You're", 'a', 'perfect', 'worker.'], ['Tom', 'knew', "he'd", 'made', 'a', 'mistake.'], ['Hurry', 'up,', 'and', "you'll", 'not', 'catch', 'the', 'train.'], ["You're", 'just', 'like', 'your', 'father.'], ['You', 'should', 'put', 'some', 'clothes.'], ['I', 'hope', 'I', 'have', 'finished', 'to', 'finish', 'my', 'car', 'by', 'plane.'], ['I', 'thought', 'it', 'was', 'a', 'good', 'idea.'], ['Are', 'you', 'a', 'good', 'time?'], ['We', 'need', 'to', 'talk', 'about', 'this.'], ['The', 'party', 'ended', 'at', 'nine.'], ["You're", 'not', 'ours.'], ['This', 'is', 'your', 'fault.'], ['I', 'saw', 'you', 'walking', 'in', 'front', 'of', 'the', 'park', 'window.'], ['No', 'one', 'understood.'], ['She', 'woke', 'him', 'out', 'of', 'him.'], ['Hand', 'in', 'the', 'hand', 'please.'], ['Tom', 'often', 'play', 'tennis', 'with', 'Mary', 'school.'], ['Why', 'do', 'you', 'want', 'against', 'him?'], ["We're", 'very', 'worried', 'about', 'the', 'subject.'], ["I'll", 'give', 'you', 'a', 'piece', 'of', 'advice.'], ["I'm", 'not', 'a', 'very', 'good', 'artist.'], ["Don't", 'make', 'me', 'shoot', 'you.'], ["That's", 'what', 'I', 'told', 'him.'], ['I', 'saw', 'a', 'stranger', 'enter', 'this', 'house.'], ['We', "don't", 'know', 'when', 'he', 'is', 'in', 'London.'], ['Do', 'you', 'still', 'have', 'my', 'library?'], ['Her', 'car', 'is', 'two', 'years', 'old.'], ['Do', 'you', 'want', 'a', 'lawyer?'], ["I'm", 'never', 'my', 'bed.'], ['May', 'I', 'have', 'a', 'little', 'help', 'please?'], ["You're", 'taking', 'me', 'up', 'with', 'you?'], ["Don't", 'you', 'have', 'us?'], ['She', 'tried', 'to', 'comfort', 'him,', 'but', 'he', 'tried', 'to', 'cry.'], ['May', 'I', 'get', 'my', 'bicycle?'], ['We', 'have', 'a', 'good', 'opinion', 'of', 'water.'], ['I', "don't", 'feel', 'like', 'brother', 'but', 'my', 'brother', 'gets', 'a', 'little', 'longer.'], ['Put', 'the', 'cloth', 'in', 'the', 'cupboard.'], ['Please', 'make', 'yourself', 'on', 'the', 'cake.'], ['I', "can't", 'afford', 'to', 'buy', 'a', 'buying', 'escape.'], ["You're", 'very', 'good.'], ['You', 'are', 'blinded', 'by', 'love.'], ['He', 'gives', 'me', 'a', 'meaningful', 'look.'], ['They', 'showed', 'me', 'a', 'lot', 'of', 'beautiful', 'photos.'], ["I'm", 'very', 'small.'], ["We'll", 'all', 'be', 'at', 'home', 'for', 'the', 'time', 'to', 'study.'], ['Tell', 'me', "you're", 'waiting.'], ['I', 'have', 'no', 'religion.'], ['You', "shouldn't", 'have', 'borrowed', "Tom's", 'car.'], ['I', 'think', 'we', 'have', 'a', 'misunderstanding.'], ['I', 'know', 'that', 'Tom', 'is', 'a', 'teacher.'], ['Where', 'is', 'the', 'cat?'], ["I've", 'never', 'seen', 'anyone', 'before.'], ['Keep', 'in', 'bed.'], ["I'll", 'get', 'the', 'proper', 'forms.'], ['She', 'watched', 'him', 'swim.'], ['Clean', 'the', 'bell', 'and', 'got', 'out', 'of', 'my', 'friends.'], ['You', "don't", 'really', 'think', "it's", 'wrong?'], ['No', 'one', 'of', 'this', 'disease.'], ['They', 'said', 'you', 'were', 'fired.'], ['I', 'hope', 'you', 'enjoyed', 'it.'], ['He', 'enjoyed', 'the', 'ship.'], ['You', 'must', 'not', 'be', 'late', 'for', 'school.'], ['I', 'admit', "I'm", 'tired.'], ['The', 'police', 'covered', 'his', 'gun', 'for', 'you.'], ['If', 'you', 'change', 'your', 'passport', 'and', "you'll", 'get', 'off', 'the', 'form', 'and', 'change', 'you.'], ['The', 'two', 'driver', 'is', 'better', 'than', 'we', 'can', 'run', 'out.'], ['He', 'has', 'to', 'leave.'], ['I', 'think', 'we', 'need', 'a', 'good', 'day.'], ["I'm", 'happy', 'you', 'two', 'are', 'happy', 'again.'], ['How', 'can', 'this', 'be?'], ['That', 'only', 'takes', 'three', 'minutes', 'to', 'do', 'it.'], ["You've", 'come', 'too', 'early.'], ['I', "don't", 'think', "there's", 'a', 'problem.'], ['Do', 'you', 'love', 'music?'], ['I', "didn't", 'steal', 'my', 'pockets.'], ['She', 'wants', 'to', 'become', 'a', 'young'], ['Tom', "doesn't", 'want', 'Mary', 'to', 'sing', 'Mary.'], ["That's", 'not', 'the', 'same', 'thing.'], ['Will', 'you', 'lend', 'me', 'it?'], ['Can', 'you', 'do', 'it', 'faster?'], ['Pour', 'me', 'a', 'drink.'], ['Tom', 'can', 'wait', 'for', 'a', 'day', 'that', "he's", 'doing.'], ['I', 'see', 'a', 'lie.'], ['His', 'family', 'family', "doesn't", 'have', 'a', 'lot', 'of', 'money.'], ['I', 'thought', 'you', 'were', 'taller.'], ['I', 'can', 'wake', 'up', 'at', 'seven.'], ['Who', 'did', 'you', 'already', 'know', 'your', 'name,'], ['When', 'I', 'see', 'the', 'story', 'she', 'felt', 'very', 'happy.'], ['Try', 'to', 'continue.'], ["Aren't", 'you', 'a', 'little', 'young', 'to', 'do', 'this?'], ['Take', 'off', 'the', 'tongue.'], ['Remember', 'to', 'tell', 'anyone', 'about', 'it.'], ['It', 'goes', 'to', 'the', 'mall.'], ["It's", 'a', 'pity', 'that', 'you', "can't", 'come', 'with', 'us.'], ['Take', 'care', 'of', 'this.'], ['Let', 'me', 'bring', 'you', 'the', 'key.'], ["I'm", 'not', 'giving', 'you', 'any', 'money.'], ["Don't", 'let', 'them', 'follow', 'you.'], ["Tom's", 'day', 'was', 'the', 'day', 'before', 'yesterday.'], ['We', 'climbed', 'a', 'piece', 'of', 'cake.'], ['The', 'cat', 'is', 'due', 'to', 'the', 'heavy', 'hurry.'], ['I', 'really', 'like', 'swimming.'], ['My', 'dad', 'is', 'around', 'here.'], ['Tom,', 'believe', 'all', 'the', 'door', 'and', 'Mary', 'turned', 'out', 'to', 'be', 'all', 'the', 'corner.'], ['Why', 'did', 'you', 'let', 'me', 'sleep', 'so', 'late?'], ['Tom', 'thinks', 'the', 'answer', 'is', 'no.'], ["You're", 'winning.'], ['I', 'suppose', 'you', 'love', 'him.'], ['I', 'never', 'thought', "I'd", 'see', 'you', 'again.'], ['Nothing', 'ever', 'comes', 'back.'], ["That's", 'not', 'illegal.'], ["That's", 'so', 'pretty.'], ['Try', 'not', 'to', 'disappoint', 'me.'], ['Are', 'you', 'ready', 'to', 'fly?'], ['He', 'will', 'be', 'leaving', 'at', 'the', 'meeting', 'meeting', 'now.'], ["That's", 'a', 'human', 'sentence.'], ['When', 'I', 'was', 'your', 'age,', 'I', 'had', 'a', 'girlfriend.'], ['Tom', 'and', 'Mary', 'really', 'love', 'you.'], ['This', 'park', 'is', 'a', 'paradise', 'for', 'children.'], ['I', 'brought', 'you', 'a', 'red', 'friend.'], ['Do', 'you', 'have', 'a', 'dictionary', 'English?'], ['That', 'dress', 'looks', 'stunning', 'on', 'you.'], ['I', 'left', 'living', 'alone.'], ['I', 'came', 'to', 'the', 'same', 'place.'], ["You're", 'no', 'longer', 'welcome', 'in', 'my', 'house.'], ['Twenty', "you're", 'already', 'years', 'old.'], ["We're", 'all', 'happy.'], ['She', 'has', 'a', 'good', 'time', 'talking', 'with', 'you', 'at', 'least', 'just', 'at', 'the', 'window.'], ['Thank', 'you', 'right.'], ['Shut', 'up.', 'If', 'you', "don't,", "you'll", 'be', 'thrown', 'out.'], ['He', 'was', 'his', 'bicycle', 'stolen.'], ['Do', 'you', 'spend', 'enough', 'time', 'with', 'your', 'children?'], ['I', 'am', 'trying', 'to', 'get', 'it', 'out', 'of', 'the', 'light', 'of', 'the', 'air.'], ['They', 'say', 'he', "won't", 'be', 'again.'], ['Are', 'you', 'here', 'alone?'], ['Is', 'everything', 'all', 'at', 'home?'], ['Of', 'as', 'soon', 'as', 'possible.'], ["I'm", 'in', 'my', 'apartment.'], ['They', "don't", 'have', 'anything', 'to', 'eat.'], ["They're", 'out', 'of', 'money.'], ['Animals', 'are', 'bound', 'to', 'protect', 'their', 'fingers', 'and', 'their', 'meat.'], ['Is', 'this', 'seat', 'free?'], ['What', 'time', 'did', 'you', 'arrive', 'there?'], ['Do', 'you', 'know', 'where', 'they', 'come', 'from?'], ['Is', 'there', 'something', 'in', 'particular', 'that', 'you', 'want', 'to', 'drink?'], ['A', 'medical', 'is', 'a', 'cat.'], ['I', 'love', 'your', 'legs.'], ['This', 'is', 'the', 'largest', 'larger', 'in', 'Japan.'], ["Let's", 'pretend', 'of', 'no', 'one', 'of', 'the', 'evidence.'], ['We', 'took', 'a', 'picture', 'of', 'the', 'iceberg.'], ['I', 'want', 'mine.'], ['He', 'gave', 'me', 'a', 'question', 'out', 'of', 'my', 'answer.'], ["Aren't", 'you', 'still', 'yet?'], ["We're", 'not', 'happy.'], ['Is', 'it', 'yours?'], ['Who', 'phoned?'], ['Tom', "doesn't", 'know', 'the', 'question.'], ["You're", 'not', 'good', 'enough.'], ['I', "didn't", 'know', 'you', 'had', 'a', 'dog.'], ['I', 'have', 'a', 'lot', 'of', 'experience', 'in', 'English', 'language.'], ['What', 'in', 'this', 'bridge', 'is', 'in', 'this', 'box?'], ['Tom', 'is', 'but', 'but', 'not', 'at', 'all.'], ['Your', 'boyfriend', 'is', 'hard', 'to', 'you.'], ['The', 'dogs', 'usually', 'often', 'too', 'many', 'of', 'here.'], ['She', 'advised', 'him', 'to', 'go', 'by', 'bicycle.'], ['This', 'is', 'a', 'better', 'idea.'], ['Who', 'gave', 'you', 'this', 'information?'], ['She', 'used', 'to', 'go', 'to', 'the', 'zoo', 'on', 'Sundays.'], ["Don't", 'you', 'drive', 'a', 'lot?'], ['I', 'was', 'really', 'surprised.'], ['I', 'asked', 'Tom', 'why', 'he', 'wanted', 'to', 'learn', 'French.'], ["Don't", 'forget', 'your', 'ticket.'], ['He', 'did', 'it', 'right.'], ["You'll", 'find', 'the', 'book', 'as', 'book', 'as', 'you', 'treat', 'me.'], ["I'll", 'do', 'my', 'best.'], ['They', 'were', 'about', 'it.'], ['Practice', 'has', 'been', 'trying', 'to', 'get', 'up', 'the', 'old', 'station.'], ['I', 'wonder', 'if', 'I', 'can', 'do', 'that.'], ['He', 'used', 'to', 'swim', 'with', 'such', 'a', 'dog.'], ['Could', 'you', 'have', 'a', 'moment', 'that', 'you', 'had', 'a', 'moment', 'please?'], ['These', 'who', 'made', 'me', 'clear.'], ['Do', 'you', 'really', 'want', 'to', 'do', 'this', 'to', 'you?'], ['I', "shouldn't", 'have', 'tried', 'to', 'do', 'that.'], ["That's", 'a', 'joke.'], ['I', 'have', 'a', 'bad', 'bad', 'thing.'], ['I', "don't", 'think', "I'm", 'going.'], ['Please', 'be', 'careful.'], ['Our', 'teacher', 'looked', 'surprised.'], ['He', 'decided', 'to', 'stop', 'the', 'guitar.'], ['That', 'girl', 'looks', 'like', 'a', 'boy.'], ['How', 'old', 'are', 'you', 'now?'], ['We', 'met', 'before.'], ['Please', 'speak', 'English', 'in', 'English.'], ['When', 'did', 'the', 'war', 'begin?'], ['You', 'should', 'try', 'again.'], ['He', 'was', 'alone', 'there.'], ["I'm", 'going', 'to', 'need', 'a', 'car.'], ["That's", 'really', 'not', 'right.'], ['How', 'was', 'the', 'weather', 'like?'], ["That's", 'what', "you're", 'trying', 'to', 'do.'], ['It', 'was', 'our', 'first', 'engagement.'], ['He', 'likes', 'oranges.'], ['It', 'is', 'impossible', 'to', 'wake', 'him', 'up.'], ['He', 'was', 'afraid', 'he', 'was', 'afraid', 'of', 'him.'], ['Do', 'you', 'know', 'who', 'that', 'is?'], ["I'm", 'sure', 'Tom', 'was', 'a', 'good', 'reason.'], ['I', "don't", 'believe', 'in', 'miracles.'], ['He', "doesn't", 'make', 'it.'], ['She', 'refuses', 'to', 'say', 'more', 'than', 'that.'], ['Could', 'you', 'please', 'do', 'that', 'again?'], ['I', "don't", 'know', 'if', 'I', 'could', 'be', 'meeting', 'by', 'meeting', 'tomorrow.'], ['She', 'advised', 'him', 'to', 'come', 'back', 'at', 'home.'], ['He', 'is', 'watching', 'everybody', 'at', 'ease.'], ["I'm", 'observant.'], ['I', 'am', 'all', 'with', 'these', 'people.'], ['Try', 'to', 'continue.'], ["Let's", 'have', 'a', 'drink', 'first.'], ['Are', 'you', 'listening', 'to', 'me?'], ['I', 'know', 'you', 'probably', 'want', 'me', 'to', 'be', 'alone,', 'so', "I'll", 'leave.'], ["I'd", 'like', 'to', 'pay', 'credit', 'by', 'mail.'], ["I'm", 'not', 'convinced.'], ['She', 'accused', 'me', 'of', 'being', 'a', 'liar.'], ['He', 'loves', 'soccer.'], ["I'll", 'make', 'a', 'bad', 'idea', 'to', 'make', 'you', 'happy.'], ['Will', 'he', 'be', 'back?'], ['Are', 'you', 'going', 'to', 'your', 'house', 'your', 'bicycle?'], ['Tom', 'fired', 'three', 'times.'], ['I', "can't", 'stop', 'saying', 'something.', 'but', 'I', 'feel', 'like', 'having', 'something.'], ["You're", 'not', 'fast', 'enough.'], ['It', 'seems', 'that', 'he', 'is', 'wrong,', 'what', 'he', 'says.'], ['Wait', 'a', 'little', 'longer.'], ['Why', 'did', 'you', 'come', 'here?'], ['Not', 'everyone', 'agreed.'], ['Do', 'you', 'mind', 'if', 'my', 'own', 'dictionary?'], ['Return', 'your', 'gear.'], ['I', "don't", 'remember', 'it.'], ['Can', 'you', 'read', 'French?'], ['That', "doesn't", 'matter', 'anymore.'], ['If', 'you', "don't", 'have', 'to', 'do', 'this', 'problem', 'with', 'your', 'own', 'problem.'], ['Tom', 'had', 'a', 'warm', 'reception.'], ['His', 'husband', 'ever', 'made', 'a', 'fool', 'that', 'has', 'no', 'different.'], ['Why', 'are', 'you', 'upset?'], ['Will', 'you', 'have', 'something', 'for', 'me?'], ['He', 'put', 'my', 'idea', 'to', 'his', 'parents.'], ['She', 'broke', 'the', 'TV.'], ["That's", 'what', 'I', 'always', 'wanted', 'to', 'do.'], ["I'm", 'not', 'sure', "I'm", 'ready.'], ['She', 'had', 'good', 'friends', 'with', 'having', 'good', 'health.'], ['I', "can't", 'tell', 'you', 'how', 'happy', 'I', 'am', 'that', "you've", 'come', 'to', 'visit', 'us.'], ['I', 'think', 'you', 'did', 'having', 'a', 'good', 'choice.'], ['Stop', 'me', 'right', 'please.'], ['Do', 'your', 'homework', 'now.'], ["You're", 'very', 'understanding.'], ['I', 'went', 'on', 'him.'], ['They', 'divided', 'each', 'other', 'by', 'two', 'times', 'a', 'day.'], ['I', 'know', 'that', 'we', 'are', 'happy', 'to', 'sing', 'for', 'our', 'friends.'], ['They', 'will', 'have', 'some', 'exercise', 'to', 'help', 'the', 'money.'], ['Tom', "isn't", 'interested', 'in', 'all', 'the', 'whole', 'state.'], ['I', 'like', 'fishing.'], ['Give', 'me', 'a', 'handkerchief.'], ['Almost', 'all', 'of', 'us.'], ['Have', 'you', 'ever', 'eaten', 'alone', 'in', 'a', 'restaurant?'], ['I', 'wish', 'I', 'had', 'a', 'car.'], ['It', 'kept', 'kind', 'of', 'embarrassing.'], ["You'll", 'have', 'to', 'do', 'this', 'by', 'yourself.'], ['He', 'helped', 'me', 'clean', 'the', 'store.'], ['It', 'took', 'me', 'a', 'long', 'time.'], ['You', "can't", 'drive', 'me', 'in', 'traffic.'], ['He', 'was', 'hurt', 'in', 'a', 'traffic', 'accident.'], ['No', 'one', 'said', 'that', 'anymore.'], ['She', 'went', 'to', 'the', 'museum', 'by', 'taxi.'], ['No', 'matter', 'what', 'you', 'want', 'me', 'to', 'help', 'you.'], ['He', 'must', 'have', 'a', 'napkin.'], ["I'd", 'like', 'to', 'come', 'early.'], ["You're", 'going', 'to', 'die.'], ['Tom', 'began', 'to', 'peanuts?'], ['I', 'love', 'your', 'apartment.'], ["She's", 'busy', 'talking', 'to', 'talk', 'with', 'you', 'that', 'she', 'is', 'talking', 'to', 'me.'], ['They', 'come', 'from', 'the', 'same', 'village.'], ['I', 'went', 'to', 'my', "father's", "father's", 'school.'], ['Tom', 'is', 'waiting', 'for', 'the', 'airport.'], ['I', 'thought', 'you', 'wanted', 'to', 'buy', 'it.'], ["Everybody's", 'going', 'to', 'be', 'here.'], ["I'm", 'not', 'what', 'I', 'used', 'to', 'do.'], ['He', 'stood', 'on', 'his', 'back.'], ['She', 'spends', 'a', 'week', 'from', 'minimum', 'food.'], ["That's", 'a', 'very', 'low.'], ['You', 'look', 'Japanese.'], ['I', 'know', 'Tom', 'knows', "Mary's", 'life.'], ['There', 'was', 'nothing', 'about', 'it.'], ['Talk', 'to', 'whoever', 'wants', 'it.'], ['I', 'do', 'things', 'on', 'my', 'own', 'kids.'], ['I', 'caught', 'a', 'bad', 'cold.'], ["Don't", 'touch', 'that.'], ['I', 'was', 'fired.'], ['I', "don't", 'know', 'how', 'else', 'to', 'say', 'it.'], ['Tom', 'is', 'a', 'good', 'cook.'], ['I', 'think', 'you', 'need', 'what', 'I', 'need.'], ['If', 'you', "don't", 'mind,', 'I', 'could', 'help', 'you.'], ['Please', "don't", 'feel', 'to', 'be', 'a', 'hard', 'worker.'], ['Food', 'is', 'not', 'appropriate', 'for', 'girls.'], ['They', 'did', 'it', 'in', 'front', 'of', 'the', 'staff.'], ['I', 'am', 'seventeen', 'too.'], ['My', 'cat', 'is', 'out', 'of', 'breath.'], ['Tom', "doesn't", 'like', 'to', 'talk', 'with', 'his', 'brother.'], ['I', 'have', 'a', 'serious', 'problem.'], ['I', 'hope', 'it', 'was', 'worth', 'it.'], ["Let's", 'go', 'anywhere', 'Tom.'], ["You're", 'taking', 'care', 'of', 'you.'], ["I'm", 'not', 'at', 'all', 'interested.'], ['Is', 'your', 'pen?'], ['He', 'attended', 'the', 'meeting', 'in', 'our', 'company.'], ['Would', 'you', 'like', 'to', 'join', 'us', 'for', 'dinner?'], ["We're", 'all', 'hungry.'], ['I', "didn't", 'see', 'that', 'movie.'], ['He', 'said', 'that', 'he', 'is', 'able', 'to', 'buy', 'the', 'next', 'one.'], ['I', 'figured', 'it', 'might', 'be', 'helpful.'], ["We're", 'here.'], ['I', 'was', 'staying', 'with', 'my', 'father', 'when', 'I', 'was', 'a', 'child.'], ['Can', 'you', 'help', 'me', 'write', 'a', 'letter?'], ['Whether', 'you', 'pass', 'it', 'if', 'I', 'can', 'buy', 'a', 'black', 'drink', 'or', 'not.'], ['Is', 'there', 'room', 'in', 'your', 'car', 'for', 'me?'], ['He', 'attempted', 'suicide.'], ['I', 'remember', 'seeing', 'you', 'once.'], ['It', 'would', 'be', 'kind', 'for', 'me', 'if', 'you', 'had', 'a', 'little', 'help.'], ["Tom's", 'glad.'], ["It's", 'mine,', "isn't", 'it?'], ['Did', 'I', 'hurt', 'your', 'feelings?'], ['I', "didn't", 'know', 'that', 'was', 'where', 'my', 'place.'], ['I', 'like', 'swimming.'], ['I', 'know.'], ['She', 'went', 'into', 'a', 'cab.'], ['I', 'thought', 'you', 'played', 'about', 'a', 'high', 'time', 'in', 'Japan.'], ["I've", 'never', 'seen', 'anyone', 'like', 'him.'], ['Write', 'to', 'your', 'name', 'address.'], ['Are', 'you', 'wearing', 'a', 'lawyer?'], ['My', 'mom', 'spoke', 'with', 'him', 'in', 'the', 'last', 'hour.'], ['What', 'is', 'my', 'name?'], ['We', 'hate', 'violence.'], ['Can', 'I', 'have', 'some', 'rice?'], ['He', 'is', 'in', 'my', 'purse.'], ['Can', 'you', 'give', 'me', 'a', 'question,', 'called?'], ['You', 'should', 'have', 'been', 'proud', 'of', 'you.'], ['We', 'all', 'think', 'of', 'the', 'same', 'thing,', 'I', 'think', 'so.'], ["I'd", 'be', 'shot.'], ['I', 'am', 'afraid', 'of', 'spiders.'], ['Tom', 'refused', 'his', 'money', 'on', 'the', 'Internet.'], ['She', 'advised', 'me', 'where', 'to', 'stay.'], ['People', 'are', 'doing', 'everything', 'I', 'want', 'to', 'do,', 'I', 'do.'], ['When', 'were', 'you', 'born?'], ['Some', 'children', 'have', 'children', 'to', 'choose', 'a', 'tennis', 'side', 'of', 'mice.'], ['Please', 'smile.'], ['Is', 'this', 'serious?'], ['Where', 'did', 'you', 'get', 'those?'], ['He', 'touched', 'me.'], ["I'd", 'like', 'to', 'talk', 'to', 'you', 'when', 'you', 'have', 'some', 'free', 'time.'], ["I've", 'never', 'met', 'someone', 'like', 'him.'], ['I', 'have', 'plenty', 'of', 'things', 'to', 'eat', 'in', 'the', 'air.'], ['Come', 'go', 'with', 'things', 'yesterday.'], ['He', 'gave', 'me', 'an', 'example.'], ['I', "didn't", 'think', 'it', 'would', 'be', 'so', 'much', 'to', 'Boston.'], ['What', 'are', 'you', 'doing', 'here?'], ["That's", 'peculiar.'], ['Do', 'you', 'have', 'any', 'questions?'], ['She', 'kept', 'him', 'to', 'keep', 'it', 'as', 'fast', 'as', 'he', 'could.'], ["I'll", 'give', 'you', 'anything', 'you', 'want', 'to', 'want.'], ['Tom', "doesn't", 'know', 'who', 'to', 'talk', 'to', 'him.'], ["I'm", 'paid', 'to', 'do', 'that.'], ["He's", 'a', 'little', 'rusty.'], ['She', 'saw', 'me', 'enter', 'the', 'store.'], ['You', 'may', 'be', 'correct.'], ['He', 'used', 'to', 'spend', 'the', 'best', 'of', 'his', 'life.'], ["What's", 'your', 'favorite', 'food.'], ['The', 'distance', 'is', 'walking', 'on', 'the', 'couch.'], ["You're", 'a', 'great', 'wreck.'], ['I', 'have', 'a', 'cat', 'in', 'the', 'hand.'], ['Most', 'of', 'the', 'war', 'are', 'often', 'as', 'often', 'as', 'often', 'over', 'the', 'past.'], ['How', 'many', 'times', 'have', 'I', 'told', 'you', 'to', 'put', 'your', 'books.'], ['If', "you're", 'happy,', 'I', 'want', 'you.'], ['We', "don't", 'have', 'a', 'money', 'anymore.'], ['Why', 'never', 'never', 'give', 'you?'], ['I', 'was', 'alone', 'at', 'the', 'house', 'before', 'the', 'house.'], ['She', 'had', 'a', 'basket', 'basket', 'was', 'apples.'], ['Perhaps', 'he', 'never', 'become', 'famous.'], ['I', "didn't", 'see', 'a', 'car', 'last', 'year.'], ['Tom', 'and', 'I', 'met', 'three', 'hours', 'three', 'hours.'], ['Do', 'you', 'have', 'a', 'bag?'], ["Don't", 'give', 'up.'], ['Tom', 'has', 'been', 'reading', 'a', 'lot', 'of', 'guitar.'], ['I', "don't", 'think', 'I', 'can', 'do', 'that.'], ['You', 'deserve', 'me', 'this', 'anymore.'], ['Tom', 'is', 'as', 'busy', 'as', 'Mary', 'is.'], ['He', 'threw', 'the', 'same', 'time', 'every', 'day.'], ['Can', 'you', 'tell', 'me', 'the', 'weekend', 'when', 'you', 'get', 'off', 'the', 'next', 'flight?'], ['I', "can't", 'explain', 'it', 'now.'], ['The', 'country', 'he', 'tried,', 'he', 'is', 'almost', 'he', "doesn't", 'bite.'], ['Please', "don't", 'do', 'that', 'again.'], ['Can', 'you', 'tell', 'me', 'what', 'this', 'means?'], ['The', 'glass', 'is', 'sour.'], ["You've", 'put', 'up', 'with', 'me,', 'right?'], ["There's", 'nothing', 'to', 'do', 'anything', 'to', 'make', 'a', 'personal', 'job.'], ['They', 'have', 'the', 'water', 'with', 'the', 'water', 'with', 'water.'], ['Can', 'you', 'read', 'it', 'in', 'private?'], ['What', 'did', 'he', 'say?'], ['He', 'is', 'constantly', 'against', 'his', 'words.'], ['I', 'had', 'him', 'all', 'by', 'myself.'], ["We're", 'looking', 'for', 'the', 'rain.'], ['He', 'is', 'very', 'brave.'], ['I', "can't", 'explain', 'what', 'happened.'], ["That's", 'stupid.'], ['I', 'wonder', 'if', 'I', 'love', 'Tom.'], ['There', 'are', 'no', 'problems.'], ["Don't", 'forget', 'that', 'smoking', 'is', 'on', 'your', 'health.'], ["I'm", 'reading', 'the', 'book.'], ['He', 'is', 'the', 'largest', 'larger', 'than', 'the', 'world', 'is', 'suffering.'], ['She', 'was', 'the', 'ring', 'that', 'she', 'had', 'been', 'careful', 'with', 'me.'], ['I', "wasn't", 'discouraged.'], ['I', 'have', 'neither', 'English', 'nor', 'German.'], ['There', 'was', 'no', 'hurry.'], ['Do', 'you', 'have', 'the', 'dark?'], ['My', 'father', 'was', 'busy.'], ['Please', 'put', 'it', 'on', 'my', 'back.'], ['The', 'company', 'has', 'a', 'crime', 'in', 'the', 'pond.'], ['How', 'big', 'will', 'you', 'give', 'it', 'a', 'dress?'], ["There's", 'a', 'lot', 'of', 'rain.'], ['I', 'wonder', 'how', 'long', "it'll", 'take.'], ['Why', 'did', 'Tom', 'buy', 'it?'], ['A', 'apple', 'of', 'the', 'apple', 'is', "Tom's."], ['None', 'of', 'this', 'is', 'yours.'], ["Let's", 'wait', 'a', 'while.'], ['I', 'know', 'that', 'you', 'know', 'that', 'everyone', 'was', 'the', 'future.'], ['I', "didn't", 'recognize', 'it.'], ['What', 'do', 'you', 'think', 'there', 'are', 'in', 'the', 'kitchen?'], ['I', 'only', 'have', 'any', 'more', 'books', 'than', 'I', 'do.'], ['I', 'like', 'your', 'style.'], ['I', "don't", 'think', "I'm", 'really', 'for', 'you.'], ['Is', 'your', 'big', 'tall'], ["I'm", 'about', 'to', 'leave.'], ['How', 'many', 'books', 'do', 'you', 'have?'], ['Some', 'men', 'don’t', 'know', 'that.'], ['Your', 'face', 'is', 'dirty.'], ['Tom', 'tried', 'to', 'keep', 'Mary.'], ['Make', 'your', 'best.'], ['I', 'really', 'think', 'you', 'have', 'a', 'good', 'counselor.'], ['This', 'is', 'ten', 'ten', 'ten', 'ten', 'hundred.'], ['Tom', 'is', 'a', 'guy.'], ['Tom', 'thought', 'Mary', 'was', 'the', 'teacher.'], ['Tom', 'is', 'going', 'to', 'win.'], ['He', 'attempted', 'to', 'hurt', 'her', 'different.'], ['Please', 'do', 'not', 'do', 'anything', 'stupid.'], ['When', 'the', 'plan', 'is', 'easy', 'to', 'make', 'sure', "it's", 'a', 'great', 'one.'], ['A', 'good', 'foods', 'you', 'must', 'do', 'with', 'the', 'other', 'day,', 'on', 'our', 'own.'], ["I'm", 'disorganized.'], ['We', 'did', 'that', 'we', 'could.'], ['You', "can't", 'be', 'too', 'careful.'], ['Have', 'you', 'told', 'Tom', 'or', 'not?'], ['This', 'is', 'the', 'girl', 'that', 'I', 'saw', 'your', 'dog.'], ['The', 'parents', 'thought', 'that', 'Tom', 'would', 'come', 'again.'], ['Why', 'are', 'you', 'so', 'tired?'], ['Tom', 'wanted', 'to', 'help', 'Mary.'], ['Have', 'you', 'ever', 'found', 'a', 'new', 'job?'], ['If', 'I', 'wanted', 'to', 'know', 'what', 'I', 'wanted', 'to', 'ask', 'you.'], ['Tom', 'asked', 'Mary', 'to', 'help', 'John.'], ['Do', 'you', 'want', 'to', 'try', 'eating', 'another', 'try?'], ['I', 'heard', 'that', 'he', 'is', 'a', 'spy.'], ['Tom', 'helped', 'me.'], ['What', 'happened', 'to', 'us?'], ["Don't", 'make', 'it', 'feel', 'to', 'be', 'a', 'nice', 'guy.'], ['The', 'soldiers', 'laughed.'], ['When', 'your', 'schedule', 'is', 'busy', 'schedule.'], ['I', 'was', 'alone', 'the', 'only', 'one', 'late.'], ['This', 'book', 'belongs', 'to', 'me.'], ['We', 'are', 'much', 'on', 'the', 'rumor', 'very', 'much', 'of', 'the', 'ice', 'of', 'the', 'ice', 'of', 'the', 'ice', 'of', 'the', 'pond.'], ['You', "don't", 'seem', 'to', 'be', 'with', 'us', 'with', 'us.'], ['She', 'lives', 'in', 'this', 'village.'], ['She', 'does', 'him', 'when', 'she', 'eats', 'eggs.'], ['He', 'asked', 'me', 'to', 'open', 'the', 'door.'], ['I', 'may', 'not', 'change', 'any', 'religion.'], ['It', 'appeared', 'to', 'us', 'there.'], ['We', 'arrived', 'nervous', 'and', 'charming.'], ['Your', 'meal', 'is', 'well', 'so', 'dangerous.'], ['No', 'one', 'else', "couldn't", 'do', 'the', 'job.'], ["I'm", 'a', 'friend.'], ['I', "don't", 'understand', 'the', 'toilet', 'rules.'], ['I', 'was', 'being', 'beautiful.'], ['I', 'never', 'thought', 'I', 'would', 'ever', 'think', 'about', 'it.'], ["I'm", 'not', 'the', 'best', 'young', 'my', 'father.'], ['Are', 'you', 'sure', 'you', "don't", 'want', 'something', 'to', 'eat?'], ['Tom', 'knew', 'there', 'was', 'a', 'problem.'], ["I'll", 'handle', 'it.'], ['You', "don't", 'have', 'to', 'do', 'this', 'if', 'you', "don't", 'want', 'to.'], ['The', 'weather', 'is', 'terrible.'], ['You', 'may', 'be', 'right.'], ['Whether', 'we', 'agree', 'to', 'achieve', 'our', 'opinions', 'no', 'other', 'or', 'not.'], ['I', "don't", 'know', 'if', 'I', 'do', 'anything.'], ["There's", 'no', 'toilet', 'paper.'], ['Do', 'you', 'know', 'what', 'happens', 'to', 'him,', 'this', 'is?'], ['He', 'ran', 'like', 'a', 'lot.'], ['Every', 'word', 'is', 'missing.'], ['Go', 'before', 'you', 'answer.'], ['She', 'told', 'him', 'more', 'loudly.'], ['Tom', 'really', 'does', 'not', 'know', 'how', 'very', 'well.'], ['I', 'want', 'your', 'medicine', 'at', 'the', 'end', 'of', 'the', 'day.'], ['I', "don't", 'like', 'his', 'face.'], ['I', 'met', 'a', 'girl', 'who', 'had', 'met', 'in', 'Boston.'], ['No', 'one', 'knows', 'their', 'name.'], ['The', 'roof', 'is', 'broken.'], ["I'm", 'delighted', 'to', 'meet', 'you.'], ['He', 'is', 'not', 'old', 'enough', 'to', 'live.'], ['He', 'sells', 'cars.'], ['Why', 'do', 'you', 'need', 'a', 'problem?'], ['Even', 'the', 'kill', 'kill', 'kill', 'stars', 'from', 'me.'], ['Keep', 'the', 'subject.'], ['I', 'thought', 'she', 'was', 'sick.'], ['Tom', 'will', 'be', 'back', 'soon.'], ["I'm", 'not', 'in', 'love', 'with', 'you.'], ['Even', 'I', 'was', 'so', 'much', 'I', 'left', 'my', 'homework.'], ['We', 'want', 'some', 'change.'], ['I', "can't", 'fall', 'at', 'work', 'because', 'of', 'the', 'noise.'], ["I'm", 'tired', 'of', 'having', 'worked', 'quickly.'], ["It's", 'really', 'more', 'necessary.'], ['We', 'met', 'with', 'Tom.'], ['You', 'seem', 'a', 'little', 'depressed.'], ['We', 'are', 'just', 'sold', 'out', 'our', 'shoes.'], ['This', 'is', 'a', 'little', 'fat.'], ['I', 'enjoyed', 'talking', 'to', 'you', 'at', 'the', 'party.'], ['I', 'just', 'want', 'to', 'know', 'as', 'much', 'as', 'I', 'can.'], ['There', 'are', 'everywhere.'], ['I', 'like', 'rock', 'music.'], ['Everyone', 'was', 'satisfied.'], ['Be', 'kind', 'to', 'her.'], ["That's", 'not', 'a', 'either.'], ['I', "don't", 'have', 'time', 'for', 'a', 'walk.'], ['He', 'banged', 'his', 'breath.'], ['I', 'know', "you're", 'busy,', 'but', 'I', 'could', 'use', 'some', 'help.'], ['What', 'kind', 'of', 'things', 'do', 'you', 'have', 'to', 'do?'], ['I', 'am', 'sure', 'that', 'guy', 'is', 'playing', 'tennis', 'at', 'the', 'guitar.'], ['I', 'heard', 'Tom', 'kissed', 'Mary.'], ["Don't", 'say', 'anything', 'about', 'that?'], ['The', 'animals', 'are', 'afraid', 'of', 'fire.'], ['The', 'office', 'is', 'on', 'the', 'door.'], ['Please', 'have', 'a', 'son', 'like', 'that.'], ['Where', 'were', 'you', 'last', 'night?'], ['I', "don't", 'want', 'to', 'be', 'late', 'for', 'first', 'late', 'for', 'first', 'late', 'first', 'day.'], ['He', 'is', 'angry', 'when', 'he', 'gets', 'mad.'], ['I', 'finally', 'made', 'up', 'my', 'appointment', 'to', 'get', 'a', 'stomachache.'], ['Stop', 'all', 'that', 'you', 'have', 'to', 'do', 'this', 'time.'], ['Tom', 'and', 'Mary', 'are', 'gone.'], ['I', 'was', 'shaken.'], ['I', 'drink', 'my', 'tea', 'without', 'sugar.'], ['I', 'never', 'saw', 'you.'], ['Let', 'me', 'answer', "Tom's", 'question.'], ['I', 'want', 'to', 'know', 'how', 'that', 'happens.'], ['I', 'believed', 'myself', 'that', 'I', 'walked', 'in', 'the', 'television.'], ['I', 'want', 'to', 'apologize', 'to', 'everyone.'], ['What', 'are', 'you', 'talking', 'about?'], ['This', "isn't", 'a', 'problem.'], ['All', 'your', 'problems', 'have', 'been', 'problems.'], ['Even', 'though', 'he', "can't", 'solve', 'the', 'problem.'], ['He', 'is', 'happy', 'to', 'everyone.'], ['The', 'soldiers', 'were', 'ready', 'to', 'keep', 'their', 'students.'], ['They', 'used', 'to', 'spend', 'the', 'best', 'of', 'having', 'three', 'times.'], ['You', 'should', 'quit', 'smoking.'], ["We're", 'divorced.'], ['Can', 'you', 'read', 'this', 'kanji?'], ['When', 'there', 'was', 'a', 'bad', 'time', 'for', 'me.'], ['They', 'have', 'to', 'wait.'], ['See', 'what', 'happens', 'when', 'you', 'remember?'], ["Tom's", 'birthday', 'was', 'invited', 'by', 'mosquitoes.'], ['I', 'saw', 'it', 'for', 'you.'], ['Tom', 'was', 'afraid', 'of', 'the', 'one', 'who', 'lives', 'at', 'home.'], ['Where', 'do', 'you', 'write?'], ['Tom', 'is', 'a', 'student', 'at', 'least', 'a', 'Chinese', 'student.'], ['He', 'seems', 'to', 'love', 'at', 'her.'], ['That', 'brings', 'nothing', 'to', 'me.'], ['Are', 'you', 'relaxed?'], ['The', 'boy', 'got', 'stuck', 'in', 'the', 'room.'], ['Tom', 'is', 'very', 'worried.'], ["That's", 'alright.'], ['Can', 'you', 'tell', 'us', 'what', 'happened?'], ['They', 'are', 'going', 'to', 'wake', 'us', 'until', 'morning.'], ["I'll", 'give', 'the', 'car', 'in', 'the', 'garage.'], ['How', 'much', 'did', 'it', 'do', 'this?'], ["I'd", 'like', 'to', 'talk', 'with', 'you', 'a', 'minute.'], ['You', 'can', 'do', 'it', 'if', 'you', 'do', 'it.'], ['I', 'need', 'to', 'be', 'a', 'few', 'minutes.'], ['Why', "don't", 'you', 'put', 'a', 'haircut?'], ['You', "don't", 'have', 'to', 'answer.'], ["There's", 'not', 'too', 'long', 'to', 'read', 'the', 'day.'], ['Are', 'you', 'doing', 'here?'], ['Will', 'he', 'be', 'back?'], ["I'm", 'sorry', 'for', 'your', 'loss.'], ["It's", 'as', 'you', 'say.'], ["Don't", 'talk', 'to', 'you', 'now.'], ['They', "don't", 'need', 'that', 'anymore.'], ['His', 'office', 'is', 'from', 'mine.'], ['Mary', "can't", 'do', 'that', 'anymore.'], ["You're", 'a', 'disgrace.'], ["Don't", 'you', 'have', 'dinner', 'today?'], ['I', 'wish', 'I', 'had', 'a', 'waste', 'of', 'time.'], ['Go', 'down', 'before', 'you', 'have', 'breakfast.'], ['He', 'kept', 'doing', 'that.'], ['He', 'was', 'sleeping', 'under', 'the', 'tree.'], ['I', "haven't", 'decided', 'yet.'], ['No', 'one', 'flinched.'], ['Tom', "can't", 'help', 'you', 'anymore.'], ["What's", 'being', 'beautiful.'], ['I', "wasn't", 'interested', 'in', 'politics.'], ['No', 'one', "doesn't", 'mean', 'to', 'happen', 'about', 'the', 'point.'], ['I', "can't", 'go', 'with', 'you', 'tonight.'], ['Tom', 'gave', 'Mary', 'a', 'box', 'of', 'Mary.'], ['Who', 'do', 'you', 'have', 'some', 'questions?'], ['I', 'made', 'him', 'change', 'his', 'change', 'on', 'his', 'mind.'], ['We', 'play', 'a', 'lot', 'of', 'him.'], ["It's", 'been', 'a', 'joke.'], ['Hand', 'on', 'the', 'matter.'], ['Do', 'you', 'have', 'a', 'stroke', 'back?'], ["I'm", 'happy', 'to', 'be', 'happy', 'here.'], ['I', "don't", 'see', 'the', 'difference.'], ['I', "don't", 'have', 'a', 'reply.'], ['Your', 'problem', 'is', 'similar', 'to', 'mine.'], ['Do', 'you', 'want', 'to', 'come', 'or', 'not?'], ['Are', 'you', 'almost', 'here?'], ['Forget', 'I', 'said', 'that.'], ['I', 'regret', 'not', 'having', 'worked', 'harder.'], ['In', 'a', 'few', "what'll", 'will', 'be', 'true.'], ['We', 'can', 'handle', 'each', 'other.'], ["We're", 'glad', 'to', 'see', 'you.'], ['Any', 'people', 'and', 'most', 'of', 'us', 'can', 'try', 'it', 'by', 'the', 'other', 'day,'], ['Please', 'show', 'me', 'the', 'book.'], ['Stay', 'positive.'], ['Now', 'he', 'is', 'likely', 'to', 'buy', 'a', 'new', 'one.'], ['Tom', 'put', 'his', 'gun', 'in', 'the', 'bush.'], ['Hurry', 'up,', 'we', 'can', 'leave.'], ["Don't", 'go', 'without', 'a', 'hat.'], ['I', 'have', 'a', 'slight', 'job.'], ['We', 'are', 'talking', 'to', 'the', 'salt.'], ['I', "don't", 'like', 'him.'], ['You', 'drive', 'in', 'the', 'room.'], ["I'm", 'sorry', 'I', 'dragged', 'you', 'into', 'this.'], ["They're", 'rich.'], ["Don't", 'be', 'late', 'for', 'late', 'yet.'], ['I', 'am', 'afraid', 'of', 'my', 'back.'], ['The', 'Cold', 'weather', 'was', 'postponed', 'by', 'their', 'own.'], ['We', 'still', 'have', 'the', 'ability', 'to', 'work.'], ['What', 'new', 'fish', 'all', 'of', 'these', 'people', 'have', 'come', 'from?'], ["What's", 'your', 'name?'], ['I', 'brought', 'you', 'a', 'gift.'], ['You', "don't", 'need', 'to', 'talk.'], ['Be', 'content.'], ["That's", 'a', 'lot', 'too', 'heavy.'], ['Tom', 'has', 'achieved', 'his', 'goals.'], ['I', 'do', 'my', 'friend.'], ["Let's", 'do', 'this', 'now.'], ["You're", 'not', 'my', 'friend', 'anymore.'], ['Who', 'ate', 'my', 'keys?'], ['Wear', 'whatever', 'you', 'want.'], ["I'm", 'not', 'saying', 'anything', 'else.'], ['I', 'have', 'a', 'bad', 'impression.'], ['Is', 'the', 'catch?'], ['Maybe', 'I', 'should', 'talk', 'to', 'my', 'office.'], ['Tom', 'works', 'with', 'Mary.'], ['I', 'have', 'to', 'finish', 'the', 'test', 'today.'], ['That', 'sounded', 'like', 'me.'], ['I', 'went', 'to', 'the', 'stairs.'], ["You're", 'a', 'good', 'bass', 'player.'], ['Just', 'a', 'good', 'hot', 'bath.'], ['If', "there's", 'a', 'while,', 'we', 'will', 'reach', 'a', 'walk', 'in', 'the', 'pond.'], ['I', 'brush', 'my', 'teeth.'], ['I', 'was', 'tired', 'of', 'the', 'school', 'to', 'bed.'], ['The', 'restaurant', 'was', 'covered', 'with', 'birth.'], ['I', 'remember', 'giving', 'me', 'the', 'money', 'that', 'spoke', 'to', 'me.'], ['This', 'is', 'a', 'true', 'problem.'], ["You're", 'winning.'], ['She', 'has', 'a', 'small', 'dog', 'black.'], ["What's", 'the', 'salad?'], ['We', 'had', 'the', 'perfect', 'Canadian', 'We', 'have', 'failed.'], ['He', 'is', 'a', 'man', 'you', 'can', 'rely', 'on.'], ['Have', 'you', 'ever', 'had', 'a', 'speeding', 'ticket?'], ['She', 'is', 'ashamed', 'of', 'her', 'old', 'clothes.'], ["It's", 'just', 'above', 'you.'], ['I', 'got', 'really', 'hungry.'], ['Tom', 'is', 'trying', 'to', 'avoid', 'taxes.'], ['Tom', "couldn't", 'stop', 'laughing.'], ['Write', 'for', 'the', 'future', 'to', 'meet', 'people.'], ['I', 'am', 'so', 'tired', 'that', 'I', "can't", 'do', 'anything', 'I', "can't", 'face.'], ['Tom', 'wanted', 'to', 'see', "Mary's", 'room.'], ['We', 'got', 'your', 'message.'], ["You've", 'been', 'selected.'], ['This', 'soup', 'is', 'beautiful.'], ['We', 'are', 'looking', 'forward', 'to', 'seeing', 'you', 'again.'], ['Can', 'you', 'tell', 'me', 'who', 'they', 'are?'], ['How', 'do', 'we', 'have', 'to', 'do', 'that?'], ['This', 'is', 'the', 'best', 'city', 'of', 'my', 'life.'], ['They', 'were', 'fascinated', 'by', 'the', 'flood.'], ['He', 'opened', 'the', 'door.'], ["There's", 'a', 'good', 'chance', 'that', 'he', 'is', 'late.'], ['Are', 'you', 'going', 'to', 'get', 'up', 'the', 'next', 'time?'], ['Is', 'this', 'seat', 'empty?'], ['We', 'are', 'under', 'the', 'big', 'attack.'], ['Where', 'is', 'the', 'evidence?'], ['This', 'health', 'is', 'finally', 'over.'], ['Dogs', 'are', 'often', 'every', 'winter.'], ['She', 'planted', 'a', 'cottage', 'at', 'the', 'man.'], ["I'm", 'pooped.'], ['They', 'used', 'to', 'swim', 'around', 'the', 'water', 'and', 'built', 'a', 'college', 'mountain', 'and', 'a', 'mountain'], ['I', 'still', "don't", 'love', 'him.'], ['I', "don't", 'know', 'where', 'he', 'comes', 'now.'], ['I', 'have', 'some', 'trouble.'], ['He', 'poured', 'up', 'to', 'stop', 'due', 'to', 'the', 'night.'], ['You', 'must', 'leave.'], ['I', 'know', "you're", 'very', 'beautiful.'], ['My', 'family', 'is', 'very', 'proud', 'of', 'me.'], ['He', 'asked', 'me', 'more', 'than', 'necessary.'], ["She's", 'not', 'there.'], ['Tom', "isn't", 'invited.'], ['I', 'think', 'I', 'can', 'do', 'that.'], ['It', 'cost', 'me', 'a', 'way', 'to', 'repair', 'my', 'car.'], ['I', 'remember', 'a', 'lot', 'of', 'thing.'], ['He', 'suffers', 'from', 'a', 'headache.'], ['She', 'picked', 'up', 'a', 'window', 'in', 'the', 'dress.'], ['I', 'am', 'tired', 'of', 'breath.'], ['This', 'bird', "can't", 'fly.'], ["Don't", 'let', 'me', 'go.'], ['How', 'could', 'you', 'eat', 'a', 'cold', 'at', 'the', 'time?'], ["I'd", 'like', 'to', 'take', 'your', 'group.'], ['We', 'got', 'married', 'and', 'got', 'married.'], ['I', 'cooked', 'lunch.'], ['I', "don't", 'know.'], ['What', 'happens', 'if', 'this', 'happen?'], ["It's", 'worse', 'than', 'I', 'thought.'], ['Can', 'I', 'write', 'on', 'the', 'phone.'], ['Tom', 'lost', 'a', 'lost', 'arm', 'for', 'lost', 'war.'], ["Let's", 'sell', 'the', "children's", 'of', 'the', 'children.'], ['Where', 'do', 'you', 'want', 'to', 'do', 'it?'], ['I', 'want', 'to', 'be', 'back', 'before', 'entering', 'my', 'room.'], ['He', 'is', 'in', 'business', 'with', 'all', 'kinds', 'of', 'people.'], ['I', "don't", 'think', 'so.'], ['I', 'push', 'the', 'radio', 'on', 'the', 'radio.'], ['You', "don't", 'have', 'to', 'lose', 'hope.'], ['What', 'are', 'you', 'doing', 'there', 'for?'], ["They're", 'working', 'with', 'a', 'full', 'terms', 'with', 'their', 'workers.'], ["It's", 'quite', 'strange.'], ['We', 'stayed', 'up', 'all', 'night.'], ['You', 'seem', 'so', 'happy.'], ['He', 'told', 'me', 'that', 'he', 'will', 'come', 'the', 'next', 'day.'], ['Are', 'you', 'going', 'to', 'go', 'to', 'work?'], ['Tom', 'asked', 'me', 'to', 'come', 'here.'], ['She', 'promised', 'she', 'she', "didn't", 'know.'], ['Practice', 'is', 'the', 'crime', 'to', 'sign', 'under', 'the', 'sign', 'is', 'out.'], ['Who', 'would', 'do', 'this?'], ['Kobe', 'is', 'the', 'city', 'where', 'I', 'was', 'born.'], ['I', "don't", 'want', 'to', 'tell.'], ['How', 'big', 'is', 'that?'], ["I've", 'always', 'been', 'very', 'proud', 'of', 'that.'], ['He', 'acknowledged', 'his', 'own', 'theory.'], ['My', 'father', 'gave', 'me', 'a', 'lot', 'of', 'money.'], ['He', 'took', 'over', 'his', "father's", 'father.'], ['We', 'heard', 'the', 'boy', 'heard', 'the', 'violin.'], ['Oranges', 'are', 'sweeter', 'than', 'mine.'], ['I', "don't", 'think', 'anything', 'was', 'what', 'you', 'ever', 'think', 'of', 'anything.'], ['Tom', 'never', 'married.'], ["That's", 'not', 'exactly', 'what', 'I', 'wanted.'], ['I', 'want', 'someone', 'who', 'can', 'speak', 'French.'], ['I', 'saw', 'him', 'crossing', 'the', 'street.'], ['I', "didn't", 'even', 'see', 'a', 'letter', 'from', 'her.'], ['Are', 'you', 'sure', "we've", 'never', 'met', 'before?'], ["That's", 'a', 'stupid', 'idea.'], ['Let', 'us', 'details.'], ['Are', 'you', 'sure', "there's", 'anything', 'else', 'to', 'drink?'], ["You're", 'a', 'good', 'guy.'], ['The', 'meeting', 'was', 'miserable', 'yesterday.'], ["You've", 'been', 'cleared', 'of', 'all', 'charges.'], ['Please', "don't", 'leave', 'me', 'alone', 'here.'], ['It', 'was', 'the', 'night', 'of', 'my', 'room.'], ['She', 'dumped', 'him', 'for', 'a', 'few', 'years.'], ['Tom', "doesn't", 'care', 'what', 'he', 'wants.'], ['Would', 'you', 'mind', 'shutting', 'the', 'door?'], ['Frankly', 'speaking,', 'he', 'is', 'important.'], ['He', 'was', 'disappointed.'], ['Give', 'me', 'your', 'phone', 'number.'], ['Salmon', 'will', 'be', 'forty', 'for', 'the', 'streets', 'and', 'pants', 'and', 'spoon.'], ['We', 'went', 'to', 'sleep', 'at', 'least', 'thirty', 'minutes', 'far', 'from', 'lunch.'], ['He', "didn't", 'notice', 'he', 'was', 'sleeping.'], ["What's", 'the', 'name', 'of', 'this', 'name?'], ["I'll", 'be', 'back', 'by', 'next', 'time.'], ['Christmas', 'is', 'a', 'great', 'singer.'], ['I', 'spilled', 'my', 'coat', 'on', 'my', 'coat.'], ['I', "didn't", 'prove', 'anything.'], ['I', 'suppose', 'you', 'need', 'help.'], ['My', 'father', "doesn't", 'want', 'to', 'sell', 'my', 'wife', 'anymore.'], ["I've", 'sent', 'you', 'two', 'early', 'ago.'], ['Be', 'content.'], ['I', 'had', 'a', 'lot', 'of', 'fun', 'playing', 'golf.'], ["I'll", 'be', 'back', 'at', 'seven.'], ['Why', 'are', 'you', 'wearing', 'that?'], ['I', 'continue', 'to', 'help', 'and', 'I', 'look.'], ['Do', 'you', 'know', 'when', 'he', 'will', 'come', 'back?'], ["You'll", 'have', 'the', 'kids.'], ['I', 'need', 'to', 'get', 'some', 'children', 'to', 'bed.'], ['This', 'painting', 'is', 'a', 'really', 'worker.'], ['Would', 'you', 'ever', 'think', 'they', 'would', 'have', 'been', 'doing', 'that?'], ['Excuse', 'me,', 'do', 'you', 'have', 'such', 'a', 'thing?'], ['We', 'have', 'three', 'trees', 'in', 'our', 'garden.'], ["They're", 'spies.'], ['The', 'students', 'are', 'in', 'this', 'case.'], ['Please', 'smile.'], ['This', 'book', 'is', 'interesting.'], ['I', 'often', 'pay', 'my', 'homework', 'before', 'dinner.'], ['Is', 'she', 'at', 'home?'], ['I', 'thought', 'you', 'might', 'want', 'a', 'bottle', 'of', 'spending', 'bottle', 'of', 'wine.'], ['God', 'sent', 'a', 'sign.'], ['That', "wouldn't", 'be', 'easy.'], ['He', 'knows', 'the', 'truth.'], ['Why', "don't", 'you', 'take', 'a', 'nap?'], ['Did', 'you', 'have', 'something', 'that', 'you', 'had', 'done', 'to', 'do?'], ['It', 'happened', 'at', 'a', 'quarter', 'past', 'eleven.'], ['I', 'never', 'meant', 'if', 'ever,', 'agreed', 'to', 'be', 'held', 'on', 'the', 'hurry.'], ['Draw', 'a', 'circle.'], ['You', 'must', 'learn', 'to', 'be', 'careful.'], ['I', 'had', 'the', 'same', 'problem', 'as', 'you.'], ['I', 'love', 'doing', 'that.'], ['Are', 'you', 'sure', 'you', 'want', 'to', 'drink', 'water?'], ['You', "don't", 'get', 'too', 'sure.'], ['Tom', "hasn't", 'eaten', 'since', 'yesterday.'], ['I', "didn't", 'feel', 'like', 'trying', 'to', 'give', 'me', 'a', 'shot.'], ['I', 'had', 'trouble', 'finding', 'the', 'way', 'out.'], ['The', 'children', 'are', 'very', 'beautiful.'], ['I', "didn't", 'know', 'what', 'it', 'was.'], ['Are', 'these', 'or', 'staying?'], ['How', 'about', 'going', 'to', 'pay', 'for', 'this', 'stuff?'], ['Thank', 'you', 'right.'], ['Our', 'company', 'is', 'spreading.'], ['I', "can't", 'answer', 'your', 'question.'], ['Tom', 'went', 'to', 'the', 'park', 'to', 'park', 'at', 'the', 'bed.'], ['Tom', 'told', 'me', 'that', "he'd", 'be', 'late.'], ['need', 'needs', 'a', 'walk.'], ['How', 'dare', 'you', 'get', 'over', 'a', 'headache.'], ['Is', 'Tom', 'a', 'wedding?'], ['Not', 'all', 'else', 'go', 'to', 'jail.'], ['She', 'had', 'a', 'lot', 'of', 'money', 'at', 'the', 'bank.'], ["How's", 'your', 'new', 'with', 'this', 'new', 'job?'], ['Either', 'better', 'than', 'he', 'gets', 'silent.'], ['He', 'looked', 'at', 'me', 'with', 'me.'], ['Is', 'a', 'good', 'date,', "don't", 'you?'], ['I', 'refuse', 'to', 'answer', 'that.'], ["You're", 'not', 'allowed', 'in', 'this', 'room.'], ['Our', 'time', 'is', 'almost', 'over.'], ['Tie', 'your', 'shoe.'], ['I', 'was', 'walking', 'in', 'his', 'pocket.'], ['Would', 'you', 'do', 'something', 'easier?'], ['How', 'did', 'you', 'reach', 'such', 'an', 'interesting', 'conclusion?'], ['Why', 'do', 'you', 'want', 'to', 'become', 'a', 'nurse?'], ['What', 'are', 'I', 'afraid', 'of?'], ['The', 'more', 'you', 'study,', 'the', 'less', 'I', 'think', "you'll", 'think.'], ['We', 'painted', 'the', 'walls', 'white.'], ['Who', 'is', 'the', 'meaning', 'of', 'this', 'riddle?'], ['The', 'students', 'must', 'be', 'effective', 'by', "children's", 'children.'], ['Give', 'it', 'enough', 'to', 'have', 'gotten', 'up', 'early', 'in', 'the', 'report', 'by', 'himself.'], ['The', 'recent', 'hair', 'is', 'full', 'of', 'relief.'], ['His', 'heart', 'has', 'he', 'jumped'], ["Let's", 'be', 'here.'], ['I', "don't", 'think', 'I', 'can', 'help', 'you.'], ['Honesty', 'is', 'the', 'last', 'one', 'of', 'the', 'lunch.'], ["What's", 'the', 'answer', 'this', 'key?'], ["Who's", 'that', 'cute', 'guy', 'I', 'saw', 'you', 'with', 'the', 'mall?'], ['We', 'took', 'a', 'taxi', 'to', 'be', 'late.'], ['Keep', 'your', 'room', 'as', 'neat', 'as', 'you', 'can.'], ["I'm", 'not', 'the', 'only', 'one', 'who', 'can', 'do', 'that.'], ['He', 'was', 'full', 'of', 'him', 'to', 'get', 'divorced'], ['Everyone', 'started', 'to', 'go.'], ["I'll", 'give', 'you', 'a', 'good', 'time.'], ['Did', 'Tom', 'kill', 'Tom?'], ['Stop', 'crying', 'like', 'a', 'girl.'], ['My', 'cousin', 'is', 'trying', 'to', 'smoke.'], ['My', 'girlfriend', 'is', 'crying.'], ['I', 'wanted', 'you', 'to', 'be', 'so', 'sorry', 'that', "I'm", 'not', 'bad.'], ['They', 'lied.'], ['The', 'stock', 'plane', 'took', 'a', 'large', 'way', 'to', 'make', 'a', 'big', 'piece', 'of', 'wine.'], ['Where', 'exactly', 'are', 'we', 'fighting?'], ['He', 'speaks', 'well.'], ['These', 'people', 'hate', 'people', 'like', 'hotcakes.'], ['I', 'just', 'wanted', 'to', 'help', 'Tom.'], ['Why', "didn't", 'you', 'start', 'before', 'we', 'go?'], ["We're", 'not', 'married.'], ['He', 'made', 'a', 'strong', 'cold.'], ['He', 'went', 'to', 'danger.'], ['Do', 'you', 'want', 'me', 'to', 'call', 'the', 'police?'], ['Give', 'me', 'thirty', 'seconds.'], ["There's", 'something', 'we', 'have', 'a', 'drink.'], ['I', "don't", 'think', "it'll", 'rain', 'this', 'afternoon.'], ['Thanks', 'for', 'your', 'explanation.'], ['I', 'will', 'get', 'up', 'at', 'four.'], ['We', 'should', 'go,', 'so', 'much?'], ["Let's", 'make', 'fun', 'of', 'our', 'friends.'], ['I', 'had', 'a', 'lot', 'of', 'hours', 'on', 'your', 'hand', 'and', 'put', 'you.'], ['Is', 'this', 'your', 'wallet?'], ['I', 'thought', 'you', 'had', 'a', 'place', 'to', 'live.'], ['He', 'has', 'everything?'], ['Are', 'you', 'a', 'creature', 'of', 'habit?'], ['Are', 'you', 'as', 'tall', 'Tom?'], ['I', "didn't", 'notice', 'everything', 'she', 'was', 'wrong.'], ['I', 'watched', 'a', 'movie.'], ["Don't", 'be', 'serious.'], ['He', 'is', 'the', 'man', 'I', 'got.'], ['I', "didn't", 'want', 'to', 'die.'], ['Why', 'are', 'you', 'busy', 'today?'], ['They', 'walked', 'upstairs.'], ['She', 'ordered', 'the', 'book', 'from', 'London.'], ['She', 'teaches', 'English.'], ['We', "couldn't", 'convince', 'him', 'to', 'save', 'his', 'company.'], ['You', 'still', "haven't", 'told', 'me', 'why', 'you', 'have', 'enough', 'job.'], ['The', 'population', 'of', 'this', 'language', 'is', 'beautiful.'], ['Did', 'you', 'get', 'hurt?'], ["Let's", 'see', 'a', 'movie.'], ['Soccer', 'is', 'as', 'thin', 'as', 'the', 'teacher.'], ['The', 'guy', 'is', 'in', 'bed.'], ['Some', 'hard', 'is', 'worth', 'discussing.'], ["I'm", 'glad', 'to', 'see', 'you', 'happy.'], ['He', 'is', 'far', 'from', 'the', 'best', 'player', 'from', 'here', 'to', 'the', 'team.'], ['What', 'time', 'do', 'you', 'get', 'down', 'on', 'your', 'class', 'here?'], ["I'll", 'go', 'to', 'the', 'car.'], ['I', 'am', 'trying', 'to', 'stop', 'eating.'], ['I', 'asked', 'a', 'few', 'questions', 'for', 'the', 'doctor.'], ["You're", 'too', 'trusting.'], ['Nobody', 'cares', 'what', 'you', 'think.'], ['I', 'saw', 'them.'], ['We', 'had', 'little', 'water.'], ["It's", 'rare', 'to', 'climb', 'from', 'the', 'members', 'of', 'the', 'members', 'of', 'sleep.'], ["Don't", 'push', 'it.'], ['I', 'am', 'taking', 'advantage', 'of', 'this', 'time', 'with', 'my', 'days.'], ['I', 'understand', 'completely.'], ['He', 'passed', 'all', 'the', 'test', 'all.'], ['I', "don't", 'know', 'what', 'we', 'want', 'to', 'find', 'out', 'or', 'something.'], ['I', 'will', 'not', 'see', 'the', 'movies.'], ['She', 'was', 'very', 'rude', 'to', 'him.'], ['I', 'told', 'them', 'that', 'I', 'could', 'help', 'you,', 'so', 'I', 'would', 'not', 'have', 'any', 'help.'], ['Would', 'you', 'like', 'to', 'go', 'to', 'a', 'movie', 'tonight?'], ["You've", 'got', 'a', 'big', 'mouth.'], ['I', 'talked', 'to', 'him', 'on', 'his', 'president.'], ['She', 'looks', 'like', 'her', 'grandmother.'], ['Are', 'you', 'wondering', 'what', 'we', 'have', 'to', 'do', 'with', 'us', 'about', 'it?'], ['He', 'made', 'a', 'decision', 'decision.'], ["That's", 'kind', 'of', 'you', 'to', 'say.'], ['I', 'know', "I'm", 'in', 'a', 'big', 'one.'], ['What', 'kind', 'of', 'fruit', 'do', 'you', 'have?'], ['He', 'asked', 'on', 'smoking', 'with', 'the', 'rest', 'of', 'their', 'students.'], ['I', 'have', 'to', 'hear', 'this', 'sentence.'], ['I', 'want', 'to', 'know', 'who', 'they', 'are.'], ["Let's", 'speak', 'French.'], ['Darwin', 'changed', 'the', 'world.'], ['I', 'really', 'want', 'to', 'see', 'you.'], ['This', 'is', 'the', 'end', 'of', 'the', 'year.'], ['He', 'is', 'trying', 'to', 'help', 'me', 'whatever', 'is', 'trying', 'to', 'save', 'money.'], ['I', 'invited', 'him', 'at', 'home.'], ['Keep', 'away', 'from', 'the', 'dog.'], ['This', 'kind', 'of', 'easy', 'is', 'easy', 'to', 'ask', 'me.'], ['Are', 'you', 'living', 'in', 'love', 'again?'], ['Do', 'you', 'know', 'those', 'words?'], ["It's", 'like', 'being', 'a', 'candy'], ['I', 'was', 'too', 'naive.'], ['What', 'a', 'nice', 'tie'], ['This', 'town', 'has', 'been', 'upset?'], ['I', "can't", 'believe', "I'm", 'being', 'happy', 'to', 'find', 'me.'], ['Would', 'you', 'please', 'tell', 'me?'], ['I', "don't", 'want', 'any', 'of', 'these', 'things.'], ['We', 'will', 'hurry.'], ['The', 'United', 'States', 'in', 'Boston.'], ['Why', "don't", 'you', 'take', 'a', 'break?'], ['I', 'want', 'things', 'to', 'be', 'all.'], ['You', 'will', 'speak', 'more', 'later.'], ["You'd", 'better', 'keep', 'the', 'doctor.'], ['Loosen', 'up.'], ['I', 'put', 'some', 'cream', 'in', 'my', 'coffee.'], ['Who', 'plays', 'the', 'country', 'in', 'the', 'country', 'shop?'], ['I', 'wonder', 'what', 'his', 'name', 'is.'], ['Tom', 'is', 'a', 'carpenter.'], ['Come', 'at', 'the', 'train', 'immediately.'], ['You', 'need', 'to', 'lose', 'weight.'], ['The', 'students', 'will', 'work', 'hard.'], ['There', 'is', 'no', 'milk', 'in', 'the', 'rest', 'of', 'the', 'refrigerator.'], ['You', 'might', 'be', 'shy.'], ['I', 'still', 'have', 'still', 'a', 'little', 'early.'], ['I', 'tried', 'to', 'find', 'out', 'of', 'people', 'to', 'find', 'away', 'from', 'his', 'parents.'], ['You', "shouldn't", 'despise', 'a', 'man', 'because', 'he', 'is', 'poor.'], ['He', 'was', 'standing', 'behind', 'his', 'mother.'], ['I', 'dream', 'about', 'my', 'way', 'home.'], ['It', 'was', 'a', 'great', 'deal.'], ['It', 'was', 'his', 'fault.'], ['If', 'you', 'can', 'make', 'sure', 'you', 'can', 'do', 'it.'], ["You're", 'not', 'telling', 'me', 'what', "you're", 'talking', 'to.'], ['I', 'wanted', 'to', 'protect', 'you.'], ['The', 'only', 'thing', 'that', 'matters', 'is', 'that', 'you', 'are', 'alive.'], ['It', "doesn't", 'have', 'to', 'make', 'for', 'me.'], ['You', 'should', 'be', 'late', 'to', 'go', 'to', 'school.'], ['I', "haven't", 'had', 'much', 'lately.'], ['I', 'guess', "that's", 'possible.'], ['Do', 'you', 'study', 'French?'], ['I', 'am', 'looking', 'forward', 'to', 'leaving', 'this', 'place.'], ['Many', 'Americans', 'were', 'covered', 'by', 'the', 'two', 'windows.'], ['He', "doesn't", 'remember', 'anything.'], ['You', 'must', 'study', 'his', 'lack', 'of', 'ten.'], ['He', 'sent', 'a', 'small', 'date.'], ['I', 'just', 'wanted', 'to', 'say', 'I', 'love', 'you.'], ['Tom', 'had', 'his', 'parents.'], ['I', 'have', 'the', 'same', 'problem', 'as', 'you.'], ["Let's", 'wait', 'here.'], ['This', "isn't", 'a', 'liar.'], ['Tom', 'is', 'three', 'years', 'since', 'I', 'met', 'you?'], ['I', "don't", 'know', 'why', 'it', 'is.'], ['Tom', 'heard', 'the', 'report', 'when', 'he', 'heard', 'the', 'report', 'to', 'see', 'a', 'gunshot.'], ['I', 'feel', 'like', 'going', 'out', 'of', 'breath.'], ['I', 'want', 'to', 'see', 'more.'], ['You', 'should', 'be', 'more', 'careful', 'next', 'time.'], ["It's", 'a', 'nice', 'day,', "isn't", 'it?'], ['He', 'finally', 'achieved', 'his', 'goal.'], ['She', 'kept', 'him', 'for', 'waiting.'], ['I', 'like', 'coffee.'], ["You're", 'not', 'the', 'only', 'Canadian', 'here.'], ['Go', 'on', 'the', 'help', 'you', 'want?'], ["That's", 'what', 'I', 'want', 'to', 'do', 'now.'], ['Is', 'that', 'why', 'you', "don't", 'want', 'to', 'help?'], ['Do', 'you', 'know', 'something', 'about', 'this?'], ['He', 'suggested', 'that', 'I', 'go', 'to', 'the', 'party.'], ['Are', 'you', 'ready', 'for', "today's", 'game?'], ['When', 'do', 'you', 'meet', 'Japan', 'in', 'the', 'kitchen?'], ['Fortunately,', 'no', 'one', 'was', 'hurt.'], ["Can't", 'you', 'see', "I'm", 'busy?'], ['I', 'have', 'to', 'go,', 'but', 'I', "don't", 'want', 'to.'], ['Tom', "isn't", 'a', 'child', 'here.'], ['I', 'got', 'the', 'stairs', 'by', 'the', 'salesman.'], ['Tell', 'the', 'children', 'to', 'do', 'the', 'beds.'], ["You're", 'smarter', 'than', 'I', 'used', 'to', 'be.'], ['What', 'happened', 'to', 'you', 'about', 'him?'], ["We've", 'already', 'old.'], ['He', 'talks', 'as', 'if', 'he', 'would', 'be', 'a', 'child.'], ['Women', 'are', 'better', 'than', 'men.'], ['Generally', 'speaking,', 'the', 'air', 'becomes', 'over', 'the', 'cold.'], ['What', 'did', 'you', 'do', 'during', 'the', 'summer', 'vacation?'], ['I', "can't", 'read', 'on', 'the', 'subject.'], ['Do', 'you', 'have', 'any', 'chance?'], ['I', 'am', 'often', 'often', 'up', 'with', 'the', 'dictionary.'], ['He', 'died', 'from', 'his', 'son', 'before', 'he', 'died.'], ['Tom', 'is', 'older', 'than', 'Mary.'], ['Pray', 'for', 'all', 'of', 'us.'], ['I', 'feel', 'like', 'an', 'idiot.'], ['She', 'takes', 'advantage', 'of', 'time.'], ['Tom', 'slept', 'in', 'the', 'room.'], ['You', 'had', 'a', 'good', "night's", 'stop.'], ['Do', 'you', 'want', 'us', 'all', 'two', 'are', 'going', 'to', 'buy', 'us?'], ["I'm", 'going', 'on', 'the', 'other', 'one.'], ['I', 'know', 'that', 'Tom', 'is', 'a', 'bright', 'kid.'], ["Let's", 'meet', 'our', 'teacher', 'at', 'the', 'party.'], ['If', 'you', 'tell', 'me', 'the', 'way', 'to', 'see', 'you', 'the', 'way', 'to', 'the', 'station.'], ['toothbrush.', 'are', 'looking', 'for', 'your', 'teeth.'], ['The', 'children', 'are', 'not', 'permitted', 'to', 'get', 'their', 'children', 'and', 'clothing.'], ['Can', 'you', 'write', 'in', 'longhand.'], ['I', "didn't", 'understand', 'what', 'he', 'said.'], ['Where', 'are', 'your', 'kids?'], ["You're", 'no', 'saint.'], ['I', 'thought', 'I', 'saw', 'a', 'ghost.'], ['Just', 'give', 'me', 'a', 'little', 'more', 'time.'], ["I'm", 'afraid', "I've", 'offended', 'you.'], ['He', 'had', 'an', 'appointment', 'for', 'hours.'], ['There', 'was', 'time', 'to', 'hear', 'that', 'happened.'], ['This', 'tea', 'is', 'very', 'sweet.'], ['He', 'will', 'be', 'back', 'in', 'my', 'brother', 'for', 'three', 'days.'], ['Are', 'you', 'in', 'Boston?'], ['We', 'sent', 'a', 'lecture', 'on', 'a', 'diet.'], ['Did', 'I', 'miss', 'this', 'flight.'], ["I'm", 'going', 'to', 'have', 'a', 'nap', 'after', 'lunch.'], ['I', "don't", 'eat', 'a', 'lot', 'of', 'fruit.'], ['I', 'hate', 'this', 'job.'], ['What', 'a', 'terrible', 'rose.'], ['I', 'really', 'wish', 'I', "didn't", 'want', 'to', 'go', 'to', 'this', 'afternoon.'], ['I', 'have', 'to', 'remember', 'the', 'letter.'], ['He', 'tried', 'to', 'swim', 'against', 'the', 'swimming', 'pool.'], ['Everywhere', 'you', 'look', 'you', 'can', 'see', 'damage', 'in', 'the', 'earthquake.'], ["Don't", 'be', 'too', 'sensitive', 'to', 'criticism.'], ['This', 'movie', 'morning,', 'I', 'was', 'a', 'kid.'], ['My', 'uncle', 'lived', 'in', 'Boston', 'for', 'two', 'years.'], ['Why', 'are', 'we', 'looking', 'care', 'with', 'the', 'world', 'are', 'you?'], ["I'll", 'teach', 'him', 'when', 'she', 'comes.'], ['I', "can't", 'imagine', 'what', 'you', 'ask.'], ['This', 'is', 'worth', 'a', 'native', 'speaker.'], ['I', "can't", 'win.'], ['My', 'never', 'earn', 'never', 'to', 'earn', 'my', 'life.'], ["There's", 'a', 'little', 'chance', 'that', 'I', 'have.'], ["I'm", 'not', 'sure', 'anything.'], ['He', 'hid', 'the', 'children', 'to', 'the', 'sky.'], ['He', 'has', 'just', 'come', 'abroad.'], ['Everyone', 'left', 'the', 'building', 'in', 'the', 'sun', 'headed', 'to', 'the', 'same', 'bar.'], ['You', 'will', 'soon', 'come', 'to', 'his', 'advice,', 'you', "can't", 'come.'], ["I'm", 'not', 'that', 'drunk.'], ['Have', 'you', 'read', 'something', 'interesting', 'novels.'], ['Man', 'is', 'a', 'crime', 'for', 'humanity.'], ["It's", 'very', 'dark.'], ['I', 'knew', 'you', 'knew', 'that.'], ['You', "don't", 'look', 'so', 'busy.'], ['I', "won't", 'ever', 'believe', 'that.'], ['Tom', 'eats', 'twice', 'as', 'a', 'friend.'], ['If', "you're", 'not', 'happy,', 'quit.'], ['I', 'see', 'you', 'a', 'new', 'clothes.'], ['Why', 'do', 'you', 'want', 'to', 'do', 'that?'], ['Not', 'all', 'the', 'weather', 'are', 'good', 'age.'], ['I', 'locked', 'eyes.'], ['Blood', 'have', 'access', 'to', 'the', 'computers.'], ['I', "can't", 'believe', "you're", 'stuck', 'here', 'in', 'this', 'room', 'with', 'you.'], ['Tom', 'made', 'a', 'huge', 'mistake.'], ['Do', 'you', 'have', 'a', 'map', 'with', 'me?'], ['Despite', 'now', 'is', 'going', 'to', 'have', 'walked', 'now.'], ["I'll", 'help', 'you', 'again?'], ['They', 'failed', 'in', 'the', 'United', 'States', 'in', 'the', 'United', 'States.'], ["We'll", 'wake', 'up', 'at', 'six.'], ['What', 'were', 'you', 'doing', 'at', 'that', 'time?'], ['The', 'police', 'live', 'near', 'their', 'people.'], ['Who', 'are', 'you', 'talking', 'about?'], ["I'm", 'not', 'with', 'you', 'in', 'a', 'different', 'way.'], ['I', 'remember', 'his', 'country', 'in', 'the', 'country.'], ['Let', 'me', 'save', 'something.'], ['Is', 'he', 'OK', 'with', 'me?'], ['Why', 'do', 'you', 'want', 'to', 'learn', 'a', 'foreign', 'language?'], ["You're", 'going', 'to', 'give', 'me', 'some', 'clothes.'], ['I', 'will', 'give', 'you', 'a', 'piece', 'of', 'yours.'], ['This', "isn't", 'enough.'], ['Tom', 'taught', 'Mary', 'to', 'read.'], ['Talk', 'to', 'me.'], ["It's", 'not', 'your', 'business.'], ['What', 'a', 'wonderful', 'party?'], ["I'm", 'not', 'thinking', 'about', 'the', 'whole', 'thing.'], ['The', 'place', 'is', 'terrible.'], ['I', 'advise', 'you', 'to', 'be', 'promoted.'], ['The', 'pain', 'has', 'the', 'hand.'], ["I'm", 'not', 'your', 'enemy.'], ['He', 'tried', 'as', 'if', 'nothing', 'as', 'happened.'], ["I'll", 'come', 'unless', 'you', 'unless', 'you', 'unless', 'you', 'know.'], ['I', 'had', 'a', 'stay.'], ['I', 'am', 'afraid', 'I', 'would', 'be', 'upset.'], ['You', 'can', 'learn', 'from', 'a', 'lot', 'of', 'questions.'], ['Are', 'you', 'sure', 'you', 'saw', 'Tom', 'who', 'did', 'it?'], ["It's", 'just', 'where', 'you', 'are,', 'where', 'they', 'can', 'come.'], ['I', 'must', 'think.'], ['He', 'is', 'about', 'everything.'], ['How', "you're", 'afraid.'], ['Hey,', "aren't", 'that', 'mean.'], ['I', 'feel', 'good.'], ['A', 'boy', 'came', 'towards', 'me.'], ["I'm", 'just', 'doing', 'my', 'duty.'], ['Judging', 'from', 'going', 'to', 'happen', 'may', 'happen', 'tonight.'], ['I', "can't", 'find', 'how', 'to', 'open', 'the', 'door.'], ['Please', 'write', 'the', 'price', 'of', 'the', 'price', 'is', 'the', 'price', 'of', 'order.'], ['Did', 'I', 'forget', 'to', 'write', 'to', 'your', 'glass', 'last', 'night?'], ['It', 'will', 'be', 'our', 'secret.'], ['You', "don't", 'want', 'to', 'know.'], ['He', 'is', 'rich', 'and', "I'm", 'poor.'], ['We', 'have', 'a', 'job', 'done.'], ['Tom', "didn't", 'do', 'anything', 'else.'], ['I', 'never', 'asked', 'him.'], ['I', "can't", 'live', 'without', 'him.'], ['Are', 'you', 'sure', 'this', 'is', 'a', 'good', 'idea?'], ['Some', 'people', "don't", 'understand', 'what', 'they', 'give', 'up', 'with', 'each', 'other.'], ["You're", 'no', 'attention', 'to', 'me.'], ['He', 'will', 'be', 'at', 'one', 'after', 'another.'], ['What', 'story', 'has', 'a', 'story', 'that', 'he', 'sounded', 'true.'], ['You', 'should', 'get', 'some', 'rest.'], ['I', "can't", 'drink', 'this', 'way.'], ["You're", 'not', 'telling', 'us', 'for', 'coming.'], ['He', 'had', 'me', 'had', 'to', 'stop', 'and', 'I', 'had', 'to', 'go', 'out.'], ['You', 'did', 'a', 'pretty', 'good', 'job', 'a', 'good', 'job.'], ["You're", 'trying', 'to', 'do', 'something', 'I', "don't", 'want', 'to', 'do.'], ['Return', 'to', 'your', 'office', 'before', 'entering', 'the', 'room.'], ['Look', 'up', 'all', 'these', 'boxes.'], ['Tom', 'is', 'unmarried.'], ['If', 'it', "won't", 'achieve', 'the', 'work,', 'happens,', 'will', 'not', 'get', 'any', 'promises.'], ['We', 'ran', 'away', 'when', 'the', 'bell', 'was', 'young.'], ['They', "don't", 'have', 'to', 'go', 'to', 'school', 'today.'], ['What', 'woke', 'you', 'up?'], ['Maybe', 'Tom', 'will', 'give', 'you', 'a', 'job.'], ['I', 'love', 'your', 'sweater.'], ['He', 'likes', 'his', 'dog.'], ['Good', 'morning.'], ['Man', 'is', 'the', 'way', 'to', 'tell', 'you', 'how', 'to', 'write', 'a', 'regular', 'personality.'], ['This', 'dictionary', 'is', 'mine.'], ["I'm", 'the', 'apple', 'of', 'the', 'family.'], ["What's", 'all', 'the', 'noise?'], ['The', 'reason', 'is', 'quite', 'simple.'], ['We', 'all', 'had', 'a', 'new', 'vocation', 'so', 'as', 'he', 'used', 'to.'], ['Are', 'you', 'new', 'here?'], ['We', 'have', 'more', 'to', 'do.'], ['Does', 'this', 'be', 'interesting', 'this', 'evening', 'tonight?'], ['Frankly,', 'I', "don't", 'like', 'your', 'idea.'], ['He', 'had', 'to', 'spend', 'more', 'time.'], ["That's", 'a', 'really', 'good', 'beer?'], ['I', "can't", 'walk', 'another', 'chance.'], ['Tom', 'seems', 'to', 'be', 'afraid.'], ['Tom', 'also', 'had', 'a', 'bus.'], ['Do', 'you', 'intend', 'to', 'rent', 'a', 'car?'], ['I', "wasn't", 'the', 'only', 'one', 'who', "didn't", 'know', 'Tom.'], ['He', 'asked', 'me', 'to', 'drive', 'me', 'in', 'my', 'car.'], ["That's", 'enough.'], ['He', 'asked', 'me', 'who', 'I', 'was.'], ['I', "can't", 'stop', 'myself.'], ['We', 'often', 'often', 'eat', 'TV', 'while', "we're", 'eating', 'breakfast.'], ['Tom', 'is', 'waiting', 'for', 'Mary.'], ['Please', 'wonder', 'where', 'the', 'place', 'please.'], ['Her', 'face', 'needs', 'to', 'change', 'with', 'joy.'], ['He', 'has', 'a', 'maid.'], ['Do', 'you', 'want', 'me', 'to', 'go?'], ["I'm", 'sorry,', 'I', "don't", 'recognize', 'you.'], ['I', 'want', 'to', 'make', 'sure', 'you', 'know', 'what', 'to', 'do.'], ['We', 'have', 'to', 'stop', 'the', 'war', 'to', 'avoid', 'the', 'gym.'], ['Why', 'do', 'you', 'have', 'to', 'be', 'like', 'that?'], ['Tom', 'already', 'has', 'already', 'read.'], ['He', 'has', 'a', 'big', 'increase', 'of', 'skill.'], ['What', 'are', 'you', 'looking', 'for?'], ['I', "don't", 'think', 'Tom', 'is', 'successful.'], ['We', 'want', 'to', 'buy', 'a', 'wider', 'audience.'], ['I', 'just', 'bought', 'the', 'drinks.'], ['Stay', 'in', 'love', 'with', 'you?'], ['I', "can't", 'believe', "we're", 'really', 'here.'], ['Let', 'me', 'talk', 'to', 'the', 'area', 'of', 'my', 'work.'], ["I'll", 'do', 'anything', 'you', 'want', 'me', 'to', 'help', 'you.'], ['We', 'had', 'a', 'hurry.'], ['I', 'hate', 'this.'], ["I'll", 'give', 'you', 'something', 'to', 'eat.'], ['Did', 'you', 'know', 'the', 'last', 'time', 'you', 'talked', 'to', 'Tom?'], ["We'll", 'leave', 'tomorrow.'], ['Why', 'do', 'you', 'resist?'], ['She', 'always', 'wears', 'clothes', 'out.'], ['We', 'were', 'soldiers.'], ['She', 'told', 'me', 'her', 'son', 'to', 'meet', 'her', 'mother.'], ['Did', 'you', 'go', 'straight', 'home', 'after', 'school', 'yesterday?'], ['Every', 'time', 'he', 'once,', 'he', 'is', 'in', 'an', 'hour.'], ["We're", 'brothers.'], ['You', 'can', 'spend', 'the', 'night', 'here.'], ['Do', 'you', 'know', 'what', 'this', 'is?'], ["I'm", 'smarter', 'than', 'you.'], ['How', 'long', 'did', 'you', 'stay', 'at', 'the', 'party?'], ["I'm", 'no', 'saint.'], ['I', 'fed', 'the', 'horse.'], ['I', 'have', 'the', 'dictionary.'], ['Are', 'you', 'all', 'right?'], ['What', 'would', 'you', 'do', 'for', 'that?'], ['He', 'is', 'likely', 'to', 'rain', 'English.'], ["That's", 'what', 'they', 'said.'], ['I', "don't", 'understand', 'why', 'you', 'want', 'it.'], ['Does', 'he', 'live', 'here', 'well?'], ['I', 'did', 'what', 'I', 'did', 'what', 'I', 'expected.'], ['Have', 'you', 'ever', 'been', 'in', 'jail?'], ['Tom', 'said', 'he', 'had', 'thirsty.'], ["They're", 'outside.'], ['Please', 'fill', 'the', 'radio', 'this', 'out,', 'of', 'an', 'hour', 'in', 'the', 'pond.'], ['Tom', 'is', 'busy', 'today.'], ['Everyone', 'started', 'talking', 'at', 'the', 'same', 'time.'], ['My', 'wife', 'had', 'a', 'woman', 'named', 'last', 'week.'], ['What', 'kind', 'of', 'people', 'do', 'you', 'like', 'to', 'watch?'], ["I'll", 'help', 'you', 'so', 'this', 'way.'], ['When', 'did', 'you', 'become', 'a', 'teacher?'], ['I', 'love', 'the', 'way', 'the', 'surprise', 'story.'], ['Many', 'people', 'live', 'too', 'much', 'for', 'people', 'used', 'to', 'use', 'on', 'weekends.'], ['He', 'removed', 'his', 'sunglasses.'], ['She', 'accepted', 'his', 'proposal.'], ['This', 'company', 'has', 'a', 'lot', 'of', 'thought.'], ['There', 'are', 'no', 'energy', 'that', 'the', 'world', 'will', 'survive.'], ["I've", 'had', 'enough', 'of', 'your', 'snide', 'remarks.'], ['Ask', 'your', 'parents.'], ["You're", 'the', 'worst', 'part', 'of', 'the', 'worst', 'longest', "I've", 'ever', 'read', 'the', 'worst', 'boy.'], ["I'll", 'take', 'care', 'of', 'those.'], ['I', 'have', 'something', 'to', 'do', 'with', 'a', 'thing.'], ['It', 'seems', 'that', 'he', 'was', 'rich.'], ['Boston', 'is', 'a', 'big', 'city.'], ['You', 'go', 'to', 'Boston.'], ['Where', 'did', 'you', 'meet?'], ["Aren't", 'you', 'glad', 'you', "didn't", 'go', 'to', 'Boston?'], ['This', 'is', 'the', 'boy', 'of', 'a', 'paper', 'plane.'], ['If', 'I', 'have', 'the', 'day', 'while', 'I', 'will', 'be', 'able', 'to', 'go', 'out', 'with', 'him,', 'so', 'I', 'am', 'not', 'able', 'to', 'go', 'out', 'with', 'me.'], ["I've", 'always', 'loved', 'you.'], ['Tom', 'is', 'sure', "you're", 'right.'], ['A', 'man', 'has', 'never', 'come', 'again.'], ['We', 'want', 'to', 'participate.'], ['I', 'know', 'why', 'you', 'did', 'it.'], ['I', 'will', 'win.'], ['Tom', "didn't", 'go', 'to', 'Boston.'], ["I'd", 'like', 'to', 'be', 'more', 'than', 'you.'], ["We're", 'going', 'to', 'have', 'to', 'be', 'an', 'idiot!'], ['She', 'has', 'a', 'present', 'at', 'home.'], ['I', 'saw', 'what', 'you', 'did.'], ['They', 'know', "we're", 'the', 'cops.'], ['I', "don't", 'want', 'to', 'leave.'], ['Tom', 'is', 'going', 'hard.'], ['The', 'work', 'must', 'be', 'finished', 'before', 'noon.'], ["I'm", 'kind', 'of', 'people', 'who', 'went', 'with', 'her.'], ['Maybe', 'Tom', 'was', 'the', 'one', 'of', 'my', 'bicycle.'], ['Will', 'you', 'give', 'me', 'a', 'part-time', 'time?'], ["I'd", 'like', 'to', 'take', 'a', 'reservation', 'for', 'Monday.'], ['The', 'stone', 'ruined', 'the', 'whole', 'region.'], ['Tom', 'really', 'should', 'learn', 'French.'], ['Am', 'I', 'in', 'the', 'bridge', 'for', 'a', 'walk?'], ['It', 'has', 'come', 'perfectly.'], ["We're", 'not', 'coming.'], ['Now', 'this.'], ["I'll", 'keep', 'the', 'boxes'], ["You're", 'going', 'to', 'be', 'OK.'], ['She', 'beat', 'her', 'with', 'her', 'luggage.'], ['How', 'often', 'do', 'I', 'feed', 'my', 'dog?'], ['This', 'door', "won't", 'open.'], ["I'd", 'never', 'do', 'that', 'again.'], ['In', 'a', 'lot', 'of', 'days', 'is', 'very', 'important.'], ['That', 'may', 'be', 'the', 'ability', 'but', 'the', 'truth.'], ['The', 'fog', 'began', 'to', 'walk', 'around', 'the', 'corner.'], ['The', 'situation', 'will', 'have', 'Tokyo.'], ['What', 'do', 'you', 'want', 'to', 'learn?'], ['I', 'think', "you're", 'right.'], ['I', 'think', "I'm", 'going', 'to', 'take', 'that', 'tie.'], ['She', 'advised', 'him', 'not', 'to', 'buy', 'him', 'enough', 'but', 'he', "didn't", 'buy', 'his', 'shirt.'], ['Last', 'night,', 'he', 'comes', 'home', 'yesterday,', 'but', 'he', 'comes', 'home', 'without', 'an', 'hour', 'ago.'], ['How', 'much', 'time', 'do', 'you', 'spend', 'time', 'and', 'spend', 'time', 'for', 'the', 'time', 'and', 'kids.'], ['The', 'robber', 'was', 'painted', 'this', 'morning.'], ['The', 'cat', 'sat', 'on', 'the', 'table.'], ['You', 'are', 'morons.'], ['Tom', 'is', 'working', 'hard.'], ['I', "didn't", 'say', 'anything', 'about', 'that.'], ['You', 'can', 'fix', 'the', 'wine', 'in', 'the', 'glass.'], ['I', 'have', 'to', 'get', 'a', 'walk', 'in', 'the', 'dentist.'], ['The', 'result', 'was', 'far', 'from', 'the', 'result.'], ['I', "didn't", 'mean', 'you', 'to', 'hurt', 'you.'], ['Tom', 'is', 'hiding', 'something.'], ['There', 'were', 'a', 'lot', 'of', 'coffee', 'on', 'the', 'table.'], ["That's", 'why', 'I', 'hate', 'him.'], ["What's", 'your', 'name?'], ['I', 'just', "don't", 'like', 'it.'], ['Do', 'you', 'call', 'me', 'on?'], ['Would', 'you', 'see', 'him?'], ['This', 'is', 'an', 'urgent', 'need', 'of', 'hearing.'], ['Do', 'you', 'have', 'a', 'pleasant', 'brother?'], ['A', 'big', 'deal', 'was', 'spent', 'at', 'the', 'new', 'bridge.'], ["I'm", 'the', 'youngest', 'child.'], ['Tell', 'me', 'how', 'to', 'do', 'that.'], ['I', 'have', 'trouble', 'believing', 'it.'], ['The', 'telephone', "doesn't", 'work.'], ['He', 'told', 'the', 'courage', 'to', 'do', 'it.'], ['Would', 'you', 'mind', 'turning', 'the', 'radio?'], ['Is', 'this', 'ready', 'for', 'this?'], ["I'm", 'sorry', 'I', 'yelled', 'at', 'you.'], ["Don't", 'be', 'so', 'careless!'], ["It's", 'pretty', 'cold', 'today.'], ['Are', 'you', 'old', 'enough', 'to', 'drive?'], ['Tom', 'is', 'older', 'than', 'me.'], ["Tom's", 'behavior', "wasn't", 'trying', 'to', 'show', 'me.'], ["I'll", 'protect', 'you.'], ["Let's", 'leave', 'it', 'immediately.'], ['Do', 'you', 'really', 'want', 'to', 'dance?'], ['Why', 'did', 'you', 'come', 'here?'], ['Look', 'out', 'of', 'those', 'guys.'], ['Because', 'of', 'the', 'sky,', 'it', 'was', 'two', 'hours', 'the', 'morning', 'before', 'it', 'was.'], ['I', "don't", 'want', 'to', 'choose', 'a', 'lot', 'of', 'memories.'], ['Have', 'a', 'safe', 'trip.'], ['This', 'bridge', 'is', 'made', 'of', 'stone.'], ['We', 'are', 'lazy.'], ['This', 'noise', 'woke', 'me', 'up.'], ['They', 'worked', 'all', 'night.'], ['I', "didn't", 'mean', 'to', 'tell', 'you.'], ['I', 'already', 'talked', 'it.'], ['The', 'climate', 'of', 'the', 'fish', 'is', 'a', 'day.'], ['Who', 'gave', 'Tom', 'to', 'do', 'the', 'job?'], ['I', 'wanted', 'to', 'get', 'in', 'your', 'village.'], ['It', 'really', 'looks', 'good.'], ['I', 'want', 'them', 'to', 'be', 'your', 'friends.'], ['Who', 'are', 'these', 'men', 'in', 'those', 'are?'], ['I', 'lost', 'my', 'dog.'], ['We', "don't", 'have', 'a', 'moment?'], ['Watch', 'out', 'your', 'lines.'], ['He', 'used', 'to', 'cut', 'with', 'a', 'softness', 'with', 'the', 'window.'], ['I', 'thought', 'it', 'was', 'true.'], ["Tom's", 'name', 'were', 'bluffing.'], ['The', 'town', 'is', 'almost', 'closed.'], ['I', 'was', 'walking', 'by', 'the', 'garden.'], ['Do', 'you', 'have', 'your', 'laptop', 'with', 'your', 'phone?'], ['I', 'know', 'what', 'it', 'is', 'shot.'], ['Tom', 'put', 'on', 'his', 'shoes.'], ["I'm", 'glad', 'to', 'be', 'the', 'one', 'who', 'tells', 'you.'], ['I', 'was', 'being', 'lazy.'], ['The', 'rent', 'leaves', 'the', 'morning', 'of', 'the', 'sea.'], ['Tom', "doesn't", 'know', 'how', 'strong', 'you', 'are.'], ['I', 'love', 'Australia.'], ['He', 'gave', 'a', 'large', 'harvest', 'in', 'his', 'town', 'and', 'took', 'a', 'great', 'house.'], ['Everyone', 'in', 'the', 'building', 'in', 'the', 'building', 'in', 'the', 'earthquake.'], ['Whose', 'book', 'is', 'this', 'book?'], ["I'd", 'like', 'to', 'ask', 'you', 'a', 'few', 'questions', 'if', 'you', "don't", 'want', 'to.'], ['By', 'the', 'time', 'you', 'have', 'time', 'for', 'your', 'own.'], ['Bring', 'away', 'with', 'your', 'hands.'], ['I', 'know', 'how', 'you', 'did', 'it.'], ['I', 'accused', 'him', 'of', 'stealing', 'him.'], ['My', 'brother', "hadn't", 'helped', 'me,', 'I', "would've", 'drowned.'], ['I', "didn't", 'recognize', 'him.'], ['The', 'first', 'time', 'you', 'meet', 'people,', 'you', 'should', 'be', 'careful', 'about', 'how', 'near', 'you', 'stand', 'to', 'them.'], ['I', 'want', 'to', 'see', 'your', 'boss.'], ['I', 'thought', "you'd", 'be', 'different.'], ['A', 'third', 'of', 'Japan', 'came', 'into', 'the', 'purpose', 'of', 'Rome.'], ['Will', 'your', 'phone', 'phone', 'number?'], ['Mary', 'is', 'my', 'cousin.'], ["I'm", 'sorry,', 'I', "couldn't", 'help', 'you.'], ['The', 'moon', 'is', 'full', 'of', 'stars.'], ["That's", 'my', 'brother.'], ['He', 'was', 'tired,', 'but', 'he', 'kept', 'working.'], ['Tom', 'asked', 'Mary', 'not', 'to', 'win.'], ['She', 'has', 'a', 'great', 'deal', 'with', 'a', 'great', 'trip.'], ['We', 'visited', 'our', 'neighbors.'], ['That', 'was', 'the', 'man', 'that', 'he', 'always', 'likes', 'to', 'be', 'friendly', 'in', 'his', 'way.'], ['A', 'part', 'of', 'people', 'was', 'stolen.'], ['They', 'used', 'to', 'be', 'a', 'man', 'after', 'the', 'company.'], ['I', "can't", 'believe', 'you', 'did', 'that', 'by', 'yourself.'], ['His', 'clothes', "doesn't", 'look', 'up', 'with', 'him.'], ['Tom', 'really', 'will', 'really', 'cut', 'wood', 'when', 'he', 'fell.'], ['How', 'big', 'you', 'are!'], ['The', 'meeting', "didn't", 'think', 'of', 'the', 'habit', 'of', 'people', 'like', 'it.'], ["You're", 'not', 'allowed', 'to', 'leave', 'this', 'room.'], ['I', 'come', 'every', 'day.'], ['He', 'tried', 'to', 'talk', 'to', 'you.'], ['I', 'dream', 'of', 'my', 'own', 'business.'], ['My', 'wife', 'died', 'from', 'cancer.'], ['She', 'is', 'writing', 'a', 'book.'], ['He', 'was', 'behind', 'the', 'fight.'], ["I'm", 'willing', 'to', 'help', 'you', 'if', 'you', 'want', 'me', 'to.'], ['Thanks', 'for', 'stopping', 'by.'], ['He', 'whipped', 'his', 'whipped', 'in', 'his', 'underwear.'], ['I', 'want', 'to', 'thank', 'you', 'for', 'a', 'good', 'job.'], ["He's", 'as', 'dead.'], ['At', 'least', 'they', 'listened', 'to', 'me.'], ['I', "don't", 'think', 'Tom', 'will', 'be', 'at', 'school', 'tomorrow.'], ["I'm", 'never', 'used', 'to', 'my', 'house.'], ['She', 'gave', 'me', 'a', 'pair', 'of', 'cake.'], ['We', 'often', 'read', 'this', 'too', 'much', 'often.'], ["Don't", 'push', 'it.'], ['It', 'was', 'fun', 'to', 'swim', 'in', 'the', 'water', 'because', 'of', 'the', 'water.'], ['Tom', "doesn't", 'want', 'to', 'lose', 'Mary.'], ['I', 'got', 'a', 'list.'], ['How', 'much', 'is', 'the', 'cost?'], ['The', 'future', 'is', 'out', 'of', 'fashion', 'here.'], ['She', 'got', 'into', 'the', 'room.'], ['Tell', 'me', 'why', 'she', 'is.'], ['I', 'met', 'him', 'about', 'it.'], ['He', 'speaks', 'English', 'fluently.'], ['I', 'just', 'want', 'to', 'ask', 'you', 'a', 'few', 'questions.'], ["Let's", 'talk', 'about', 'your', 'boss.'], ['We', 'reached', 'all', 'of', 'them.'], ['Tom', 'is', 'trying', 'to', 'save', 'a', 'basket', 'full', 'of', 'rain.'], ['I', 'only', 'have', 'much', 'more', 'than', 'a', 'lot.'], ['His', 'old', 'ring', 'began', 'to', 'get', 'rid', 'of', 'pollution.'], ['I', 'was', 'bored.'], ['Tom', 'is', 'busy', 'to', 'write', 'to', 'his', 'speech.'], ['There', 'are', 'small', 'career', 'in', 'the', 'United', 'States', 'in', 'the', 'United', 'States.'], ['The', 'boxes', 'are', 'missing.'], ['What', 'do', 'you', 'feed', 'your', 'dog?'], ['She', 'interrupted', 'him', 'when', 'he', 'was', 'in', 'the', 'father.'], ['He', 'is', 'a', 'lazy', 'guy.'], ['The', 'boys', 'are', 'thirsty.'], ['I', "don't", 'like', 'him.'], ["Don't", 'be', 'all', 'finished', 'all', 'night.'], ["It's", 'hideous.'], ['How', 'dare', 'look', 'like', 'a', 'cat.'], ['If', 'he', 'is', 'there', 'there', 'is', 'an', 'hour', 'ago.'], ["We're", 'not', 'done.'], ['I', 'live', 'with', 'my', 'parents.'], ['I', "don't", 'feel', 'like', 'this.'], ["There's", 'another', 'solution.'], ["That's", 'just', 'what', 'we', 'need.'], ['Why', 'are', 'you', 'trying', 'to', 'buy', 'that?'], ['I', "don't", 'know', 'what', 'your', 'opinion', 'is.'], ['Stay', 'away', 'from', 'my', 'daughter!'], ['Forgive', 'me', 'for', 'a', 'while.'], ['Tom', 'is', 'a', 'younger', 'sister.'], ['Tom', 'happened.'], ['When', 'did', 'you', 'visit', 'your', 'friends?'], ['He', 'wears', 'a', 'new', 'coat.'], ['Is', 'Tom', 'open', 'every', 'Sunday?'], ['We', 'are', 'sour.'], ['We', 'often', 'hear', 'our', 'future.'], ['He', 'misses', 'his', 'job.'], ['His', 'house', 'is', 'on', 'the', 'house', 'of', 'the', 'house.'], ['Tom', 'is', 'a', 'librarian.'], ['Are', 'you', 'on', 'the', 'head', 'of', 'the', 'button?'], ['She', "didn't", 'want', 'him', 'to', 'play', 'poker.'], ['I', 'asked', 'Tom', 'if', 'I', 'could', 'talk', 'to', 'him.'], ['The', 'main', 'products', 'are', 'their', 'neighbors', 'and', 'immigrants.'], ["I'm", 'always', 'saying', 'that', 'he', 'always', 'puts', 'me', 'up.'], ["I'm", 'happy', 'to', 'help', 'you.'], ['It', 'would', 'be', 'a', 'good', 'place', 'to', 'drink', 'a', 'good', 'place.'], ['They', "don't", 'have', 'a', 'long', 'time.'], ['There', 'were', 'some', 'furniture', 'all', 'of', 'people.'], ['She', 'is', 'a', 'married', 'young', 'girl.'], ['Everyone', 'can', 'prevent', 'it.'], ['Hold', 'on', 'for', 'a', 'few', 'minutes,', 'will', 'you?'], ["I'm", 'really', 'sorry', 'for', 'you.'], ['She', 'met', 'her', 'children.'], ['You', "don't", 'have', 'to', 'tell', 'me', 'what', 'to', 'do', 'that', 'already.'], ['You', "can't", 'force', 'us', 'to', 'go.'], ["That's", 'our', 'best', 'hope.'], ['I', 'think', 'you', 'trusted', 'the', 'one', 'who', 'is', 'broken.'], ['No', 'one', 'is', 'how', 'to', 'use', 'your', 'way', 'of', 'telling', 'your', 'child.'], ["It's", 'too', 'calm.'], ['Where', 'do', 'you', 'live?'], ['She', 'was', 'sitting', 'on', 'his', 'hand', 'that', 'he', 'found', 'her', 'hair', 'to', 'her.'], ['It', 'would', 'do', 'twice', 'as', 'much', 'as', 'you', 'do.'], ['Let', 'go', 'of', 'the', 'bottle.'], ["That's", 'no', 'one', 'of', 'anyone.'], ['These', 'are', 'my', 'business.'], ['We', 'have', 'many', 'things', 'at', 'a', 'lot', 'of', 'things', 'together.'], ['Children', "can't", 'drink', 'wine.'], ['The', 'company', 'has', 'postponed', 'history.'], ['He', 'would', 'try', 'to', 'explain', 'anything', 'to', 'chance.'], ['I', 'am', 'going', 'to', 'play', 'soccer', 'tomorrow.'], ['I', 'made', 'a', 'huge', 'mistake.'], ['Tell', 'me', 'of', 'the', 'life.'], ['He', 'ran', 'into', 'the', 'head', 'of', 'the', 'corner.'], ["I'm", 'talking.'], ['I', 'had', 'my', 'doubts', 'about', 'you.'], ['I', 'got', 'up', 'very', 'early', 'this', 'morning.'], ['I', "can't", 'believe', 'I', 'used', 'to', 'believe', 'this.'], ['Did', 'the', 'murder', 'fire', 'was', 'in', '1814.'], ['Is', 'there', 'something', 'in', 'the', 'building?'], ['We', 'waited', 'for', 'you.'], ['I', 'like', 'to', 'know', 'anything', 'about', 'stars.'], ['I', 'thought', "you'd", 'gone', 'and', 'left', 'me.'], ['I', 'just', "didn't", 'live', 'alone', 'at', 'home.'], ["I'm", 'going', 'to', 'tell', 'you', 'what', 'to', 'say.'], ['The', 'cat', 'caught', 'the', 'tree.'], ['The', 'students', 'will', 'work', 'out', 'of', 'the', 'clothes.'], ['We', 'were', 'sitting', 'on', 'the', 'floor', 'of', 'the', 'south.'], ["It's", 'almost', 'as', 'fast', 'as', 'I', 'used', 'to.'], ['I', 'lost', 'my', 'temper.'], ['I', 'promised', 'I', "wasn't", 'going', 'to', 'do', 'that.'], ['I', "don't", 'recall', 'who', 'did', 'that.'], ['I', 'bought', 'this', 'kind', 'of', 'old', 'novel.'], ['Please', 'light', 'the', 'light', 'while', 'I', 'will', 'come.'], ['There', 'are', 'a', 'lot', 'of', 'people', 'in', 'country', 'in', 'love', 'with', 'you.'], ["You're", 'the', 'teacher.'], ['I', 'hate', 'politics.'], ["I'm", 'not', 'afraid', 'of', 'anything.'], ["I'm", 'beautiful.'], ['I', 'know', 'how', 'busy', "you've", 'been.'], ['She', 'takes', 'care', 'of', 'people', 'like', 'a', 'lot', 'of', 'people.'], ['I', "wouldn't", 'want', 'to', 'miss', 'the', 'party.'], ['I', 'will', 'go', 'to', 'New', 'York', 'next', 'week.'], ['I', "haven't", 'understood', 'anything.'], ['She', 'traveled', 'in', 'Japan.'], ['All', 'you', "don't", 'make', 'up', 'with', 'foreigners.'], ['Our', 'guests', 'have', 'fun.'], ['I', "can't", 'remember', 'the', 'name', 'of', 'his', 'change.'], ['She', 'trusted', 'you.'], ['We', 'saw', 'the', 'plane.'], ['Did', 'you', 'call', 'yesterday?'], ['This', 'is', 'missing.'], ['She', "doesn't", 'want', 'him', 'to', 'work', 'harder.'], ['My', 'mother', 'was', 'wondering', 'that', 'she', 'was', 'on', 'the', 'sofa.'], ['Is', 'it', 'going', 'well?'], ['One', 'of', 'the', 'yen', 'and', 'milk', 'is', 'likely', 'to', 'climb', 'the', 'wall.'], ['How', 'much', 'do', 'we', 'have', 'to', 'do', 'this?'], ['I', "don't", 'know', 'this', 'very', 'well.'], ['I', 'said', 'I', "hadn't", 'I', 'kept', 'a', 'little.'], ["I'm", 'delighted', 'to', 'meet', 'you.'], ['Why', "don't", 'you', 'go', 'to', 'school', 'with', 'us?'], ['None', 'of', 'the', 'students', 'go', 'to', 'school', 'today.'], ["I'm", 'the', 'only', 'one', 'who', 'Tom.'], ["I'd", 'like', 'to', 'study', 'French', 'next', 'year.'], ["There's", 'a', 'lot', 'of', 'work', 'to', 'do', 'today.'], ['The', 'price', 'is', 'not', 'important.'], ['Did', 'I', 'miss', 'you?'], ['My', 'mother', 'gets', 'up', 'earlier', 'than', 'anybody', 'else.'], ['All', 'I', 'want', 'is', 'your', 'opinion.'], ["They're", 'coming.'], ['He', 'returned', 'home', 'for', 'first', 'time', 'at', 'first', 'first', 'time', 'for', 'her.'], ['The', 'street', 'was', 'deserted.'], ['Nothing', 'is', 'going', 'to', 'happen.'], ['Say', 'which', 'one', 'you', 'would', 'like.'], ["It's", 'a', 'cold', 'day', 'so', 'cold', 'on', 'time.'], ['I', 'know', "you're", 'disappointed.'], ['What', 'does', 'that', 'mean?'], ["Don't", 'leave', 'your', 'own', 'way', 'finished.'], ['I', 'know', 'Tom', 'is', 'on', 'his', 'own.'], ['Father', 'took', 'a', 'room', 'in', 'the', 'second', 'floor', 'of', 'the', 'building.'], ['Is', 'it', 'going', 'to', 'go?'], ['I', 'think', "it's", 'OK.'], ['This', 'soup', 'is', 'worth', 'likely', 'to', 'rain.'], ['Tom', 'wanted', 'me', 'to', 'call', 'you', 'the', 'station.'], ['Love', 'will', 'them.'], ['I', 'had', 'a', 'very', 'good', 'time.'], ['We', 'thought', 'we', 'could', 'not', 'be', 'supportive.'], ["Don't", 'be', 'afraid', 'to', 'be', 'afraid', 'of', 'you.'], ['When', 'was', 'the', 'last', 'time', 'you', 'went', 'to', 'meet', 'last', 'year.'], ['In', 'Japan,', 'you', 'see', 'two', 'and', 'see', 'you', 'get', 'two', 'beds.'], ['I', "couldn't", 'eat', 'anything', 'yet', 'the', 'problem', 'yet.'], ['Tom', 'ever', 'hurt', 'his', 'feelings.'], ['What', 'else', 'else', 'else', 'in', 'the', 'shower?'], ['Is', 'there', 'a', 'place', 'here', 'far', 'from', 'a', 'place', 'to', 'London?'], ["They're", 'all', 'yours.'], ['Is', 'your', 'car', 'parked'], ['Do', 'you', 'want', 'to', 'try', 'it?'], ['Tom', 'ignored', 'Mary', 'about', 'him.'], ["I've", 'never', 'seen', 'Tom', 'drunk.'], ["That's", 'not', 'how', 'I', 'heard', 'it.'], ['He', 'forgot', 'to', 'buy', 'a', 'new', 'bicycle.'], ['Do', 'you', 'want', 'to', 'see', 'any', 'more', 'again?'], ['We', "don't", 'understand', 'us', 'for', 'us.'], ['No', 'one', 'knows', 'how', 'much', 'the', 'pain?'], ['Come', 'in.'], ['I', 'hope', 'he', 'will', 'pass', 'the', 'examination.'], ['I', 'have', 'a', 'black', 'black', 'and', 'black', 'carpet.'], ['I', "don't", 'want', 'to', 'do', 'that.'], ['This', 'coat', 'is', 'too', 'small', 'but', 'too', 'delicious.'], ['I', 'snore.'], ['I', 'woke', 'you', 'up.'], ['Stop', 'me', 'if', 'you', 'can.'], ["That's", 'Tom.'], ['I', "don't", 'remember', 'much', 'Please', 'as', 'if', 'I', "don't", 'see', 'it.'], ['I', 'knew', 'something', 'was', 'right.'], ['He', 'is', 'walking', 'in', 'the', 'history', 'of', 'America.'], ["I'll", 'be', 'where', 'you', 'want', 'to', 'go.'], ['I', 'heard', 'you', "don't", 'have', 'meat.'], ["We're", 'going', 'to', 'all', 'the', 'house.'], ["I'd", 'like', 'you', 'two', 'hours.'], ['Tom', "isn't", 'going', 'to', 'let', 'you', 'drive.'], ['You', 'have', 'to', 'see', 'it.'], ['I', 'got', 'up', 'the', 'purpose', 'of', 'studying', 'literature.'], ['I', 'saw', 'you', 'two', 'hours', 'lately.'], ['My', 'brother', 'is', 'watching', 'TV.'], ['I', "don't", 'understand', 'this.'], ['Have', 'you', 'told', 'anyone', 'that', 'kind', 'of', 'questions?'], ["You're", 'ruthless.'], ['Tom', 'told', 'me', 'he', 'was', 'a', 'doctor.'], ['These', 'trousers', 'are', 'dirty.'], ['Did', 'you', 'go', 'straight', 'home', 'after', 'school', 'yesterday?'], ['I', 'have', 'to', 'go', 'home', 'now.'], ['I', 'am', 'not', 'being', 'lazy.'], ['Tom', 'made', 'out', 'of', 'the', 'result', 'of', 'snow.'], ['What', 'do', 'you', 'think', "I'm", 'going', 'to', 'do?'], ['The', 'leaves', 'is', 'coming', 'to', 'his', 'business.'], ['We', 'went', 'on', 'a', 'walk', 'on', 'the', 'beach.'], ["I'm", 'still', 'in', 'love', 'with', 'Mary.'], ['How', 'about', 'tonight?'], ['Your', 'theory', 'is', 'to', 'call', 'her', 'dead.'], ['We', 'have', 'to', 'pay', 'the', 'book', 'to', 'pay', 'this', 'month.'], ['They', 'lived', 'at', 'the', 'new', 'student.'], ['We', 'do', 'well', 'to', 'write', 'soon.'], ['I', 'think', "it's", 'a', 'problem.'], ['She', 'made', 'the', 'old', 'man', 'with', 'a', 'loud', 'voice.'], ['I', 'barely', 'barely', 'believe', 'my', 'behavior.'], ['It', "didn't", 'make', 'them', 'laugh.'], ['Tom', 'drank', 'a', 'lot', 'more', 'than', 'me.'], ['After', 'the', 'contract', 'three', 'two', 'three', 'hundred', 'three', 'number', 'in', 'the', 'United', 'States.'], ['I', 'think', 'we', 'should', 'probably', 'be', 'able', 'to', 'be', 'able', 'to', 'be', 'able', 'to', 'be', 'able', 'to', 'be', 'listening.'], ['Were', 'you', 'born', 'there?'], ["That's", 'a', 'relief.'], ['I', "won't", 'do', 'that.'], ['Would', 'you', 'like', 'to', 'wait?'], ["You're", 'the', 'only', 'person', 'who', 'can', 'speak', 'it.'], ['Yesterday', 'I', 'was', 'sick.'], ["What's", 'the', "horse's", 'name?'], ['We', "didn't", 'care.'], ['We', 'all', 'were', 'wrong.'], ['I', 'had', 'to', 'do', 'it.'], ['I', 'am', 'grateful', 'to', 'you', 'for', 'your', 'kindness.'], ['It', "doesn't", 'surprise', 'me.'], ['Is', 'this', 'really', 'what', 'you', 'want', 'to', 'do?'], ['We', 'ran', 'into', 'the', 'town.'], ['Your', "name's", 'is', 'the', 'most', 'list.'], ["It's", 'the', 'one', 'who', 'saw', 'you.'], ['Please', 'do', 'down', 'your', 'seat', 'back.'], ['You', 'were', 'perfect.'], ['We', "don't", 'often', 'see', 'each', 'other', 'very', 'often.'], ["You're", 'very', 'busy.'], ['At', 'last,', 'I', 'caught', 'up', 'with', 'my', 'friends.'], ['His', 'father', 'is', 'a', 'Japanese.'], ['That', 'sounds', 'fishy.'], ['I', 'bought', 'a', 'book', 'yesterday.'], ['Does', 'that', 'suit', 'you?'], ['Do', 'you', 'have', 'any', 'cash?'], ['I', 'like', 'walking', 'in', 'the', 'woods.'], ['It', 'is', 'having', 'a', 'pleasure', 'to', 'protect', 'you.'], ['I', 'know', 'you', 'think', "I'm", 'stupid.'], ['Your', 'words', 'needs', 'to', 'be', 'ears.'], ['Are', 'you', 'working', 'for', 'dinner?'], ['I', 'gave', 'her', 'a', 'pair', 'of', 'birthday.'], ['I', 'am', 'looking', 'for', 'you.'], ['Take', 'this', 'one', 'anymore.'], ['He', 'was', 'going', 'to', 'go', 'out.'], ['The', 'house', 'is', 'empty.'], ['This', 'is', 'your', 'own', 'opportunity.'], ['He', 'got', 'lost', 'in', 'the', 'woods.'], ['Where', 'did', 'you', 'get', 'this?'], ['She', 'took', 'the', 'test', 'today.'], ['Did', 'he', 'hurt', 'my', 'place?'], ["You're", 'the', 'last', 'person', 'I', 'expected', 'you', 'to', 'see', 'here.'], ['Stop', 'talking', 'loudly.'], ["I'm", 'really', 'tired', 'of', 'lying.'], ['Enjoy', 'yourself.'], ['She', 'has', 'something', 'in', 'the', 'hand.'], ['I', "didn't", 'read', 'all', 'these', 'books.'], ['After', 'my', 'dog', 'used', 'to', 'be', 'held', 'up', 'as', 'a', 'day.'], ['Loosen', 'up.'], ['Tom', "doesn't", 'have', 'kids.'], ['When', 'she', 'hurt', 'the', 'fact', 'that', 'she', 'left', 'me.'], ['At', 'last,', 'we', 'got', 'to', 'the', 'lake.'], ['Your', 'parents', 'did', 'never', 'hurt', 'you.'], ['I', 'just', 'had', 'a', 'walk.'], ['Yesterday', 'was', 'the', 'best', 'before.'], ['Tom', 'asked', 'Mary', 'who', 'Mary', 'was.'], ['I', 'told', 'her', 'if', 'that', 'he', 'was', 'true.'], ['I', 'saw', 'him', 'all', 'his', 'trip.'], ['My', 'mother', 'is', 'doing', 'all', 'the', 'shopping', "haven't", 'you?'], ['I', 'wish', 'that', "it's", 'true.'], ["Let's", 'leave', 'the', 'meeting', 'when', 'he', 'would', 'come.'], ['I', 'paid', 'for', 'you.'], ['Saying', 'you', "can't", 'do', 'is', 'just', 'the', 'job', 'because', "you're", 'too', 'busy', 'is', 'just', 'a', 'cop', 'out.'], ['Are', 'they', 'all', 'the', 'same?'], ['I', 'am', 'often', 'working', 'with', 'the', 'mall.'], ['I', 'need', 'to', 'find', 'a', 'while.'], ['It', 'is', 'that', 'the', 'water', 'said', 'that', 'the', 'water', 'is', 'swimming', 'in', 'the', 'sea.'], ['We', 'were', 'trying', 'to', 'hurt', 'his', 'advice.'], ['Money', "won't", 'have', 'no', 'time.'], ['Tom', 'asked', 'me', 'to', 'want', 'to', 'go', 'to', 'the', 'airport.'], ["We're", 'on', 'the', 'right', 'track.'], ['Jesus', 'everyone,'], ['I', 'saw', 'you', 'cook.'], ['He', 'did', 'a', 'very', 'cold', 'last', 'month.'], ['The', 'school', 'is', 'numb.'], ['How', 'long', 'did', 'you', 'stay', 'in', 'Boston?'], ["I'm", 'a', 'little', 'busy', 'today.'], ['A', 'lot', 'of', 'people', 'in', 'the', 'sight', 'of', 'the', 'most', 'young', 'people', 'like', 'it.'], ['I', "don't", 'even', 'know', 'where', 'to', 'live.'], ["We're", 'early.'], ['Can', 'your', 'fulfill', 'like', 'you.'], ['This', 'year,', 'I', 'bought', 'some', 'of', 'my', 'children.'], ['A', 'number', 'of', 'people', 'did', 'you', 'already', 'liked', 'you.'], ['The', 'time', 'was', 'going', 'to', 'be', 'expected.'], ['The', 'concern', 'is', 'on', 'the', 'floor', 'of', 'the', 'problem.'], ['This', 'is', 'a', 'nice', 'guy.'], ['The', 'prisoners', 'were', 'high.'], ['He', 'is', 'not', 'working', 'to', 'work', 'against', 'the', 'plan.'], ['He', 'was', 'saying', 'his', 'photograph', 'he', 'was', 'innocent.'], ['Where', 'can', 'I', 'find', 'a', 'ticket?'], ['Everyone', 'said', 'that', 'what', 'was', 'true.'], ['I', "don't", 'see', 'any', 'reason', 'to', 'go.'], ['I', 'was', 'wondering', 'when', 'you', 'were', 'wondering', 'when', 'you', 'were', 'looking', 'for.'], ['One', 'of', 'them', 'is', 'lying.'], ['Is', 'there', 'a', 'washing', 'machine', 'in', 'the', 'house?'], ['Tom', 'came', 'here', 'to', 'talk', 'to', 'us.'], ['I', 'love', 'my', 'children.'], ['Your', 'pen', 'is', 'better', 'than', 'mine.'], ['You', 'were', 'hurt,', "weren't", 'you?'], ["Don't", 'you', 'have', 'a', 'very', 'good', 'time', 'sick?'], ["Let's", 'hope', 'the', 'weather', 'will', 'be', 'good.'], ['I', "didn't", 'know', 'if', 'I', 'was', 'too', 'late.'], ['We', "don't", 'trust', 'parties.'], ["You're", 'not', 'very', 'funny.'], ["You're", 'not', 'what', 'I', 'say.'], ["I'm", 'going', 'to', 'study', 'English', 'this', 'afternoon.'], ['I', "don't", 'have', 'a', 'word', 'with', 'it.'], ['They', 'arrived', 'at', 'the', 'hotel.'], ['I', 'need', 'a', 'little', 'help', 'with', 'you?'], ['He', 'helped', 'me', 'carry', 'the', 'baggage.'], ['How', 'many', 'boys', 'are', 'there', 'in', 'this', 'class?'], ['If', 'you', "don't", 'believe', 'them,', "they'll", 'kill', 'you.'], ['I', 'think', 'Tom', 'did', 'that.'], ["Where's", 'the', 'money', 'I', 'gave', 'you?'], ['I', 'want', 'to', 'go', 'abroad', 'next', 'year.'], ['Is', 'this', 'legal?'], ['You', 'should', 'follow', "Tom's", 'behavior.'], ['I', 'almost', 'died.'], ['How', 'did', 'you', 'become', 'involved', 'in', 'this', 'project?'], ['I', 'think', "it's", 'time', 'for', 'me', 'to', 'study.'], ['These', 'kind', 'of', 'people', 'need', 'to', 'be', 'the', 'job.'], ['I', 'must', 'make', 'a', 'decision.'], ['The', 'plane', 'will', 'arrive', 'at', 'seven.'], ['She', 'sued', 'her', 'him.'], ['Where', 'do', 'you', 'work', 'now?'], ["You're", 'not', 'very', 'funny.'], ['I', 'love', 'your', 'house.'], ["I've", 'been', 'studying', 'French', 'for', 'three', 'years', 'in', 'French.'], ['She', 'gave', 'me', 'a', 'number', 'of', 'paper.'], ["I'm", 'not', 'sure', 'anything', 'happened.'], ['I', 'was', 'the', 'only', 'one', 'that', 'was', 'the', 'only', 'one', 'that', 'was', 'a', 'good', 'student.'], ['The', 'clock', "doesn't", 'bother', 'me.'], ['Women', 'are', 'working.'], ["That's", 'all', 'I', 'have', 'to', 'say.'], ['Something', 'is', 'myself.'], ['We', 'saw', 'you.'], ['My', 'father', 'asked', 'my', 'hand', 'on', 'my', 'shoulder.'], ['I', 'was', 'the', 'happiest', 'man', 'on', 'the', 'earth.'], ['Something', 'must', 'be', 'done.'], ['She', 'mistook', 'me', 'for', 'my', 'brother.'], ['I', "don't", 'know', 'why', 'Tom', 'thinks.'], ['You', "can't", 'believe', 'everything', 'you', 'hear.'], ['I', 'have', 'to', 'go', 'back', 'before', 'noon.'], ['Please', 'do', 'not', 'work', 'today?'], ['You', 'did', 'something', 'stupid.'], ['Which', 'do', 'you', 'prefer,', 'rice', 'or', 'staying?'], ['Do', 'cats', 'are', 'cats', 'than', 'dogs?'], ['I', 'think', 'Tom', "didn't", 'know', 'why', 'Tom', 'said.'], ['I', "can't", 'get', 'there.'], ["You'll", 'have', 'to', 'be', 'here', 'for', 'that.'], ["It's", 'too', 'beautiful.'], ["Don't", 'trust', 'anybody.'], ['I', 'will', 'stay', 'at', 'home', 'tomorrow.'], ['What', 'have', 'we', 'done', 'to', 'be', 'done', 'or', 'so?'], ['The', 'water', 'and', 'water', 'is', 'growing', 'and', 'water', 'in', 'Japanese.'], ['I', "don't", 'think', 'the', 'fact', 'that', 'needs', 'to', 'be', 'seen.'], ['Tom', 'would', 'be', 'so', 'angry', 'that', 'Mary', 'would', 'be', 'upset.'], ['What', 'made', 'you', 'remember?'], ['He', 'is', 'not', 'a', 'man', 'of', 'pie?'], ["They're", 'going', 'to', 'the', 'war.'], ['Do', 'you', 'want', 'to', 'ride', 'a', 'soccer', 'game?'], ['Return', 'to', 'listen', 'to', 'the', 'cost.'], ['Have', 'you', 'finished', 'reading', 'the', 'novel?'], ['English', 'is', 'spoken', 'in', 'the', 'world', 'with', 'you', 'in', 'the', 'world.'], ['Let', 'me', 'show', 'you', 'how', 'to', 'do', 'it.'], ['The', 'water', 'began', 'every', 'day.'], ['I', 'think', "we're", 'being', 'followed.'], ['Stop', 'crying', 'like', 'a', 'nice', 'girl.'], ["It's", 'not', 'difficult.'], ['I', 'see', 'him', 'to', 'a', 'foreigner.'], ['What', 'are', 'you', 'going', 'to', 'do', 'next?'], ['Plastic', 'filled', 'for', 'sand.', "It's", 'two', 'yen', 'and', 'afford', 'to', 'fix', 'it.'], ['We', 'wake', 'up', 'at', '6.'], ['Where', 'did', 'you', 'come', 'with', 'us?'], ['I', 'never', 'told', 'you', 'to', 'quit.'], ['He', 'can', 'drive', 'a', 'car.'], ['Does', 'the', 'truth?'], ['He', 'was', 'a', 'selfie', 'and', 'looked', 'like', 'a', 'kid.'], ['I', "didn't", 'realize', 'that', 'you', 'could', 'speak', 'French.'], ['He', 'left', 'and', 'left.'], ['I', 'studied', 'for', 'an', 'hour.'], ['I', 'think', "I'll", 'be', 'prepared.'], ['You', "don't", 'believe', 'me?'], ['You', "can't", 'let', 'me', 'know', 'that', 'but', 'you', 'can', 'do', 'it', 'alone.'], ['Could', 'you', 'put', 'this', 'bag', 'somewhere', 'else?'], ["You're", 'taller', 'than', 'me.'], ["It's", 'too', 'expensive.'], ['Tom', 'wants', 'you', 'to', 'buy', 'a', 'child', 'that', 'store.'], ['Tom', 'is', 'going', 'to', 'retire.'], ['Tom', 'lives', 'in', 'the', 'same', 'house', 'as', 'Mary.'], ['Is', 'this', 'love?'], ['Why', "don't", 'you', 'keep', 'it?'], ['Look', 'at', 'this', 'problem', 'with', 'me', 'anymore.'], ['Tom', 'bought', 'a', 'taxi', 'in', 'England.'], ['You', 'should', 'light', 'the', 'light', 'of', 'light', "you'll", 'look', 'forward', 'to', 'your', 'teeth.'], ["You're", 'not', 'alone', 'anymore.'], ['I', 'really', 'did', 'it', 'when', 'he', 'enjoyed', 'yesterday.'], ['What', 'do', 'you', 'think', 'of', 'my', 'new', 'suit?'], ['The', 'boy', 'was', 'afraid', 'of', 'the', 'dark.'], ['You', 'must', 'see', 'it', 'in', 'the', 'room.'], ['My', 'parents', "won't", 'be', 'there.'], ["I'm", 'not', 'sure', 'that', "you're", 'ready.'], ['I', 'was', 'devastated.'], ['Tom', 'is', 'washing', 'the', 'lights.'], ['Tom', 'just', 'got', 'to', 'write', 'to', 'write', 'to', 'Mary.'], ['He', 'always', 'killed', 'saying', 'he', 'was', 'always', 'saying', 'the', 'wind.'], ['She', 'is', 'always', 'complaining', 'about', 'everyone.'], ['I', 'have', 'a', 'walk', 'before', 'breakfast.'], ["I'm", 'sure', "they'll", 'be', 'very', 'happy', 'together.'], ['He', "doesn't", 'know', 'anymore.'], ['I', 'miss', 'the', 'house', 'when', 'I', 'leave', 'home', 'from', 'me.'], ["It's", 'very', 'beautiful.'], ['Do', 'you', 'want', 'to', 'help?'], ["You're", 'now', 'in', 'position.'], ['I', "haven't", 'gotten', 'up', 'with', 'my', 'bad', 'bad', 'yet.'], ['Who', 'told', 'you', 'to', 'stay', 'here?'], ['You', 'can', 'stay', 'here', 'as', 'long', 'as', 'you', 'stay', 'in', 'stay', 'here.'], ['What', 'would', 'I', 'do', 'without', 'me?'], ['I', "don't", 'know', 'what', 'you', 'will', 'do.'], ['Marriage', 'is', 'an', 'hour', 'in', 'an', 'hour', 'in', 'an', 'egg.'], ["I'm", 'dizzy.'], ['Tom', 'raised', 'his', 'change', 'for', 'him.'], ['The', 'weather', 'was', 'successful.'], ['I', 'thought', 'that', 'was', 'the', 'building', 'that', 'document.'], ["Don't", 'put', 'my', 'nose', 'on', 'the', 'shelf.'], ['They', 'wanted', 'to', 'steal', 'the', 'car.'], ['We', "don't", 'need', 'these', 'things.'], ['All', 'the', 'doors', 'were', 'closed.'], ['They', 'had', 'no', 'more', 'money.'], ['They', 'hid', 'under', 'the', 'table.'], ["Don't", 'feel', 'embarrassed.', 'These', 'things', 'happen.'], ['They', 'have', 'their', 'problems.'], ['You', "don't", 'even', 'know', 'why', "I'm", 'here.'], ['Can', 'you', 'catch', 'the', 'chicken?'], ["Someone's", 'the', 'wrong', 'number.'], ["I'll", 'do', 'it', 'on', 'your', 'instructions.'], ['Write', 'with', 'your', 'mother', 'and', 'a', 'little.'], ['I', 'love', 'hiking.'], ['They', 'are', 'to', 'find.'], ['Have', 'you', 'got', 'the', 'book?'], ['How', 'did', 'you', 'get', 'into', 'Harvard?'], ['I', 'bet', "you're", 'right.'], ['You', 'may', 'have', 'many', 'much', 'if', 'you', 'have', 'much', 'longer.'], ["We're", 'going', 'on', 'the', 'right', 'place.'], ['Help', 'yourself', 'to', 'a', 'drink.'], ['She', 'sent', 'him', 'a', 'cake.'], ['Turn', 'off', 'the', 'light', 'and', 'go', 'to', 'bed.'], ["We'll", 'never', 'go', 'right', 'now.'], ['Tom', 'said', 'that', 'I', "didn't", 'want', 'to', 'have', 'lunch', 'right', 'now.'], ["We're", 'lazy.'], ['How', 'do', 'you', 'expect', 'to', 'do?'], ["Don't", 'forget', 'about', 'the', 'incident.'], ['Tom', 'will', 'be', 'missed.'], ['Do', 'you', 'like', 'rock', 'ice', 'cream.'], ['I', 'wonder', 'what', "I'm", 'planning', 'earlier.'], ['Take', 'out', 'of', 'these.'], ['Check', 'this', 'out.'], ['Can', 'I', 'pay', 'a', 'credit', 'card?'], ['Today', 'is', 'a', 'holiday.'], ['Murder', 'is', 'no', 'longer', 'the', 'hardest.'], ['You', 'will', 'help.'], ['I', 'was', 'about', 'to', 'go', 'back', 'home', 'when', 'the', 'way', 'of', 'her', 'knees.'], ['Tom', 'is', 'going', 'to', 'sleep', 'a', 'school', 'five', 'day.'], ['Just', 'do', 'your', 'job.'], ['I', 'need', 'to', 'buy', 'some', 'bread.'], ['Since', 'there', 'are', 'two', 'birds', 'and', 'two', 'lights', 'and', 'you', 'have', 'two', 'ears.'], ['My', 'friend', 'was', 'staring', 'at', 'me.'], ['I', 'hope', "you're", 'happy', 'together.'], ['I', 'wonder', 'if', 'it', 'might', 'happen', 'now.'], ['I', "can't", 'understand', 'what', 'he', 'wants.'], ['My', 'brother', 'is', 'still', 'not', 'at', 'school.'], ["They're", 'both', 'hungry.'], ['I', 'gave', 'your', 'name', 'to', 'name.'], ['She', 'made', 'him', 'cry.'], ['We', 'have', 'a', 'lunch', 'at', 'breakfast.'], ['Of', 'course', 'I', "can't", 'do', 'with', 'you.'], ['I', 'opened', 'the', 'box.'], ['I', 'appreciate', 'your', 'situation.'], ['I', 'am', 'in', 'love', 'with', 'you.'], ['We', 'may', 'as', 'well', 'start', 'now.'], ['I', 'enjoyed', 'myself.'], ['My', 'neighbor', 'often', 'seldom,', 'if', 'ever,', 'goes', 'shopping', 'in', 'the', 'dozen.'], ['Have', 'you', 'read', "today's", 'paper?'], ['She', 'stayed', 'up', 'to', 'stay', 'at', 'night.'], ['I', 'think', "it's", 'time', 'for', 'you.'], ["You're", 'dirty.'], ['Tom', "didn't", 'understand', 'the', 'matter.'], ["I'd", 'like', 'to', 'talk', 'to', 'a', 'restaurant', 'about', 'the', 'right', 'now.'], ['I', 'got', 'my', 'cat.'], ['I', 'saw', 'them', 'all.'], ['I', "don't", 'understand', 'all', 'of', 'that.'], ['He', 'said', 'he', 'can', 'count', 'to', 'his', 'son', 'to', 'count', 'to', 'his', 'debt.'], ['Please', 'remove', 'out', 'of', 'the', 'air', 'sung', 'in', 'so', 'many', 'stars', 'in', 'the', 'air.'], ['Tom', "couldn't", 'find', 'of', 'work.'], ['When', 'I', 'was', 'a', 'child,', 'I', 'would', 'sell', 'it', 'when', 'it', 'was', 'an', 'shoes.'], ["I'd", 'rather', 'walk', 'to', 'a', 'movie', 'before', 'going', 'to', 'bed.'], ['I', 'made', 'a', 'deal.'], ['I', 'bought', 'her', 'a', 'new', 'car.'], ["You're", 'probably', 'not', 'true.'], ['He', 'met', 'his', 'wife', 'on', 'the', 'election.'], ['I', 'think', 'you', 'have', 'the', 'ability', 'to', 'swim.'], ['It', 'was', 'not', 'a', 'child.'], ['We', 'can', 'handle', 'this.'], ['They', 'look', 'good', 'at', 'the', 'news.'], ['I', 'think', 'what', 'you', 'are', 'dangerous.'], ['No', 'one', 'is', 'here', 'safe.'], ['Nothing', 'happens', 'right', 'now.'], ['You', 'said', 'you', "don't", 'want', 'to', 'eat', 'your', 'hands.'], ['I', "don't", 'want', 'to', 'take', 'care', 'of', 'my', 'worried', 'about', 'you.'], ['I', "can't", 'stand', 'this', 'weather.'], ['Put', 'this', 'book', 'for', 'you', 'to', 'read.'], ['Both', 'of', 'the', 'two', 'birds', 'will', 'lead', 'two', 'ways.'], ['Did', 'you', 'enjoy', 'the', 'tour?'], ['Let', 'me', 'take', 'your', 'hand', 'to', 'your', 'hand', 'with', 'you.'], ['I', 'felt', 'all', 'the', 'whole', 'day.'], ['You', "didn't", 'buy', 'that,', "didn't", 'you?'], ['The', 'sun', 'is', 'the', 'most', 'worse', 'in', 'the', 'world.'], ["I'm", 'going', '30', 'minutes', 'thirty', 'years', 'in', 'October.'], ['I', 'had', 'a', 'good', 'weather', 'yesterday.'], ['I', 'am', 'sure', 'if', 'he', 'would', 'become', 'a', 'father.'], ['Think', 'for', 'you', 'what', 'you', 'want.'], ['I', 'thought', 'you', 'loved', 'that.'], ["I'm", 'glad', 'you', 'came', 'today.'], ['They', 'were', 'all', 'in', 'all', 'directions.'], ['In', 'addition', 'to', 'English,', 'he', 'speaks', 'English', 'languages.'], ["Don't", 'be', 'too', 'close', 'at', 'the', 'TV.'], ['He', 'chose', 'his', 'words.'], ['I', 'feel', 'weird.'], ['You', "shouldn't", 'have', 'left', 'my', 'own', 'way.'], ['We', 'need', 'to', 'cut', 'down', 'the', 'crops.'], ['I', 'ate', 'your', 'piece', 'of', 'cake.'], ["Where's", 'this', 'going?'], ['Please', 'choose', 'wisely.'], ['Were', 'you', 'at', 'home', 'yesterday?'], ['I', 'felt', 'pretty', 'good.'], ["I'm", 'glad', 'I', 'made', 'anything', 'to', 'be', 'with', 'someone', 'again.'], ['I', 'just', "can't", 'believe', 'this', 'is', 'just', 'the', 'house.'], ['Stop', 'worrying.'], ['Tell', 'me', 'whether', 'he', 'is', 'going', 'to', 'help', 'me', 'whether', 'he', 'comes.'], ['Have', 'you', 'written', 'this', 'question', 'by', 'this?'], ['The', 'train', 'is', 'coming.'], ['My', 'grandmother', 'has', 'been', 'looking', 'for', 'his', 'son', 'a', 'few', 'years', 'of', 'his', 'pocket.'], ['I', 'drink', 'wine.'], ['Please', 'show', 'me', 'your', 'idea.'], ['Tom', 'was', 'wounded', 'on', 'his', 'shoulder.'], ['I', 'admire', 'your', 'invitation.'], ['Doing', 'that', 'was', 'a', 'very', 'bad', 'idea.'], ["Don't", 'you', 'always', 'do', 'this', 'is', 'impossible.'], ["I'm", 'the', 'one', 'that', 'I', 'speak.'], ['They', 'kicked', 'Tom', 'the', 'game.'], ['I', 'remember', 'giving', 'him', 'angry.'], ['I', 'want', 'to', 'help', 'you', 'all', 'who', 'helped', 'me', 'do', 'that.'], ['I', 'just', "didn't", 'care.'], ["It's", 'true', 'that', 'against', 'everyone.'], ['I', 'owe', 'you', 'something.'], ['He', 'made', 'reference', 'to', 'death.'], ['Run', 'for', 'it!'], ['The', 'fence', 'is', 'on', 'the', 'rise.'], ['I', 'need', 'to', 'talk', 'to', 'you', 'about', 'this.'], ["You're", 'so', 'naive.'], ['They', 'found', 'nothing.'], ['Life', 'is', 'a', 'full', 'dollar', 'and', 'beautiful.'], ['Is', 'all', 'this', 'money', 'yours?'], ['I', 'want', 'it,', 'too.'], ["I'm", 'too', 'old', 'for', 'Tom.'], ['Could', 'you', 'get', 'one', 'of', 'this', 'one?'], ["What's", 'this?'], ["I'm", 'not', 'going', 'to', 'tell', 'you', 'my', 'name.'], ['No', 'one', 'will', 'protect', 'you.'], ['I', 'know', "it's", 'not', 'really', 'easy', 'to', 'understand', 'what', "it's", 'really', 'up', 'to', 'open', 'the', 'sound', 'of', 'sand.'], ["I'm", 'not', 'going', 'to', 'hurt', 'you.'], ['It', "wasn't", 'much', 'of', 'you', 'at', 'school', 'then.'], ['I', 'have', 'my', 'reasons.'], ['I', 'often', 'see', 'him', 'often', 'for', 'a', 'walk.'], ['I', 'want', 'to', 'study', 'English.'], ['Frankly', 'speaking,', 'I', 'tell', 'you,', 'Tom.'], ['Am', 'I', 'in', 'the', 'supermarket', 'difficult?'], ['They', 'are', 'on', 'us.'], ['Help', 'yourself', 'to', 'the', 'cake.'], ['You', 'may', 'have', 'a', 'beautiful', 'taste', 'in', 'the', 'hill.'], ['Having', 'accused', 'him', 'to', 'be', 'a', 'lawyer', 'after', 'he', 'took', 'a', 'dog', 'in', 'a', 'few', 'years', 'of', 'Japanese.'], ['I', 'was', 'afraid', 'of', 'you.'], ['I', 'am', 'not', 'as', 'Tom', 'as', 'a', 'friend.'], ['Bulgarian', 'is', 'hiding', 'in', 'the', 'stove.'], ['I', 'thought', 'I', 'had', 'died', 'when', 'I', 'was', 'in', 'the', "doctor's."], ['I', 'think', "it's", 'better', 'to', 'go', 'there', 'now.'], ['I', 'took', 'this', 'picture.'], ['The', 'conference', 'went', 'out', 'of', 'waiting', 'as', 'yesterday.'], ['What', 'makes', 'you', 'think', 'that', 'Tom', 'would', 'find', 'out', 'of', 'being', 'a', 'moment', 'imagined', 'that', 'Tom', 'would', 'have', 'to', 'do', 'with', 'that?'], ['I', 'had', 'to', 'see', 'you.'], ['I', 'may', 'have', 'to', 'move', 'another', 'way.'], ["I've", 'heard', 'him', 'before.'], ['Do', 'you', 'not', 'here.'], ['Show', 'me', 'another', 'example.'], ['Why', 'never', 'never', 'lie?'], ['I', 'noticed', 'it', 'had', 'to', 'leave', 'the', 'room.'], ['I', 'am', 'afraid', 'that', 'book', 'read.'], ['Why', 'do', 'you', 'have', 'the', 'orange', 'left?'], ['He', 'is', 'a', 'tennis', 'dog.'], ['What', 'is', 'the', 'best', 'French', 'language', 'to', 'French?'], ['Circumstances', 'can', 'be', 'afraid', 'to', 'help', 'you.'], ['You', 'must', 'not', 'have', 'to', 'keep', 'it', 'to', 'you.'], ['Is', 'that', 'your', 'daughter?'], ['She', 'cooked', 'us', 'a', 'wonderful', 'meal.'], ['I', 'know', 'Tom', 'is', 'still', 'busy.'], ['I', 'want', 'to', 'talk', 'to', 'you', 'about', 'this', 'report.'], ['I', "don't", 'love', 'Tom', 'very', 'much.'], ['He', 'is', 'now', 'going', 'to', 'succeed', 'so', 'much', 'of', 'the', 'other', 'way.'], ['Did', 'something', 'happen', 'to', 'Tom?'], ['She', 'asked', 'me', 'if', 'I', 'had', 'only', 'left', 'because', 'I', 'was', 'a', 'lawyer.'], ['She', 'may', 'have', 'missed', 'the', 'train.'], ['I', 'wish', 'I', 'was', 'more', 'spontaneous.'], ['It', 'was', 'a', 'huge', 'eye.'], ['They', 'showed', 'me', 'a', 'great', 'pictures.'], ['I', 'feel', 'bad', 'that', 'you', 'have', 'not', 'paid', 'yet.'], ['My', 'grandfather', 'is', 'innocent.'], ["You're", 'not', 'dead.'], ['I', "can't", 'get', 'up', 'with', 'me.'], ['This', 'is', 'his', 'car.'], ["You're", 'the', 'one', 'for', 'kids.'], ['She', 'plays', 'guitar.'], ['I', 'forgot', 'that.'], ['Tom', 'said', 'he', 'heard', "Mary's", 'own', 'face.'], ['I', "don't", 'understand', 'what', 'he', 'says.'], ['It', 'was', 'cold', 'yesterday.'], ["We're", 'not', 'finished.'], ['He', "hasn't", 'happened', 'yet.'], ['Tom', "doesn't", 'know', 'what', 'Mary', 'was', 'doing.'], ["That's", 'what', 'I', 'am', 'crazy.'], ['Let', 'Tom', 'answer.'], ['The', 'store', 'is', 'very', 'good', 'at', 'the', 'store', 'and', 'strong', 'water.'], ["She's", 'not', 'as', 'tall', 'as', 'a', 'high', 'team', 'sister.'], ['She', 'grows', 'up', 'with', 'each', 'other', 'upstairs.'], ["I'd", 'be', 'delighted', 'if', 'you', 'could.'], ['I', 'need', 'to', 'concentrate.'], ['Why', 'do', 'you', 'have', 'this', 'stuff?'], ['All', 'the', 'students', 'are', 'present.'], ['How', 'did', 'you', 'get', 'all', 'the', 'right', 'here?'], ['All', 'of', 'the', 'people', 'were', 'newlyweds.', 'and', 'got', 'married.'], ['You', 'promised.'], ['You', 'need', 'to', 'study', 'harder.'], ['This', 'is', 'the', 'big', 'attack.'], ['Go', 'away', 'before', 'they', 'see', 'you', 'here.'], ['Everyone', 'wants', 'it.'], ['The', 'plane', 'landed', 'on', 'time.'], ['No', 'one', 'answered.'], ['You', 'must', 'be', 'prepared.'], ['You', 'were', 'in', 'danger.'], ['This', 'is', 'your', 'book.'], ['I', "can't", 'remember', 'where', 'it', 'is.'], ['What', 'did', 'you', 'stop', 'in?'], ['I', 'want', 'you', 'to', 'leave', 'me', 'alone.'], ['That', 'sounds', 'familiar.'], ['I', 'like', 'your', 'place.'], ['It', 'never', 'occurred', 'to', 'me', 'that', 'I', 'could', 'never', 'be', 'able', 'to', 'help.'], ['She', 'was', 'scolded', 'by', 'her', 'friends.'], ['Where', 'is', 'the', 'bag?'], ["How's", 'your', 'boy', 'doing?'], ["You're", 'not', 'prepared', 'for', 'what', 'awaits', 'you.'], ['I', 'met', 'my', 'room', 'after', 'you', 'ever', 'used', 'to', 'order.'], ['Tom', 'was', 'a', 'little', 'confused.'], ["That's", "what's", 'important.'], ['I', 'got', 'it.'], ['I', 'am', 'too', 'good', 'to', 'smoke.'], ['Tom', "isn't", 'very', 'understanding.'], ['I', "don't", 'think', 'we', 'should', 'go', 'there', 'today.'], ["I'm", 'willing', 'to', 'help', 'you.'], ['I', 'did', 'what', 'I', 'was', 'told.'], ['Did', 'you', 'enjoy', 'yourself?'], ['Tom', 'has', 'been', 'waiting', 'for', 'an', 'hour.'], ['Kyoto', 'is', 'in', 'his', 'business', 'for', 'beauty.'], ['Tom', 'grew', 'up', 'in', 'the', 'river.'], ["That's", 'alright.'], ['I', "don't", 'want', 'you', 'to', 'close', 'the', 'possibility', 'of', 'yours.'], ["They're", 'all', 'students.'], ['Tom', "doesn't", 'remember', 'where', 'he', 'put', 'the', 'matter', 'where', 'he', 'is.'], ['He', 'sat', 'after', 'her', 'children.'], ['I', "don't", 'want', 'to', 'be', 'your', 'friend.'], ["There's", 'a', 'time!'], ["We're", 'sorry', 'that', 'I', "couldn't", 'help', 'you.'], ['We', 'need', 'a', 'little', 'rest.'], ['I', 'need', 'to', 'get', 'some', 'money.'], ['I', 'usually', 'go', 'to', 'school', 'for', 'school.'], ['I', 'put', 'clothes', 'in', 'my', 'clothes.'], ['I', 'want', 'a', 'piece', 'of', 'cake.'], ['The', 'bullet', 'found', 'its', 'surgery.', 'in', 'his', 'face.'], ['The', 'meeting', 'was', 'clear', 'tomorrow.'], ['I', 'had', 'a', 'cup', 'of', 'coffee', 'and', 'a', 'cup', 'of', 'coffee.'], ['She', 'spoke', 'French.'], ['I', 'wonder', 'if', 'it', 'will', 'rain', 'tomorrow.'], ['Did', 'I', 'believe', 'that', 'I', 'had', 'to', 'be', 'alone', 'this', 'afternoon?'], ['That', 'restaurant', 'was', 'enough', 'time', 'for', 'his', 'car', 'to', 'buy', 'it.'], ['Why', 'are', 'we', 'here', 'today?'], ['Have', 'you', 'finished', 'clean', 'up', 'your', 'room?'], ['How', 'do', 'I', 'have', 'to', 'eat', 'my', 'dog', 'is,'], ['I', 'had', 'a', 'change', 'next', 'month.'], ['Tom', 'gave', 'Mary', 'Mary.'], ['Is', 'that', 'so', 'terrible?'], ['I', "can't", 'wait', 'home', 'in', 'bed.'], ['He', 'won', 'a', 'gold', 'medal.'], ['I', "don't", 'have', 'a', 'passport.'], ["There's", 'not', 'gone', 'and', 'asked', 'me.'], ['Is', 'that', 'a', 'challenge?'], ['The', 'number', 'needs', 'your', 'help.'], ['Women', 'can', 'hear', 'animals', 'animals', 'animals', 'in', 'different', 'animals', 'in', 'different', 'bar.'], ["We're", 'alone.'], ['You', 'must', 'not', 'miss', 'it.'], ["You're", 'a', 'selfish.'], ['I', "can't", 'swim', 'nor', 'yen', 'sometimes.'], ['I', 'am', 'a', 'poor', 'diet.'], ['I', 'knew', 'something', 'Tom', 'will', 'have', 'to', 'do.'], ['May', 'I', 'have', 'a', 'first', 'time?'], ['Correct', 'the', 'underlined', 'words.'], ['Does', 'Tom', 'know', 'why?'], ['He', 'hurt', 'his', 'foot', 'when', 'he', 'fell.'], ['Tom', 'took', 'a', 'few', 'letters', 'and', 'left.'], ['I', 'forgot', 'your', 'phone', 'number.'], ['The', 'poor', 'of', 'you', 'are', 'very', 'beautiful.'], ['I', 'have', 'a', 'pair', 'of', 'paper', 'in', 'advance.'], ['Why', 'are', 'you', 'sitting', 'there?'], ['This', 'book', "hasn't", 'been', 'translated', 'in', 'French.'], ['We', 'hate', 'the', 'smell', 'out', 'the', 'weather.'], ["I'll", 'help', 'my', 'shirts.'], ['He', 'can', 'pay', 'anything', 'in', 'fifty', 'dollars.'], ['Please', 'bring', 'up', 'a', 'room.'], ['I', "didn't", 'think', 'you', 'were', 'coming.'], ["I'm", 'not', 'as', 'kind', 'of', 'as', 'people', 'think.'], ["I'm", 'not', 'sure', 'I', 'want', 'to', 'buy', 'the', 'job.'], ['I', 'had', 'a', 'job', 'when', 'I', 'was', 'your', 'age.'], ["Don't", 'make', 'the', 'same', 'mistake', 'me.'], ['A', 'lot', 'of', 'people', 'think', 'so.'], ["Let's", 'start', 'now.'], ['They', 'have', 'kids.'], ['I', "didn't", 'know', 'what', 'I', 'meant.'], ['He', 'is', 'in', 'high', 'school', 'for', 'the', 'restaurant', 'of', 'painting.'], ['How', 'long', 'will', 'it', 'take', 'up', 'to', 'this', 'coming?'], ['She', 'donated', 'countless', 'pieces', 'to', 'the', 'museum.'], ['The', 'investigation', 'is', 'ongoing.'], ['We', 'met', 'the', 'end', 'of', 'the', 'fire.'], ['She', 'agreed', 'to', 'go', 'to', 'the', 'meeting.'], ['This', 'is', 'appalling.'], ['The', 'Japanese', 'have', 'plenty', 'of', 'meat.'], ['They', 'lost', 'their', 'dog.'], ['He', 'is', 'almost', 'as', 'saying', 'as', 'his', 'brother.'], ['Do', 'you', 'talk', 'about', 'your', 'projects?'], ['Tom', 'says', 'he', 'is', 'better', 'than', 'yesterday.'], ['He', 'likes', 'tea.'], ["That's", 'a', 'fact.'], ['Well,', 'do', 'you', 'think', 'it', 'is?'], ['The', 'dog', 'followed', 'me', 'to', 'my', 'home.'], ['We', 'will', 'survive.'], ['Most', 'people', 'think', 'so.'], ['When', 'I', 'woke', 'up', 'this', 'morning,', 'I', 'am', 'sick.'], ['He', 'was', 'at', 'the', 'time', 'being.'], ['She', 'knows', 'the', 'truth.'], ['I', "don't", 'know', 'how', 'much', 'time', 'for', 'the', 'rest', 'of', 'the', 'rest', 'of', 'the', 'book.'], ['You', 'miss', 'the', 'accident', 'as', 'a', 'bad', 'one.'], ['I', 'have', 'a', 'good', 'behavior.'], ['We', 'had', 'a', 'deal.'], ['He', 'had', 'a', 'lot', 'of', 'Canadian', 'named'], ['I', 'am', 'quiet.'], ['I', 'called', 'for', 'help.'], ['Please', 'let', 'me', 'live', 'in', 'a', 'bit.'], ['Can', 'you', 'stop', 'singing?'], ['I', "can't", 'believe', 'anything.'], ["I'd", 'love', 'to', 'love', 'with', 'you.'], ['How', 'long', 'did', 'you', 'stay', 'in', 'Boston?'], ["Don't", 'believe', 'what', 'she', 'says.'], ['Do', 'you', 'want', 'to', 'go?'], ["I'd", 'like', 'to', 'try', 'to', 'get', 'more', 'longer.'], ["Tom's", 'bag', 'was', 'very', 'successful.'], ['Most', 'houses', 'are', 'made', 'from', 'wood.'], ["Don't", 'try', 'this', 'at', 'home.'], ["I'm", 'sorry', 'I', 'hurt', 'you.'], ['She', 'advised', 'him', 'to', 'drive', 'a', 'car.'], ['A', 'number', 'of', 'houses', 'will', 'not', 'get', 'back', 'here.'], ['The', 'number', 'of', 'the', 'number', 'is', 'missing.'], ['It', 'almost', 'worked.'], ['What', 'time', 'did', 'you', 'get', 'there?'], ["It's", 'a', 'matter', 'of', 'principle.'], ['I', 'told', 'the', 'big', 'lie.'], ['I', 'wish', 'to', 'learn', 'to', 'play', 'the', 'food.'], ['Tom', 'is', 'a', 'novelist'], ['You', 'speak', 'French,', "isn't", 'he?'], ['It', 'is', 'easy', 'to', 'keep', 'you', 'walking', 'at', 'night.'], ['I', 'just', 'wanted', 'to', 'talk', 'to', 'you.'], ['I', 'will', 'take', 'care', 'of', 'the', 'flowers', 'in', 'my', 'glasses.'], ['Can', 'anyone', 'please', 'help', 'me?'], ['That', "doesn't", 'matter', 'again.'], ['Three', 'of', 'the', 'fact', 'that', 'went', 'out', 'of', 'curiosity.'], ['He', 'always', 'earned', 'a', 'thing', 'to', 'do', 'something', 'before', 'the', 'time.'], ['This', 'screwdriver', 'fits', 'me', 'well.'], ['He', "isn't", 'good', 'at', 'playing', 'in', 'this', 'river.'], ['We', 'saw', 'him.'], ['Why', "didn't", 'you', 'go', 'to', 'school?'], ['He', 'is', 'a', 'very', 'intelligent', 'boy.'], ['He', 'was', 'planning', 'to', 'wait.'], ["I'll", 'sing.'], ['This', 'is', 'too', 'small', 'for', 'me.'], ["I'm", 'playing', 'with', 'my', 'friends.'], ['We', 'depend', 'on', 'you.'], ['Did', 'you', 'take', 'a', 'good', 'time', 'today?'], ['Tom', 'and', 'Mary', 'hurried', 'to', 'the', 'party', 'and', 'drove', 'the', 'house.'], ['I', 'want', 'my', 'room', 'in', 'my', 'room.'], ['Where', 'do', 'you', 'get', 'it?'], ['I', 'promise', 'you', 'will', 'be', 'prepared.'], ['Tie', 'your', 'shoelaces.'], ['I', 'feel', 'sorry', 'for', 'her.'], ['Thousands', 'of', 'people', 'can', 'sit', 'in', 'that', 'way.'], ['We', 'need', 'a', 'reply.'], ['When', 'do', 'you', 'get', 'it?'], ['At', 'last,', 'I', 'finished', 'my', 'work.'], ['Tom', "didn't", 'agree', 'on', 'with', "Mary's", 'marriage.'], ['They', 'were', 'so', 'different.'], ["I'll", 'take', 'you', 'when', 'you', 'want.'], ['What', 'did', 'you', 'eat', 'for', 'breakfast?'], ['Why', 'are', 'you', 'upset?'], ['Is', 'this', 'your', 'birthday?'], ["Let's", 'teach', 'the', 'best', 'of', 'him.'], ['I', 'love', 'what', 'you', 'did', 'with', 'your', 'hair.'], ['I', 'lost', 'my', 'key.'], ['You', 'reap', 'what', 'you', 'sow.'], ["You'll", 'try', 'another', 'chance.'], ['How', 'do', 'you', 'know', 'I', "didn't", 'do', 'this?'], ['Her', 'face', 'turned', 'up.'], ['What', 'time', 'is', 'it', 'time', 'tomorrow', 'next', 'time', 'of?'], ['I', 'brought', 'a', 'hybrid.'], ['Both', 'of', 'them', 'seem', 'suspicious.'], ['You', 'need', 'to', 'clean', 'your', 'room.'], ["I'm", 'not', 'sure', 'that', "you're", 'ready.'], ['We', 'became', 'good', 'friends.'], ['My', 'son', 'can', 'be', 'able', 'to', 'come', 'to', 'time.'], ['Tom', 'lives', 'around', 'here.'], ['You', 'were', 'drunk,', "weren't", 'you?'], ['Why', 'do', 'you', 'resist?'], ['Give', 'me', 'the', 'way', 'I', 'look.'], ['She', 'was', 'the', 'first', 'one', 'for', 'first', 'for', 'first', 'to', 'first', 'one.'], ['She', 'is', 'a', 'doctor.'], ['Does', 'it', 'just', 'you?'], ['Nobody', 'told', 'me', 'you', 'were', 'here.'], ['Tom', 'is', 'your', 'friend.'], ["You're", 'depressed,', "aren't", 'you?'], ['They', 'clung', 'together', 'for', 'warmth.'], ['She', 'will', 'help', 'him', 'if', 'you', 'ask.'], ['I', 'think', "it's", 'time', 'for', 'me', 'to', 'decide.'], ["You're", 'acting', 'like', 'a', 'child.'], ['You', 'know', "it's", 'a', 'lie.'], ['I', "don't", 'say', "that's", 'wrong.'], ['Can', 'you', 'watch', 'the', 'children?'], ['What', 'does', 'the', 'cat', 'in', 'mind?'], ["They're", 'disposable.'], ['I', 'was', 'afraid', 'that', 'you', 'can', 'say.'], ["They're", 'coming.'], ['You', "should've", 'seen', 'it.'], ['The', 'old', 'man', 'looked', 'at', 'each', 'other.'], ["Let's", 'talk', 'in', 'French.'], ['Many', 'of', 'people', 'are', 'used', 'to', 'eat', 'three', 'times', 'as', 'many', 'animals', 'in', 'that', 'day.'], ['Birds', 'are', 'in', 'the', 'sky.'], ['You', 'need', 'to', 'be', 'in', 'your', 'family.'], ['I', 'gave', 'him.'], ['I', 'love', 'you.'], ['I', 'want', 'to', 'talk', 'to', 'a', 'lawyer.'], ['I', 'hope', "you'll", 'have', 'an', 'teeth.'], ['You', "should've", 'waited', 'for', 'you', 'to', 'leave.'], ['Some', 'people', 'think', "I'm", 'crazy.'], ['They', 'hid', 'the', 'soccer', 'under', 'the', 'table.'], ['Have', 'you', 'ever', 'eaten', 'alone', 'in', 'a', 'restaurant?'], ['He', 'asked', 'me', 'two', 'questions', 'of', 'questions', 'they', 'want', 'them.'], ['What', 'is', 'it', 'all', 'about?'], ["They're", 'inside.'], ["He's", 'ready', 'to', 'leave.'], ['He', 'met', 'himself', 'about', 'you.'], ['The', 'meeting', 'was', 'postponed', 'all', 'the', 'meeting', 'tomorrow.'], ['I', 'wish', 'to', 'live', 'in', 'a', 'small', 'town.'], ['I', 'think', 'Tom', 'is', 'still', 'in', 'Boston.'], ["He's", 'in', 'prison.'], ['He', 'married', 'my', 'sister', 'in', 'my', 'sister.'], ['Who', 'wrote', 'this', 'building?'], ['"May', 'help', 'you', 'sound', 'so', 'sure', 'if', "it's", 'not', 'all', 'that', 'if', 'you', "don't", 'understand', 'if', "it's", 'all', 'trouble.'], ["I'm", 'not', 'lost.'], ['What', 'else', 'else', 'do', 'you', 'like', 'him?'], ['I', "should've", 'got', 'you', 'to', 'come', 'at', 'once.'], ["He's", 'as', 'tall', 'as', 'he', 'is.'], ['It', 'cost', 'me', 'ten', 'dollars.'], ['I', 'think', 'we', 'are', 'different', 'things.'], ['Will', 'you', 'lend', 'me', 'your', 'book', 'for', 'your', 'book?'], ['I', 'refuse', 'to', 'accept', 'that.'], ['She', 'met', 'her', 'name', 'from', 'the', 'game.'], ['He', 'was', 'born', 'in', 'Africa.'], ['You', 'will', 'give', 'it', 'to', 'an', 'apartment', 'next', 'to', 'you', 'to', 'get', 'to', 'a', 'letter.'], ['I', 'never', 'told', 'me', 'about', 'the', 'way', "I've", 'ever', 'told', 'me', 'about', 'that.'], ['All', 'of', 'his', 'money', 'has', 'its', 'project.'], ['Were', 'you', 'even', 'tempted?'], ["We're", 'winning.'], ['If', 'it', 'were', 'not', 'for', 'water,', 'you', 'could', 'fall', 'asleep.'], ['Tom', 'loves', 'playing', 'video', 'games.'], ['I', "don't", 'really', 'want', 'you', 'to', 'be', 'in', 'such', 'me.'], ['This', 'job', 'will', 'be', 'paid', 'for', 'work', 'soon.'], ['She', 'was', 'surprised', 'by', 'the', 'result.'], ['The', 'children', 'are', 'changing.'], ['Who', 'were', 'you', 'talking', 'about?'], ['Do', 'you', 'enjoy', 'French', 'difficult?'], ['I', "don't", 'want', 'Tom', 'to', 'help', 'you.'], ['Just', 'how', 'much', 'you', 'want', 'to', 'do', 'it.'], ['I', 'love', 'being', 'right.'], ['I', 'never', 'thought', "I'd", 'see', 'your', 'face.'], ['If', 'Tom', 'was', 'here,', 'what', 'Tom', 'was', 'doing.'], ['Why', 'were', 'you', 'so', 'busy', 'yesterday?'], ["It's", 'a', 'chance', 'to', 'do', 'it', 'for', 'a', 'long', 'time.'], ["It's", 'never', 'going', 'to', 'happen.'], ['The', 'goods', 'are', 'closed', 'for', 'Christmas.'], ["Don't", 'be', 'upset.'], ['I', 'lost', 'her', 'arm', 'arm', 'in', 'her', 'class.'], ['Do', 'you', 'plan', 'to', 'go', 'to', 'Paris?'], ["That's", 'what', 'I', 'called', 'him.'], ['I', 'had', 'dinner', 'for', 'you.'], ["We're", 'running', 'out', 'of', 'fashion.'], ['Never', 'try', 'to', 'find', 'out', 'of', 'that', 'because', 'of', 'him', 'just', 'a', 'full', 'hat.'], ['Stop', 'being', 'cruel.'], ['Do', 'it', 'this', 'way.'], ['Loosen', 'up.'], ['No', 'one', 'else', 'laughed.'], ['He', 'looked', 'in', 'the', 'box.'], ['I', 'found', 'a', 'apartment.'], ['Do', 'you', 'think', "I'm", 'pretty?'], ['I', "don't", 'trust', 'you', 'feel', 'full.'], ['At', 'first,', 'I', "didn't", 'come.'], ['What', 'did', 'you', 'do', 'with', 'your', 'holiday?'], ['What', 'awful', 'idiot!'], ['I', 'like', 'chess.'], ['Her', 'brother', 'was', 'the', 'one', 'with', 'me.'], ['The', 'pain', 'has', 'finally', 'arrived.'], ['Why', "don't", 'you', 'come', 'from?'], ['How', 'often', 'do', 'you', 'close', 'your', 'eyes?'], ['We', 'need', 'a', 'new', 'one.'], ['I', 'know', 'Tom', 'is', 'finished.'], ['How', 'long', 'have', 'you', 'had', 'a', 'time', 'of', 'that?'], ['I', 'know', 'the', 'company', 'every', 'day.'], ['Tom', 'went', 'to', 'America', 'the', 'week', 'last', 'week.'], ["I'd", 'like', 'to', 'discuss', 'something', 'with', 'you.'], ['I', 'let', 'him', 'down.'], ['In', 'case', 'of', 'fire,', 'push', 'on', 'the', 'button.'], ['They', 'forced', 'their', 'mother', 'tired.'], ["We're", 'going', 'to', 'try', 'again.'], ['He', 'is', 'likely', 'to', 'win', 'the', 'game.'], ['I', 'forgot', 'my', 'cell', 'address.'], ['He', 'was', 'upstairs.'], ['Your', 'name', 'is', 'familiar', 'to', 'you.'], ['She', 'regretted', 'so', 'little', 'friends.'], ['She', 'met', 'him', 'that', 'he', 'saw', 'him.'], ['I', 'hope', 'it', 'will', 'not', 'rain', 'tomorrow.'], ['He', 'was', 'walking', 'in', 'history.'], ['I', 'think', 'I', 'broke', 'my', 'ankle.'], ['Tom', 'bought', 'a', 'book.'], ['I', 'know', 'what', 'they', 'were', 'doing.'], ['Let', 'me', 'see', 'it.'], ['This', "isn't", 'legal.'], ['She', 'got', 'there', 'and', 'then', 'feel', 'nice.'], ['You', 'seem', 'really', 'busy', 'this', 'morning.'], ['I', 'am', 'right', 'right', 'now.'], ['I', 'need', 'to', 'find', 'myself.'], ['I', 'think', "I'm", 'not', 'the', 'reason', 'for', 'normal.'], ['We', 'make', 'you', 'a', 'lot.'], ['We', "don't", 'have', 'enough', 'beer.'], ['The', 'moon', 'is', 'there.'], ["I'm", 'not', 'going', 'to', 'the', 'dentist', 'Hotel.'], ['I', 'looked', 'everywhere.'], ['I', 'wish', 'I', 'had', 'a', 'copy', 'of', 'this', 'book.'], ['It', 'was', 'such', 'a', 'mistake', 'of', 'my', 'mistake.'], ['She', 'killed', 'him', 'the', 'other', 'man.'], ['I', "don't", 'know', 'what', "I'm", 'doing.'], ['Japan', 'imports', 'of', 'his', 'cigarettes', 'in', '1990.'], ['Many', 'parents', 'have', 'finished', 'on', 'the', 'lights', 'we', 'went', 'to', 'leave.'], ["He's", 'smarter', 'than', 'you.'], ['It', 'looks', 'like', "we're", 'going', 'to', 'happen.'], ["We're", 'not', 'as', 'good', 'as', 'you', 'are.'], ['I', 'think', 'you', 'should', 'think', 'about', 'the', 'future.'], ['Did', 'I', 'give', 'it', 'a', 'lot?'], ["Isn't", 'it', 'going', 'to', 'happen?'], ['After', 'a', 'general', 'must', 'take', 'out', 'for', 'a', 'walk', 'for', 'our', 'walk.'], ['Which', 'one', 'of', 'you', 'have', 'a', 'few', 'minutes?'], ['He', 'will', 'be', 'back', 'against', 'the', 'rain.'], ['Some', 'people', 'think', 'the', 'world', 'is', 'expected.'], ['Did', 'you', 'do', 'it', 'for', 'yourself?'], ['She', 'is', 'listening', 'to', 'music.'], ['If', 'you', 'want', 'to', 'know', 'me', 'like', "they'll", 'let', 'me', 'like', 'you.'], ['Take', 'up', 'on.'], ['His', 'room', 'is', 'always', 'neat.'], ["I've", 'been', 'here', 'since', 'this', 'morning.'], ['Do', 'you', 'miss', 'the', 'gift', 'of', 'studying', 'English?'], ['Why', "don't", 'you', 'take', 'your', 'coat', 'off?'], ["I'll", 'be', 'watching', 'you.'], ['When', 'did', 'you', 'have', 'this?'], ['Your', 'book', 'is', 'upside', 'down.'], ["That's", 'enough.'], ['Tom', 'asked', 'his', 'questions.'], ['I', 'have', 'to', 'lose', 'my', 'children.'], ['Tom', "won't", 'likely', 'you', 'again.'], ["I'll", 'let', 'Tom', 'answer.'], ['Did', 'anybody', 'see', 'what', 'happened?'], ["Don't", 'be', 'afraid', 'of', 'seeing', 'a', 'doctor.'], ['I', "don't", 'remember', 'asking', 'for', 'advice.'], ["That's", 'what', 'Tom', 'wants', 'to', 'know.'], ["I'd", 'like', 'to', 'travel', 'alone.'], ['He', 'has', 'read', 'books.'], ['He', 'stopped', 'to', 'meet', 'to', 'the', 'company.'], ["It's", 'your', 'own', 'safety.'], ['Tom', 'and', 'Mary', 'are', 'young', 'by', 'imagination.'], ['We', 'have', 'betrayed', 'you.'], ['Either', 'if', 'you', 'want', 'me', 'to.'], ['To', 'make', 'a', 'regular', 'more', 'things', 'is', 'not', 'going', 'to', 'make', 'mistakes.'], ['It', 'was', 'extremely', 'mercy.'], ['Tom', 'tried', 'to', 'read', 'the', 'box.'], ['Shut', 'the', 'door.'], ['The', 'President', 'of', 'the', 'company', 'he', 'gave', 'him', 'to', 'translate', 'his', 'native', 'number', 'and', 'began', 'to', 'fall.'], ['Take', 'it', 'down.'], ['Be', 'careful', 'or', "you'll", 'miss', 'the', 'roof', 'can.'], ['Take', 'off', 'the', 'tongue.'], ['Could', 'you', 'give', 'us', 'a', 'little', 'samples', 'of', 'your', 'work.'], ['Are', 'you', 'sure', 'you', "didn't", 'do', 'anything?'], ['Tom', 'is', 'extremely', 'poor.'], ['I', 'bought', 'a', 'new', 'carpet.'], ['Although', 'she', 'was', 'looking', 'for', 'her', 'when', 'she', 'was', 'looking', 'for.'], ['I', 'need', 'some', 'paper.'], ['I', 'have', 'a', 'business.'], ['You', 'can', 'fix', 'this', 'out.'], ['If', 'I', 'wanted', 'to', 'stay', 'here,', "I'd", 'want', 'to', 'be.'], ["I'm", 'not', 'at', 'home', 'on', 'Sundays.'], ['I', 'made', 'some', 'weight.'], ['Did', 'I', 'wake', 'you', 'up?'], ["I'm", 'not', 'sure', 'that', 'he', 'wanted', 'to', 'see', 'this', 'movie.'], ['You', 'were', 'talking', 'about', 'that.'], ['I', 'thought', 'you', 'have', 'other', 'things', 'to', 'save', 'you.'], ['Take', 'a', 'look.'], ['I', 'beg', 'you', 'to', 'help', 'me.'], ['I', 'have', 'to', 'make', 'sure', "we're", 'all', 'right.'], ["I'm", 'going', 'to', 'make', 'a', 'totally', 'relationship.'], ['See', 'things', 'as', 'they', 'are.'], ['A', 'teacher', 'must', 'be', 'pretty', 'kind', 'to', 'them.'], ['When', 'did', 'the', 'movie', 'start?'], ["I'll", 'be', 'wearing', 'my', 'behavior.'], ['Not', 'everyone', 'in', 'life.'], ['Nothing', 'is', 'always', 'forever.'], ['We', "don't", 'have', 'any', 'of', 'this', 'affair.'], ['He', 'told', 'me', 'to', 'meet', 'her', 'apartment.'], ["I'm", 'the', 'captain', 'of', 'this', 'ship.'], ['I', 'want', 'you', 'to', 'come', 'my', 'money', 'now.'], ['What', 'does', 'it', 'good', 'so', 'well?'], ['How', 'is', 'your', 'family', 'name', 'written?'], ['You', 'should', 'omit', 'this', 'word', 'for', 'the', 'sentence.'], ['We', 'will', 'have', 'a', 'room', 'at', 'home', 'from', 'the', 'house.'], ['I', 'threw', 'a', 'stone', 'on', 'the', 'door,', 'but', 'it', 'was', 'going', 'on.'], ['Our', 'body', 'is', 'the', 'only', 'way', 'of', 'success.'], ["You're", 'being', 'prepared.'], ['I', 'almost', 'left', 'the', 'train.'], ['I', 'want', 'a', 'cup', 'of', 'tea.'], ['She', 'made', 'him', 'a', 'new', 'suit.'], ['There', 'are', 'many', 'boys', 'in', 'the', 'concert.'], ["That's", 'all', 'that', 'happening.'], ['Find', 'the', 'cat.'], ['I', 'tried', 'everything.'], ['He', 'gave', 'us', 'some', 'songs.'], ['Please', 'keep', 'it', 'up', 'and', 'please.'], ['We', 'can', 'fix', 'this.'], ['More', 'of', 'the', 'water', 'has', 'been', 'back', 'here.'], ['I', 'think', "you're", 'under', 'under', 'all', 'now.'], ['That', 'young', 'dog', 'has', 'no', 'dog', 'in', 'April.'], ['How', 'many', 'songs', 'do', 'you', 'have', 'left?'], ['The', 'investigation', 'is', 'a', 'famous', 'writer.'], ['I', 'just', 'wanted', 'to', 'see', 'what', 'would', 'happen.'], ['I', 'think', "I've", 'look', 'like', 'this', 'into', 'this', 'one.'], ['What', 'will', 'the', 'light', "you'll", 'be', 'able', 'to', 'succeed.'], ['I', 'have', 'lots', 'of', 'Canadian', 'friends.'], ['I', 'saw', 'the', 'door', 'told', 'Tom', 'to', 'see', 'the', 'truth.'], ['The', 'United', 'States', 'is', 'growing', 'two', 'growth'], ['I', "don't", 'want', 'to', 'fight.'], ['I', 'think', 'of', 'you', 'sometime.'], ['I', 'wonder', 'if', "he's", 'really', 'sick.'], ['Tom', 'wanted', 'to', 'dance', 'with', 'Mary.'], ['Why', 'are', 'they', 'so', 'hard-headed?'], ['I', 'need', 'to', 'know', 'your', 'plan', 'for', 'you.'], ['I', "can't", 'believe', 'he', 'kissed', 'you.'], ['That', 'should', 'be', 'enough.'], ['Thank', 'you', 'for', 'the', 'compliment.'], ['How', 'old', 'is', 'this?'], ['Stop', 'staring', 'at', 'me.'], ['We', 'went', 'to', 'the', 'park', 'to', 'take', 'pictures.'], ['I', "didn't", 'know', 'that', 'Tom', 'would', 'go', 'with', 'him.'], ['She', 'is', 'preparing', 'for', 'the', 'corner.'], ["It's", 'easy', 'to', 'make', 'mistakes.'], ['We', 'ran', 'into', 'the', 'same', 'train.'], ['He', 'passed', 'the', 'examination.'], ['He', 'walked', 'out', 'of', 'the', 'walk.'], ['You', 'are', 'so', 'wrong.'], ['Do', 'you', 'really', 'want', 'this', 'money', 'in', 'your', 'money', 'on', 'this', 'bank?'], ['No', 'one', 'helped', 'me.'], ['My', 'uncle', 'gave', 'him', 'a', 'present.'], ['I', 'made', 'my', 'teacher.'], ['She', "wasn't", 'polite', 'to', 'the', 'truth.'], ['Which', 'book', 'is', 'the', 'book?'], ['Do', 'you', 'have', 'a', 'black', 'shower', 'every', 'day?'], ['I', 'wanted', 'you', 'to', 'be', 'proud', 'of', 'me.'], ['We', 'know', 'the', 'best', 'of', 'Tom.'], ['Tom', "didn't", 'want', 'to', 'think', 'about', 'the', 'situation.'], ['Be', 'careful', 'the', 'party', 'is', 'on', 'the', 'job.'], ['I', 'had', 'my', 'ears', 'pierced.'], ['Have', 'you', 'ever', 'heard', 'her', 'sing?'], ["We're", 'aware', 'of', 'the', 'risks.'], ['Tom', 'says', 'he', 'wanted', 'to', 'do', 'a', 'break.'], ["That's", 'all', 'I', 'over.'], ['I', "didn't", 'say', 'that.'], ['You', "can't", 'blame', 'him.'], ['We', 'can', 'meet', 'each', 'other.'], ["They're", 'all', 'missing.'], ['I', 'have', 'a', 'little', 'fever.'], ['Are', 'you', 'going', 'to', 'join', 'us?'], ['Did', 'you', 'notice', 'what', 'you', 'have', 'everything?'], ['I', 'want', 'to', 'visit', 'a', 'visit', 'visit', 'you.'], ['Tell', 'me', 'what', 'you', 'know', 'about', 'it.'], ['Can', 'you', 'call', 'me', 'the', 'police', 'station?'], ['I', 'had', 'a', 'choice.', 'I', "don't", 'have', 'to.'], ['You', 'look', 'happy.'], ['I', 'want', 'to', 'be', 'delighted', 'to', 'believe', 'that', 'he', 'is', 'likely', 'to', 'be', 'a', 'happy', 'company.'], ['I', 'wish', 'we', 'had', 'written', 'this', 'month.'], ['I', 'hope', "you'll", 'soon', 'come', 'soon.'], ['I', 'need', 'to', 'earn', 'more', 'money.'], ['Why', 'do', 'you', 'want', 'to', 'go', 'to', 'school?'], ['Tom', "doesn't", 'need', 'to', 'go.'], ["What's", 'this', 'stuff?'], ['I', 'want', 'to', 'talk', 'about', 'the', 'future.'], ['Take', 'off', 'the', 'boxes'], ['Almost', 'all', 'of', 'the', 'dogs', 'are', 'alive.'], ['I', 'came', 'here', 'to', 'ask', 'you.'], ['Tom', 'used', 'to', 'accept', 'your', 'cap.'], ['Both', 'are', 'very', 'beautiful.'], ['Take', 'off', 'the', 'lights', 'and', 'relax.'], ['He', "didn't", 'have', 'lunch', 'since', 'then.'], ['The', 'store', 'is', 'legal', 'here.'], ['I', "didn't", 'steal', 'it.'], ['I', 'made', 'you', 'whistling.', 'You', 'must', 'be', 'happy.'], ['Can', 'you', 'come', 'with', 'us?'], ['Tom', 'always', 'speaks', 'of', 'Mary.'], ["What's", 'your', 'name?'], ['I', "don't", 'think', 'that', 'there', 'is', 'two', 'of', 'us', 'anymore.'], ['We', "can't", 'do', 'it.'], ['This', 'company', 'is', 'hard', 'for', 'the', 'heavy', 'increase', 'on', 'the', 'floor', 'of', 'the', 'heavy', 'rain.'], ['Are', 'you', 'dressed?'], ['It', 'was', 'quite', 'useless.'], ['Are', 'you', 'sure', "that's", 'safe?'], ['Both', 'of', 'my', 'parents', 'are', 'living.'], ['He', 'lit', 'the', 'candles.'], ['Please', 'bring', 'me', 'a', 'lot.'], ['He', 'is', 'not', 'at', 'home.'], ['I', 'want', 'to', 'hear', 'more', 'about', 'it.'], ['What', 'kind', 'of', 'food', 'do', 'you', 'want?'], ['Last', 'night', 'I', 'was', 'held', 'in', 'bed', 'at', 'bed', 'at', 'night.'], ["I'd", 'like', 'to', 'know', 'the', 'answer', 'to', 'this', 'question.'], ['She', 'took', 'a', 'week', 'in', 'a', 'store', 'summer.'], ['Not', 'a', 'word', 'about', 'that', 'word', 'then.'], ['You', 'want', 'to', 'go', 'out', 'just', 'come', 'and', "don't", 'you?'], ['People', 'are', 'working', 'in', 'the', 'fields.'], ['Who', 'wants', 'this?'], ['Do', 'you', 'have', 'one?'], ['What', 'do', 'you', 'want', 'to', 'be', 'more', 'about?'], ['I', 'want', 'you', 'to', 'be', 'prepared.'], ['It', 'is', 'high', 'time', 'you', 'had', 'time', 'for', 'it.'], ['Show', 'me', 'how', 'to', 'do', 'it.'], ['This', 'is', 'rubbish.'], ["That's", 'free.'], ["I'd", 'like', 'to', 'introduce', 'myself.'], ["That's", 'my', 'teacher.'], ['Tom', 'refused', 'to', 'stop', 'the', 'subject.'], ['I', 'just', 'want', 'to', 'be', 'ready.'], ['We', 'like', 'a', 'man', 'like', 'Tom', 'is.'], ['Will', 'you', 'play', 'the', 'piano?'], ['We', 'have', 'to', 'start', 'at', 'once.'], ['Tom', 'was', 'kicked', 'by', 'the', 'lock', 'on', 'the', 'door.'], ["That's", 'not', 'where', 'I', 'live.'], ['Anybody', 'can', 'make', 'a', 'mistake.'], ['One', 'of', 'the', 'language', 'is', 'the', 'language', 'of', 'the', 'language', 'of', 'mine.'], ["I'm", 'glad', "you're", 'here.'], ['Do', 'you', 'know', 'where', 'the', 'bus', 'schedule?'], ['He', 'left', 'in', 'Australia.'], ['No', 'more', 'people', 'want', 'to', 'teach', 'people', 'more.'], ["We're", 'married.'], ['Hey,', 'Tom,', 'can', 'you,', "don't", 'you?'], ['I', 'owe', 'what', 'I', 'am', 'today', 'to', 'my', 'father.'], ['Tom', 'has', 'a', 'lot', 'of', 'cookies.'], ['He', 'has', 'decided', 'to', 'be', 'exhausted.'], ['I', 'wish', 'I', 'had', 'more', 'time', 'with', 'my', 'new', 'time.'], ['The', 'book', 'you', 'know,', 'that', 'you', 'were', 'very', 'interesting.'], ['Is', 'it', 'the', 'worst', 'you', 'ever', 'had?'], ['Tom', 'said', 'that', 'Mary', 'was', 'innocent.'], ['Can', 'they', 'see', 'us?'], ['I', 'have', 'to', 'be', 'back', 'home', 'by', 'seven.'], ['He', "didn't", 'like', 'kids.'], ['I', 'was', 'walking', 'for', 'the', 'bicycle', 'he', 'kept', 'the', 'bicycle', 'in', 'the', 'others.'], ['They', 'met', 'three', 'months', 'ago.'], ['Do', 'you', 'all', 'ask', 'my', 'questions', 'now?'], ['She', 'told', 'him', 'that', 'she', 'loved', 'him.'], ['Be', 'hard', 'when', 'you', 'grow', 'up', 'with', 'your', 'hat.'], ['She', 'was', 'unable', 'to', 'talk', 'to', 'him.'], ['He', "doesn't", 'watch', 'TV', 'at', 'all.'], ['Take', 'it', 'on.'], ['You', 'should', 'have', 'seen', 'me.'], ['She', 'is', 'out', 'of', 'the', 'subject.'], ['Is', 'it', 'OK', 'to', 'work', 'this', 'bicycle', 'too', 'late?'], ['I', 'wish', 'you', 'had', 'told', 'me', 'a', 'little', 'earlier.'], ['Tom', 'put', 'the', 'envelope', 'on', 'the', 'table.'], ['She', 'became', 'more', 'but', 'but', 'she', 'is', 'not', 'married.'], ['She', 'earns', 'more', 'than', 'she', 'spends.'], ['She', 'said', 'something', 'to', 'me.'], ['I', 'think', 'she', 'is', 'sick.'], ['Please', 'show', 'up.'], ["It's", 'impossible.'], ['We', 'need', 'to', 'get', 'the', 'ability', 'to', 'get', 'the', 'head', 'of', 'the', 'river?'], ['We', 'apologize', 'for', 'them.'], ['I', 'take', 'a', 'shower', 'every', 'morning.'], ["That's", 'exactly', 'this.'], ['He', 'was', 'being', 'as', 'fast', 'as', 'he', 'was', 'as', 'a', 'picnic', 'and', 'as', 'he', 'used', 'to', 'be.'], ['Take', 'up', 'on.'], ['Do', 'you', 'want', 'to', 'leave', 'a', 'message?'], ['Tell', 'Tom', 'what', 'you', 'have', 'to', 'do', 'is', 'do.'], ['My', 'answer', 'is', 'no.'], ['Is', 'there', 'a', 'place', 'visit', 'you', 'visit', 'him?'], ['How', 'do', 'you', 'know', 'I', "don't", 'remember?'], ['I', 'was', 'really', 'anxious.'], ["That's", 'probably', 'just', 'my', 'imagination.'], ['Eat', 'your', 'health', 'perfectly.'], ['You', 'did', 'something', 'stupid.'], ['Who', 'did', 'you', 'vote', 'for', 'the', 'exam?'], ['It', 'was', 'so', 'good.'], ['Why', "don't", 'you', 'just', 'take', 'any', 'student', 'council?'], ['I', 'still', 'have', 'to', 'tell', 'the', 'truth.'], ['If', 'it', 'will', 'go', 'back', 'to', 'my', 'mind', 'to', 'finish', 'this', 'on.'], ["Where's", 'the', 'money?'], ['You', 'should', 'think', 'about', 'it.'], ['You', 'look', 'disappointed.'], ['The', 'class', 'was', 'all', 'evening.'], ['Are', 'you', 'going', 'on?'], ['Tom', 'won', 'someone.'], ["You've", 'used', 'to', 'eat', 'Japanese', 'food.'], ['Does', 'your', 'mother', 'know', 'about', 'this?'], ['Do', 'you', 'see', 'the', 'time', 'where', 'we', 'saw', 'us?'], ['You', "don't", 'have', 'the', 'cops.'], ['They', 'knew', 'exactly', 'what', 'they', 'were', 'doing.'], ['Tell', 'me', 'that', "I'm", 'not', 'dreaming.'], ['What', 'can', 'I', 'do', 'for', 'you?'], ["I'm", 'looking', 'for', 'a', 'place', 'to', 'live.'], ["I'm", 'not', 'sure', 'whether', 'he', 'is', 'a', 'native', 'speaker.'], ['I', 'heard', 'a', 'lot.'], ['Will', 'it', 'rain', 'this', 'afternoon?'], ['It', 'rained', 'all', 'the', 'whole', 'day.'], ['How', 'many', 'years', 'did', 'he', 'last', 'saw', 'me?'], ['Her', 'basket', 'was', 'found', 'out', 'of', 'breath.'], ['Please', "don't", 'let', 'me', 'all', 'here.'], ['She', 'is', 'my', 'first', 'first', 'step.'], ['You', 'gave', 'the', 'show', 'was', 'a', 'example.'], ['Tom', 'lives', 'in', 'the', 'middle', 'of', 'nowhere.'], ['I', "don't", 'care', 'about', 'your', 'past.'], ["I've", 'never', 'heard', 'of', 'it.'], ["We'll", 'stay', 'along', 'with', 'the', 'weather.'], ['Do', 'you', 'know', 'a', 'better', 'way', 'to', 'do', 'this?'], ['The', 'room', 'is', 'the', 'room', 'and', 'the', 'room.'], ['He', 'was', 'alone', 'in', 'the', 'room.'], ['I', "don't", 'want', 'to', 'work', 'at', 'night.'], ['He', 'left', 'the', 'box', 'unprotected.'], ['The', 'prices', 'have', 'lunch.'], ['Tom', "doesn't", 'want', 'to', 'talk', 'to', 'you', 'now.'], ['I', 'thought', 'I', 'was', 'looking', 'for', 'me.'], ['Would', 'you', 'like', 'another', 'little', 'coffee?'], ["You're", 'clever.'], ['The', 'bus', 'was', 'quickly', 'late.'], ['Tom', 'won', 'a', 'hundred', 'trip', 'to', 'Boston.'], ['I', 'do', 'not', 'do', 'this', 'anymore.'], ['Stop', 'showing', 'off!'], ['I', "don't", 'see', 'how', 'that', 'it', 'might', 'be', 'possible.'], ['The', 'engine', "doesn't", 'make', 'one.'], ['She', 'is', 'ashamed', 'of', 'what', 'she', 'did.'], ['He', 'had', 'hurt', 'his', 'feelings.'], ['I', 'am', 'now', 'waiting', 'for', 'the', 'week.'], ['I', "hadn't", 'really', 'wanted', 'to', 'hurt', 'me.'], ['They', 'were', 'all', 'hysterical.'], ["You're", 'skinny.'], ['Why', 'did', 'you', 'buy', 'this', 'guy', 'that', 'guy', 'you', 'buy', 'it?'], ['May', 'I', 'borrow', 'your', 'shoes.'], ['I', 'need', 'to', 'write', 'your', 'number', 'and', 'sent', 'you.'], ['Is', 'there', 'a', 'restaurant', 'in', 'this', 'restaurant?'], ['Tom', 'went', 'to', 'the', 'hotel.'], ['Tom', 'will', 'be', 'here', 'every', 'day.'], ['Some', 'people', 'live', 'near', 'the', 'beach.'], ['Everybody', 'hates', 'you.'], ['Do', 'you', 'really', 'want', 'to', 'sell', 'that', 'kind', 'of', 'life?'], ["That's", 'probably', 'a', 'good', 'idea.'], ['Can', 'you', 'wake', 'me', 'up', 'at', 'seven', 'tomorrow', 'morning?'], ['She', 'married', 'a', 'musician.'], ['Will', 'you', 'give', 'your', 'grandfather?'], ['No', 'one', 'tried', 'to', 'comfort', 'her.'], ["He's", 'still', 'upset.'], ['Everyone', 'waited.'], ['Tell', 'me', 'where', 'he', 'should', 'go.'], ['He', 'is', 'used', 'to', 'get', 'used', 'to', 'like', 'you.'], ['I', 'have', 'a', 'few', 'percent', 'of', 'the', 'evidence.'], ['Everyone', 'is', 'back.'], ["Don't", 'touch', 'it.'], ['Can', 'you', 'tell', 'us', 'what', 'Tom', 'did?'], ['The', 'roads', 'are', 'almost', 'over.'], ['I', 'promise', 'you', "I'll", 'never', 'give', 'up.'], ['She', 'advised', 'him', 'to', 'stay', 'at', 'home.'], ['You', "don't", 'have', 'to', 'talk', 'about', 'it', 'if', 'you', "don't", 'want', 'to.'], ["Where's", 'the', 'nearest', 'gas', 'station?'], ['Tom', 'was', 'aggressive.'], ['He', 'confessed', 'his', 'guilt.'], ['Could', 'you', 'understand', 'this', 'sentence', 'is', 'not', 'important.'], ['Is', 'anyone', 'hurt?'], ['I', "don't", 'think', "it's", 'true.'], ['Have', 'you', 'been', 'told', 'the', 'meeting', 'where', 'I', 'be?'], ['The', 'telephone', 'rang', 'a', 'few', 'minutes', 'later.'], ['She', 'made', 'the', 'earth', 'that', 'the', 'earth', 'is', 'determined', 'to', 'win', 'the', 'Christmas', 'game', 'of', 'stone.'], ['Tom', 'is', 'the', 'one', 'to', 'you,', "isn't", 'he?'], ['I', "can't", 'find', 'it.'], ['The', 'storm', 'planted', 'a', 'tree.'], ['My', 'aunt', 'gave', 'me', 'a', 'word', 'for', 'me.'], ['I', "didn't", 'know', 'anyone', 'was', 'there.'], ['Clerks', 'with', 'their', 'jobs', "don't", 'fit', 'in', 'their', 'jobs', 'by', 'their', 'long.'], ['Are', 'you', 'sure', 'you', "don't", 'want', 'one?'], ['Never', 'name', 'his', 'name.'], ['He', 'seems', 'to', 'know', 'his', "daughter's", 'to', 'know.'], ['Who', 'do', 'you', 'think', "there's", 'such', 'a', 'thing?'], ['I', 'know', 'what', 'you', 'do.'], ['Tell', 'me', 'everything.'], ['Come', 'along', 'all', 'the', 'time.'], ['Can', 'they', 'count', 'on', 'your', 'help?'], ['Promise', 'me', 'not', 'to', 'believe', 'it.'], ['Tom', 'is', 'an', 'astronaut.'], ['We', 'hope', 'to', 'meet', 'you', 'again.'], ['Your', 'eggs', 'are', 'coming.'], ["Don't", 'touch', 'this', 'down.'], ['It', 'was', 'really', 'difficult.'], ['Have', 'you', 'already', 'finished?'], ['I', 'went,', 'too.'], ['It', 'was', 'impossible', 'for', 'her', 'to', 'get', 'in.'], ['Please', 'be', 'careful.'], ['Is', 'it', 'OK', 'to', 'sleep', 'for', 'you?'], ['I', 'have', 'to', 'wait.'], ['Take', 'it', 'on.'], ['I', 'said', 'I', "wasn't", 'alone', 'alone?'], ['Come', 'as', 'fast', 'as', 'possible.'], ['I', 'think', "it's", 'time', 'for', 'her', 'to', 'help', 'her.'], ['He', 'is', 'the', 'beach', 'that', 'the', 'cat', 'was', 'knocked', 'at', 'the', 'table.'], ['I', 'just', 'had', 'breakfast', 'with', 'Tom.'], ["You're", 'on', 'my', 'way.'], ['Her', 'wish', 'was', 'to', 'the', 'hotel', 'to', 'the', 'United', 'States.'], ["I've", 'always', 'loved', 'you', 'as', 'a', 'nice', 'guy.'], ['The', 'cat', 'caught', 'a', 'mouse.'], ['We', 'just', 'want', 'to', 'hear', 'a', 'watch.'], ["I'm", 'kind', 'of', 'cute.'], ['This', 'dinner', 'is', 'in', 'public.'], ['The', 'cell', 'battery', 'on', 'my', 'leg.'], ['What', 'is', 'this?'], ['Smoking', 'is', 'it', 'that', 'our', 'group.'], ['We', 'used', 'to', 'be', 'right.'], ['I', 'returned', 'my', 'day', 'yesterday.'], ["Don't", 'take', 'it', 'personally.'], ['His', 'parents', 'were', 'killed', 'with', 'his', 'success.'], ['Tom', 'is', 'the', 'one', 'who', 'is', 'the', 'one', 'who', 'is', 'the', 'one', 'who', 'is', 'to', 'like', 'the', 'dog.'], ['It', 'could', 'be', 'covered', 'with', 'a', 'loud', 'ring.'], ['I', 'think', 'my', 'best', 'is', 'better', 'than', 'yours.'], ["I'm", 'not', 'your', 'husband', 'anymore.'], ['Who', 'knows', 'what', 'he', 'will', 'be?'], ["Don't", 'forget', 'to', 'pay', 'the', 'phone', 'bill.'], ['My', 'uncle', 'bought', 'a', 'gift.'], ['Tom', 'became', 'famous.'], ['Few', 'people', 'are', 'running', 'on', 'such', 'a', 'way.'], ['"Will', 'he', 'grows', 'up', 'the', 'fact', 'that', 'he', 'sings.'], ['I', 'wanted', 'to', 'tell', 'you', 'that.'], ["It's", 'up', 'to', 'you', 'to', 'decide', 'what', 'to', 'do.'], ['Our', 'country', 'is', 'in', 'this', 'country', '150', 'years', 'ago.'], ['He', 'is', 'no', 'one', 'of', 'an', 'artist.'], ['May', 'I', 'embarrass', 'anything?'], ['I', 'have', 'cash.'], ["That's", 'my', 'new', 'car.'], ['In', 'all', 'of', 'those', 'people', 'went', 'to', 'all', 'my', 'day.'], ['What', 'are', 'the', 'changing', 'room.'], ["That's", 'what', 'brought', 'me', 'in', 'this', 'area.'], ['There', 'were', 'hundreds', 'of', 'people', 'there.'], ['I', 'know', 'what', 'it', 'is.'], ['The', 'girl', 'I', 'feel', 'lost.'], ['Read', 'after', 'me.'], ['I', "don't", 'have', 'a', 'race', 'time', 'yet.'], ['How', 'do', 'you', 'know', 'that', "I'm", 'not', 'the', 'one', 'to', 'do', 'this?'], ['I', 'went', 'to', 'see', 'a', 'movie', 'today.'], ['That', 'boy', 'sound', 'a', 'boy', 'from', 'you.'], ['I', 'speak', 'to', 'everyone.'], ['That', 'sounds', 'weird?', "isn't", 'it?'], ['Who', 'sent', 'you?'], ['I', 'have', 'black', 'hair.'], ['You', 'were', 'here', "weren't", 'one', 'here,', "didn't", 'you?'], ['One', 'without', 'water', 'is', 'that', 'only', 'one', 'without', 'water.'], ["I'll", 'never', 'give', 'us', 'here.'], ['She', 'hit', 'him', 'with', 'a', 'hammer.'], ['You', "should've", 'worked', 'harder.'], ["I'll", 'keep', 'it', 'out.'], ['Summer', 'is', 'almost', 'finished.'], ['Our', 'house', 'faces', 'at', 'the', 'beach.'], ['Tom', "didn't", 'say', 'what', 'he', 'said', 'said', 'he', 'said.'], ['I', "didn't", 'realize', 'you', 'were', 'awake.'], ['I', 'find', 'this', 'very', 'amusing.'], ["It's", 'kind', 'of', 'boring.'], ['Tom', 'was', 'impatient', 'before', 'he', 'was', 'killed.'], ['He', 'has', 'to', 'do', 'my', 'homework.'], ['I', "don't", 'know', 'if', 'he', 'will', 'go', 'there', 'by', 'car.'], ['Do', 'you', 'play', 'any', 'instruments?'], ['I', 'informed', 'her', 'of', 'his', 'arrival.'], ['Most', 'American', 'Japanese', 'are', 'suitable', 'workers.'], ["We're", 'looking', 'for', 'you', 'to', 'keep', 'you', 'waiting.'], ['Is', 'it', 'enough', 'for', 'Tom?'], ['I', 'know', "you're", 'busy,', 'but', 'can', 'I', 'have', 'a', 'good', 'time', 'with', 'you?'], ["It's", 'not', 'going', 'to', 'wake', 'me', 'up.'], ['She', 'nodded', 'to', 'her', 'head', 'in', 'oil.'], ['My', 'brother', 'and', 'I', 'are', 'very', 'nice', 'with', 'me.'], ['We', 'ran', 'away', 'with', 'Tom.'], ['You', 'drive', 'a', 'red', 'wire.'], ['You', 'can', 'do', 'that', 'now.'], ['Would', 'it', 'be', 'a', 'meeting', 'if', 'week', 'would', 'be', 'on', 'the', 'last', 'year.'], ["Everybody's", 'a', 'winner.'], ['I', 'think', 'we', 'can', 'manage', 'that.'], ["You're", 'not', 'very', 'beautiful.'], ['You', "can't", 'just', 'quit.'], ['This', 'is', 'the', 'best', 'restaurant', 'as', 'a', 'restaurant', 'of', 'the', 'neighborhood.'], ["That's", 'just', 'wrong.'], ['I', 'must', 'be', 'prepared.'], ['This', 'tastes', 'good!'], ['I', 'am', 'not', 'about', 'what', 'it', 'was', 'more', 'yesterday.'], ['Please', 'sit', 'down.'], ['His', 'family', 'is', 'in', 'the', 'south.'], ['Where', 'are', 'the', 'Tom?'], ['He', 'is', 'unable', 'to', 'keep', 'up', 'with', 'it.'], ['The', 'Middle', 'felt', 'having', 'had', 'to', 'cut', 'the', 'cold.'], ['He', 'said', 'he', 'will', 'come', 'tomorrow.'], ['Is', 'there', 'one', 'of', 'your', 'friends?'], ['I', 'think', 'you', 'should', 'resign.'], ['Money', "won't", 'stop', 'nothing.'], ['I', 'forgot', 'how', 'to', 'park', 'the', 'car.'], ['We', 'had', 'more', 'snow', 'snow', 'this', 'winter.'], ['Her', 'car', 'broke', 'down', 'on', 'the', 'way.'], ["Can't", 'you', 'see', "I'm", 'busy?'], ['I', 'was', 'shaken.'], ['I', 'have', 'another', 'plan.'], ['Tom', 'used', 'to', 'meet', 'his', 'son.'], ['Maybe', 'I', 'should', 'be', 'ashamed.'], ['This', 'is', 'a', 'big', 'one.'], ['Sleep', 'needs', 'to', 'stop', 'that.'], ['Is', 'your', 'mother', 'at', 'home?'], ['Tom', "isn't", 'the', 'only', 'one', 'of', 'the', 'way', 'it', 'is.'], ['We', 'played', 'tennis', 'yesterday.'], ['I', 'just', 'want', 'to', 'know', 'that', 'I', 'am', 'not', 'to', 'you', 'at', 'that', 'time.'], ['No', 'one', 'was', 'in', 'the', 'park.'], ['I', 'talked', 'all', 'my', 'all', 'the', 'whole', 'day.'], ['Have', 'you', 'brought', 'a', 'ticket?'], ['I', 'feel', 'like', 'stupid.'], ['You', "can't", 'know', 'what', 'you', 'can', 'be', 'lucky.'], ['He', 'looks', 'well.'], ["She's", 'two', 'years', 'older', 'than', 'you', 'are.'], ['I', 'had', 'to', 'get', 'something', 'to', 'the', 'car.'], ["I'll", 'do', 'anything', 'I', 'can', 'help', 'you.'], ['Are', 'you', 'going', 'to', 'join', 'me', 'for', 'the', 'hook.'], ["Don't", 'let', 'him', 'go', 'without', 'saying', 'goodbye.'], ["Tom's", 'parents', 'are', 'teachers.'], ['This', 'makes', 'me', 'fat.'], ['I', 'want', 'to', 'cook', 'for', 'you.'], ["There's", 'nothing', 'not', 'what', 'they', 'seem.'], ['The', 'United', 'industry', 'is', 'a', 'rerun.'], ['I', 'guess', 'I', 'just', 'love', 'people', 'just', 'happy.'], ['Why', 'are', 'you', 'so', 'insecure?'], ['He', 'threw', 'a', 'glance', 'at', 'her.'], ['Thank', 'you', 'all', 'right.'], ['She', 'asked', 'me', 'everything', 'I', 'wanted', 'to', 'do.'], ["We'll", 'stop', 'that.'], ['Tom', 'asked', 'us', 'our', 'help.'], ['Would', 'you', 'please', 'tell', 'me', 'why', 'you', 'are', 'late?'], ['You', "can't", 'have', 'two.'], ['How', 'could', 'you', 'never', 'go', 'out', 'of', 'this', 'suit', 'case?'], ['How', 'often', 'do', 'you', 'listen', 'to', 'the', 'most?'], ["That's", 'coming.'], ['How', 'much', 'is', 'it', 'up.'], ['She', 'gave', 'him', 'up.'], ['Take', 'it', 'on.'], ['He', 'has', 'a', 'hard', 'of', 'pizza.'], ['It', 'is', 'five', 'years', 'than', 'a', 'great', 'time', 'in', 'bed', 'for', 'five', 'years.'], ['I', 'hope', 'you', 'understand', 'the', 'point.'], ['Were', 'you', 'excited?'], ['You', 'might', 'have', 'a', 'pictures', 'of', 'this.'], ['By', 'the', 'way,', 'how', 'much', 'were', 'you', 'from?'], ['He', "doesn't", 'know', 'how', 'much', 'people', 'but', 'it', 'takes', 'care', 'of', 'the', 'time', 'it', 'is.'], ["You're", 'a', 'little', 'overweight.'], ['I', 'want', 'you', 'to', 'read', 'this', 'book.'], ['Everyone', 'is', 'going', 'on.'], ['Put', 'the', 'desk', 'against', 'the', 'wall.'], ['I', 'can', 'walk', 'to', 'school', 'ten', 'minutes.'], ['I', 'made', 'you', 'a', 'sandwich.'], ['We', 'will', 'hurry.'], ['We', 'gave', 'him', 'a', 'few', 'minutes?'], ['I', "don't", 'know', 'your', 'brother.'], ['You', "don't", 'have', 'to', 'help', 'yourself', 'for', 'that.'], ['Thanks', 'to', 'my', 'place,', 'I', 'lost', 'my', 'homework.'], ['I', 'know', 'that', 'Tom', 'is', 'a', 'great', 'guy.'], ['He', 'arrived', 'here', 'last', 'night.'], ['They', 'live', 'in', 'tents.'], ["Don't", 'you', 'remember', 'my', 'name?'], ["How's", 'your', 'mother?'], ['I', "don't", 'want', 'to', 'make', 'you', 'mind', 'if', 'I', "don't", 'want', 'me', 'to.'], ['I', 'was', 'afraid', 'to', 'school.'], ['I', 'think', "I've", 'seen', 'you', 'enough.'], ['I', 'played', 'the', 'piano', 'for', 'hours.'], ['You', 'have', 'to', 'tell', 'me.'], ['He', 'has', 'enough', 'money', 'to', 'buy', 'some', 'Japanese', 'business.'], ["I'm", 'a', 'lawyer.'], ['I', 'knew', 'we', 'were', 'going', 'to', 'lose.'], ["You'd", 'better', 'take', 'a', 'few', 'more', 'of', 'the', 'doctor.'], ['Where', 'are', 'my', 'slippers?'], ['Tom', 'is', 'the', 'right', 'way', 'on', 'the', 'job.'], ['Did', 'you', 'enjoy', "Tom's", 'last', 'party?'], ['The', 'fire', 'was', 'as', 'if', 'he', 'ran', 'out', 'of', 'breath.'], ['You', 'did', 'a', 'great', 'job.'], ["Don't", 'let', 'him', 'do', 'it.'], ['Many', 'students', 'have', 'to', 'do', 'that', 'book.'], ['That', 'boy', 'is', 'his', 'brother.'], ['I', "don't", 'think', "it's", 'a', 'good', 'idea.'], ['This', 'child', 'is', 'not', 'in', 'our', 'own', 'business.'], ['The', 'town', 'that', 'Tom', 'used', 'to', 'be', 'so', 'walking', 'as', 'a', 'rock.'], ['Have', 'you', 'read', 'this', 'book', 'yet?'], ['Thanks', 'for', 'the', 'opportunity.'], ['You', 'look', 'a', 'cop.'], ["You'll", 'find', 'it', 'with', 'you.'], ['Do', 'you', 'want', 'another', 'one', 'of', 'these?'], ['When', 'I', 'have', 'a', "driver's", 'throat', 'but', "I've", 'already', 'paid', 'to', 'get', 'rid', 'of', 'the', 'sand.'], ['He', 'is', 'constantly', 'trying', 'to', 'climb', 'the', 'letters.'], ['The', 'rain', 'lasted', 'three', 'days.'], ['I', 'hope', "you'll", 'make', 'sure', "you'll", 'like', 'it.'], ['Tom', 'had', 'these', 'tickets', 'these', 'days.'], ['My', 'dad', 'is', 'fifty', 'years', 'old.'], ['Can', 'you', 'help', 'me', 'on', 'this', 'one?'], ['She', 'made', 'her', 'permission', 'lost', 'she', 'lost', 'me.'], ['Every', 'time', 'I', 'see', 'see', 'him,', 'I', 'see', 'the', 'fence', 'and', 'see', 'me.'], ['We', 'were', 'being', 'lifted', 'off.'], ['Can', 'you', 'help', 'me', 'look', 'up', 'to', 'the', 'garage?'], ['Father', 'bought', 'the', 'book', 'for', 'me.'], ['He', 'gave', 'a', 'letter', 'on', 'the', 'letter.'], ['I', 'trusted', 'you.'], ['Is', 'that', 'what', 'you', 'say?'], ['Have', 'you', 'ever', 'spoken', 'to', 'Tom', 'in', 'French?'], ['I', 'have', 'a', 'weekend', 'tomorrow', 'night.'], ['Which', 'one', 'of', 'those', 'is', 'yours?'], ['She', 'is', 'my', 'classmate.'], ["It's", 'very', 'difficult', 'to', 'understand', 'himself', 'very', 'hungry.'], ['This', 'product', 'is', 'pregnant.'], ['Where', 'do', 'you', 'come', 'from?'], ['Nearly', 'a', 'gunshot', 'idea', 'were', 'teenagers.'], ['We', 'were', 'very', 'tired.'], ['All', 'the', 'members', 'voted', 'in', 'the', 'storm.'], ['All', 'of', 'us', 'want', 'to', 'live', 'in', 'the', 'election.'], ['They', 'were', 'both', 'interested', 'in', 'Boston.'], ["We'll", 'decide', 'later.'], ['I', 'thought', 'you', 'were', 'gone.'], ["It's", 'quite', 'true.'], ['I', "can't", 'remember', 'her', 'at', 'her', 'explanation.'], ['I', "don't", 'want', 'to', 'go.'], ['It', 'is', 'hardly', 'worth', 'the', 'guitar.'], ['He', 'studied', 'economics', 'history.'], ['You', 'all', 'have', 'to', 'relax.'], ['She', 'was', 'beautiful.'], ['The', 'storm', 'is', 'out', 'of', 'order.'], ['Would', 'you', 'like', 'to', 'tell', 'us?'], ['Would', 'that', 'really', 'make', 'you', 'happy?'], ['I', "don't", 'think', 'Tom', "won't", 'tell', 'me.'], ['Why', "don't", 'you', 'keep', 'it?'], ["They're", 'coming', 'to', 'us.'], ['I', 'have', 'a', 'few', 'words', "I'll", 'be', 'able', 'to', 'think.'], ['I', "can't", 'find', 'the', 'rules.'], ['She', 'asked', 'me', 'what', 'I', 'was', 'asked', 'but', 'I', 'was', 'needed.'], ["It's", 'not', 'your', 'knife.'], ['Who', 'are', 'you', 'to', 'tell', 'us', 'we', "can't", 'go?'], ['Do', 'you', 'know', 'my', 'name?'], ['They', 'want', 'to', 'know', "what's", 'going', 'on.'], ['She', 'advised', 'advised', 'to', 'drink', 'more', 'milk.'], ['I', 'am', 'not', 'going', 'to', 'the', 'mood', 'to', 'go', 'out.'], ['The', 'investigation', 'was', 'covered', 'with', 'the', 'ball.'], ["Here's", 'your', 'milk.'], ["You're", 'the', 'one.'], ["It's", 'more', 'difficult', 'than', 'no', 'sense.'], ['Take', 'what', 'you', 'want.'], ['She', 'got', 'a', 'few', 'minutes', 'left', 'after', 'midnight.'], ['Are', 'you', 'free', 'for', 'me?'], ['When', 'do', 'you', 'want?'], ['They', "won't", 'mind', 'if', 'they', 'buy', 'anything.'], ["Don't", 'worry.', 'You', 'can', 'remember.'], ['What', 'do', 'you', 'want?'], ['They', 'arrived', 'there', 'before', 'they', 'arrived.'], ['You', "can't", 'change', 'my', 'mind.'], ['Do', 'you', 'want', 'me', 'to', 'help', 'you,', 'too.'], ['I', 'knew', 'I', 'wanted', 'to', 'stay', 'at', 'home.'], ["Don't", 'forget', 'that.'], ['I', 'am', 'nervous', 'and', 'excited.'], ['You', "shouldn't", 'have', 'a', 'plastic', 'officer.'], ['Where', 'can', 'I', 'buy', 'a', 'ticket?'], ['I', 'got', 'up', 'and', 'got', 'a', 'lot', 'of', 'stamps.'], ['Why', 'are', 'you', 'waiting', 'for', 'Christmas?'], ['If', 'you', "don't", 'want', 'to', 'understand', 'why', 'they', 'want', 'to', 'kill', 'you.'], ['She', 'was', 'unconscious', 'for', 'three', 'days.'], ['Where', 'do', 'you', 'know', 'my', 'name?'], ['He', 'did', 'a', 'good', 'job.'], ["I'm", 'proud', 'of', 'you', 'all.'], ['She', 'was', 'wearing', 'a', 'hat.'], ['The', 'kitchen', 'spread', 'on', 'the', 'water.'], ["It's", 'our', 'here', 'here.'], ["He's", 'late.'], ['Tom', 'drank', 'a', 'glass', 'of', 'wine.'], ['We', 'heard', 'something', 'in', 'the', 'next', 'room.'], ['Tom', 'is', 'going', 'to', 'beat', 'Mary.'], ['I', "don't", 'understand', 'your', 'point', 'of', 'view.'], ['Tom', 'is', 'watching', 'TV', 'TV', 'out.'], ['Tom', 'told', 'me', 'he', 'was', 'going', 'away', 'from', 'his', 'house.'], ['She', 'is', 'a', 'dancer.'], ["I've", 'made', 'you', 'what', 'your', "father's", 'house.'], ['We', 'are', 'all', 'the', 'same.'], ["I'm", 'not', 'used', 'to', 'this', 'rock.'], ['How', 'can', 'you', 'be', 'so', 'callous?'], ['He', 'is', 'rich', 'for', 'his', 'friends.'], ['Do', 'you', 'have', 'to', 'be', 'there?'], ['Tom', 'spends', 'a', 'lot', 'of', 'paper', 'to', 'write', 'hard', 'when', 'he', 'grows', 'a', 'lot.'], ['Are', 'there', 'any', 'risks?'], ['I', "don't", 'like', 'the', 'tie', 'you', 'tie', 'me.'], ['I', "don't", 'care', 'about', 'the', 'money.'], ['The', 'important', 'child', 'is', 'not', 'going', 'to', 'win.'], ['We', 'all', 'agree', 'with', 'you.'], ['It', 'seems', 'that', 'he', 'is', 'having', 'something', 'in', 'this', 'part', 'of', 'the', 'risk.'], ['I', 'am', 'wearing', 'that', 'big', 'guitar.'], ['I', 'thought', 'you', 'did', 'fairly', 'well.'], ['I', 'know', 'my', 'parents', 'loved', 'me.'], ['That', 'plane', 'is', 'high.'], ['Tom', 'does', 'the', 'same', 'mistake', 'as', 'Tom', 'did.'], ['She', 'decided', 'not', 'to', 'go.'], ['He', 'has', 'a', 'video.'], ['I', "don't", 'intend', 'to', 'fulfill', 'for', 'health', 'for', 'people.'], ["They're", 'all', 'waiting.'], ['He', 'said', 'that', 'he', 'was', 'ten', 'years', 'in', 'ten', 'years.'], ["I'm", 'one', 'of', 'you.'], ['Experts', 'eat', 'fruit', 'with', 'a', 'hybrid.'], ['It', "can't", 'come', 'from', 'the', 'house.'], ['I', 'have', 'a', 'proposal.'], ['I', 'love', 'happy', 'endings.'], ['Is', 'it', 'true', 'Tom', 'can', 'teach', 'Tom', 'any', 'way?'], ['You', "didn't", 'let', 'me', 'finish.'], ['Children', 'are', 'difficult', 'to', 'like', 'these', 'days.'], ['Tom', 'advised', 'Mary', 'not', 'to', 'put', 'up', 'with', 'the', 'way', 'she', 'lives', 'at', 'all.'], ['I', 'work', 'for', 'three', 'years.'], ["I'll", 'never', 'leave', 'you', 'alone', 'again.'], ["I've", 'never', 'been', 'still', 'in', 'love.'], ['I', "didn't", 'know', 'Tom', 'can', 'do', 'that.'], ['Tom', 'will', 'be', 'famous.'], ['The', 'cases', 'of', 'what', 'to', 'understand', 'what', 'is', 'not', 'to', 'study.'], ['The', 'earth', 'will', 'be', 'filled', 'from', 'the', 'sand.'], ['I', 'want', 'you', 'to', 'be', 'my', 'boss.'], ['May', 'I', 'have', 'a', 'restaurant', 'for', 'dinner?'], ['I', 'had', 'lunch', 'with', 'Tom.'], ['I', 'think', "it's", 'all', 'wrong.'], ['Are', 'you', 'free', 'this', 'weekend?'], ['This', 'table', 'is', 'a', 'spy.'], ['She', 'has', 'met', 'him.'], ['My', 'seat', 'is', 'a', 'full', 'line', 'and', 'as', 'a', 'black', 'singer.'], ['Did', 'you', 'go', 'anywhere', 'vacation?'], ['Please', 'show', 'me', 'how', 'to', 'get', 'there.'], ['Without', 'your', 'help,', 'we', "wouldn't", 'have', 'our', 'plan.'], ['A', 'pair', 'of', 'glasses', 'of', 'water.'], ['He', 'will', 'keep', 'your', 'little', 'working', 'in', 'later?'], ['Food', 'would', 'not', 'be', 'able', 'to', 'eat', 'without', 'food.'], ["There's", 'no', 'one', 'for', 'one', 'person.'], ['I', "couldn't", 'walk.'], ['I', 'used', 'to', 'use', 'that.'], ['I', 'think', 'you', 'did', 'enough.'], ['Will', 'you', 'know', 'me', 'when', 'he', 'will', 'come', 'back?'], ["They're", 'broke.'], ['I', 'had', 'a', 'chance', 'to', 'work', 'together', 'on', 'the', 'mall.'], ['I', 'never', 'thought', "I'd", 'see', 'your', 'face.'], ['I', 'tried', 'to', 'tell', 'you.'], ['I', 'love', 'to', 'do', 'the', 'others.'], ["I'm", 'going', 'to', 'tell', 'what', 'we', 'have', 'to', 'say', 'about', 'it.'], ["Tomorrow's", 'it', 'is', 'beautiful.'], ['Tell', 'me', 'why', 'you', 'think', 'so.'], ['When', 'will', 'his', 'new', 'novel', 'be', 'published?'], ['The', 'lady', 'blew', 'from', 'the', 'crime.'], ['I', 'want', 'you', 'to', 'do', 'it.'], ['They', 'come', 'out', 'of', 'the', 'town.'], ['Can', 'you', 'help', 'me', 'with', 'the', 'washing', 'up?'], ['Why', "don't", 'you', 'just', 'think', 'it', 'happened?'], ['We', 'must', 'be', 'prepared.'], ['He', 'was', 'at', 'the', 'top', 'of', 'the', 'mountain.'], ['My', 'sister', 'loves', 'children.'], ["You're", 'finding', 'the', 'job.'], ["That's", 'a', 'first', 'time', 'for', 'it.'], ['I', "don't", 'believe', 'such', 'a', 'nice', 'word', 'of', 'that.'], ["We'll", 'smoke.'], ['This', 'is', 'your', 'money.'], ['Do', 'you', 'know', 'what', "there's", 'a', 'glass', 'of', 'TV', 'in', 'the', 'building?'], ['How', 'come', 'you', "didn't", 'know', 'that?'], ['Did', 'you', 'see', 'this', 'video?'], ["It's", 'acceptable.'], ['He', 'had', 'to', 'share', 'a', 'bedroom', 'with', 'his', 'brother.'], ['Our', 'team', 'died', 'of', 'cancer.'], ['It', 'looks', 'very', 'much', 'to', 'be', 'a', 'lot.'], ['I', 'was', 'chosen', 'for', 'that.'], ['Would', 'you', 'like', 'to', 'go', 'to', 'the', 'airport?'], ['Was', 'there', 'a', 'lot', 'there?'], ["I'm", 'starting', 'to', 'feel', 'desperate.'], ['Did', 'you', 'make', 'your', 'last', 'holiday?'], ['Lincoln', 'died', 'in', 'October.'], ["I'm", 'not', 'always', 'on', 'Sundays.'], ['They', 'were', 'frustrated.'], ['We', 'used', 'to', 'have', 'a', 'huge', 'habit', 'of', 'clearing', 'the', 'crime', 'to', 'take', 'a', 'haircut?'], ['He', 'had', 'taken', 'care', 'of', 'himself.'], ['I', 'know', 'what', 'they', 'are', 'thinking.'], ['May', 'I', 'talk', 'to', 'you', 'for', 'a', 'minute?'], ['Tom', 'forgot', 'the', 'keys', 'on', 'the', 'table.'], ['They', 'were', 'in', 'front', 'of', 'the', 'last', 'one.'], ['I', 'think', 'that', 'he', 'is', 'busy', 'now.'], ['We', 'have', 'to', 'take', 'this', 'very', 'seriously.'], ['You', 'are', 'blinded', 'by', 'love.'], ['Tom', 'is', 'my', 'real', 'real', 'friend.'], ['The', 'world', "doesn't", 'bother', 'me', 'at', 'all.'], ["I'm", 'trying', 'to', 'make', 'sense.'], ["You're", 'the', 'most', 'beautiful', 'girl', "I've", 'ever', 'seen.'], ['I', 'hope', 'that', 'she', 'will', 'be', 'going.'], ['The', 'hat', 'was', 'very', 'beautiful.'], ['You', 'can', 'pay', 'in', 'front', 'of', 'your', 'time.'], ["I'm", 'not', 'sure', 'whether', 'he', 'is', 'a', 'fishing', 'or', 'such', 'a', 'child.'], ["I'm", 'doing', 'this', 'for', 'you.'], ['They', 'were', 'so', 'happy', 'together.'], ['I', 'think', "it's", "Tom's", 'safety.'], ["I'm", 'very', 'busy', 'at', 'university.'], ['Does', 'this', 'guy', 'hate', 'you?'], ['You', 'look', 'terrific.'], ['Do', 'you', 'want', 'to', 'win?'], ['He', 'arrived', 'at', 'the', 'station.'], ['Keep', 'an', 'eye', 'on', 'the', 'table.'], ['I', 'think', 'you', 'should', 'be', 'your', 'friend.'], ['Canada', 'is', 'really', 'big', 'far', 'from', 'a', 'lot', 'of', 'different', 'ago.'], ['Stop', 'screaming.'], ["I'm", 'sorry.'], ['You', 'are', 'in', 'high', 'school.'], ['Do', 'you', 'know', 'what', 'time', 'this', 'time', 'happen?'], ['I', "didn't", 'know', 'Tom', 'had', 'to', 'do', 'that', 'to', 'him.'], ['I', "can't", 'understand', 'the', 'right', 'to', 'go.'], ['Tom', 'died', 'in', 'jail.'], ["What's", 'your', 'dirty', 'number?'], ['What', 'are', 'we', 'not', 'to', 'do', 'on', 'the', 'weather.'], ['I', 'know', 'that', 'Tom', 'is', 'chubby.'], ['She', 'is', 'really', 'quiet', 'and', 'today.'], ['"Are', 'your', 'young', 'or', 'is', 'a', 'dangerous', 'day,', 'that', "he's", 'true', 'or', 'such', 'a', 'nurse.'], ["I'm", 'not', 'mad.'], ['Speak', 'closely.'], ['In', 'the', 'best', 'you', 'will', 'catch', 'the', 'job.'], ["I'm", 'at', 'your', 'disposal.'], ['Those', 'boxes', 'are', 'beautiful.'], ["It's", 'time', 'to', 'go', 'to', 'bed.'], ['The', 'apples', 'that', 'he', 'sent', 'to', 'me', 'were', 'delicious.'], ["Don't", 'deceive', 'me.'], ['I', 'tried', 'everything.'], ['All', 'you', 'have', 'to', 'do', 'is', 'to', 'do', 'your', 'best.'], ['Are', 'you', 'on', 'Facebook?'], ['How', 'could', 'we', 'not', 'win?'], ['I', 'think', "it's", 'time', 'for', 'me', 'to', 'call', 'this', 'idea.'], ['Go', 'left', 'left.'], ['I', "don't", 'know', 'it', 'again.'], ['What', 'time', 'is', 'it', 'time', 'for', 'me?'], ['The', 'balloon', 'is', 'missing.'], ['I', 'am', 'off', 'with', 'the', 'cooperate.'], ['Tom', 'says', 'he', 'found', 'out', 'of', 'paper.'], ['I', 'like', 'your', 'personality.'], ['You', 'must', 'be', 'prepared.'], ['Have', 'you', 'talked', 'about', 'the', 'world?'], ['I', "don't", 'know', 'what', 'you', 'want', 'me', 'to', 'say.'], ['Heaven', 'imagined', 'that', 'we', 'did', 'that', 'we', 'could.'], ['This', 'is', 'the', 'best', 'world.'], ['He', 'decided', 'to', 'give', 'him', 'a', 'chance', 'that', 'he', 'saw', 'him', 'instead', 'of', 'the', 'last', 'day.'], ['The', 'sign', 'is', 'empty.'], ['You', 'really', 'should', 'try', 'this', 'cake.'], ["Don't", 'you', 'want', 'anything', 'to', 'eat?'], ['The', 'toilet', 'is', 'downstairs.'], ['This', 'letter', 'is', 'for', 'you.'], ['I', 'thought', 'you', 'could', 'speak', 'French.'], ['You', "don't", 'have', 'a', 'heart.'], ['I', 'really', "don't", 'want', 'to', 'do', 'that.'], ['Perhaps', 'Tom', 'was', 'sick.'], ['It', 'will', 'be', 'different.'], ['Tom', 'said', 'he', 'thought', 'he', 'thought', 'he', 'might', 'find', 'it.'], ['What', 'time', 'did', 'you', 'go', 'to', 'school?'], ['How', 'are', 'you', 'celebrating?'], ['How', 'do', 'you', 'know', 'how', 'much', 'the', 'nearest', 'ship', 'is?'], ['My', 'boss', 'is', 'depressed', 'today.'], ['Tom', 'is', 'over.'], ['When', 'did', 'you', 'buy', 'it?'], ['Does', 'someone', 'have', 'a', 'lighter?'], ['Where', 'is', 'the', 'purpose', 'of', 'the', 'light?'], ['He', 'went', 'to', 'the', 'middle', 'of', 'the', 'night.'], ["There's", 'a', 'lot', 'of', 'people', 'to', 'do', 'so.'], ['I', "don't", 'want', 'to', 'call', 'the', 'police.'], ['How', 'many', 'of', 'this', 'is', 'doing', 'in', 'this?'], ['Everyone', 'is', 'Tom.'], ['Could', 'you', 'please', 'close', 'the', 'window?'], ['He', 'has', 'never', 'been', 'a', 'holiday.'], ['Who', 'did', 'you', 'learn', 'to', 'do', 'that?'], ['I', 'thought', 'you', 'liked', 'it.'], ['He', 'was', 'almost', 'having', 'trouble', 'all', 'present', 'all', 'of', 'their', 'day.'], ['I', 'followed', 'you.'], ['I', 'have', 'something', 'I', 'have', 'something', 'I', 'have', 'some', 'brothers.'], ["There's", 'a', 'cottage', 'on', 'the', 'shelf.'], ["You're", 'very', 'generous.'], ['I', 'think', "you'd", 'better', 'go.'], ["We're", 'hiding', 'something', 'here.'], ['Why', "don't", 'you', 'tell', 'us', 'about', 'this', 'for', 'us?'], ["I'll", 'give', 'you', 'to', 'let', 'you', 'know', 'where', 'to', 'go.'], ['I', 'have', 'to', 'go', 'to', 'the', 'bank.'], ['I', "don't", 'want', 'him', 'to', 'be', 'dreaming.'], ["I'd", 'like', 'to', 'talk', 'now.'], ['Tom', 'learned', 'to', 'go', 'skiing', 'in', 'himself.'], ["You're", 'nuts!'], ['He', 'is', 'very', 'kind', 'to', 'Tom.'], ['How', 'do', 'you', 'expect', 'that?'], ['He', 'drew', 'the', 'air', 'and', 'looked', 'at', 'him.'], ['Fishing', 'is', 'a', 'foreign', 'language', 'perfectly.'], ['My', 'house', 'is', 'on', 'the', 'sea.'], ['Tom', 'only', 'earned', 'two', 'two', 'times.'], ['It', 'was', 'a', 'time', 'how', 'long', 'time', 'in', 'New', 'Zealand'], ['I', 'have', 'a', 'friends', 'who', 'can', 'speak', 'French.'], ["There's", 'someone', "I'd", 'like', 'you', 'to', 'meet.'], ['You', 'never', 'cease', 'to', 'surprise', 'me.'], ['If', 'Tom', 'finds', 'to', 'believe', 'me,', 'I', 'told', 'you.'], ['We', 'have', 'two', 'television', 'two.'], ['Tom', 'asked', 'me', 'to', 'fulfill', 'my', 'promises.'], ['I', 'really', 'want', 'to', 'see', 'you.'], ['Everyone', 'left.'], ['I', 'thought', 'I', 'was', 'alone.'], ['A', 'slight', 'kind', 'of', 'water', 'is', 'a', 'kind', 'of', 'water', 'in', 'this', 'case.'], ['That', 'has', 'been', 'good', 'enough.'], ['The', 'desk', 'office', 'is', 'to', 'the', 'post', 'house.'], ["You've", 'ruined', 'my', 'name.'], ['Did', 'you', 'find', 'anything?'], ['She', 'grows', 'a', 'close', 'animals', 'animals'], ['Why', 'do', 'you', 'need', 'a', 'doctor?'], ["I've", 'already', 'read', "today's", 'paper.'], ['Tom', "didn't", 'mean', 'to', 'hear', 'the', 'reason.'], ['This', 'office', 'has', 'come', 'out', 'of', 'order.'], ['I', 'bought', 'a', 'little', 'more', 'expensive', 'of', 'milk.'], ['They', 'stopped', 'talking.'], ['Plastic', 'floats,', 'the', 'body', '"Yes,', 'the', 'body', 'and', 'are."'], ['Give', 'the', 'two', 'upstairs', 'on', 'a', 'edge', 'of', 'the', 'window.'], ['I', 'found', 'a', 'job.'], ['I', 'wonder', 'why', 'you', 'play', 'tennis', 'in', 'English?'], ['I', 'know', 'as', 'well', 'as', 'you', 'can.'], ['How', 'many', 'of', 'you', 'do', 'in', 'Australia?'], ['What', 'are', 'these', 'books', 'for?'], ['Tom', 'was', 'afraid.'], ['I', 'had', 'time', 'for', 'the', 'time', 'to', 'read.'], ['It', 'is', 'true', 'that', 'he', 'is', 'wrong,', 'but', 'he', 'is', 'smart.'], ['I', 'hear', 'things', 'about', 'things', 'about', 'you.'], ["It's", 'genuine.'], ['I', 'want', 'to', 'hear', 'about', 'the', 'crime', 'when', 'I', 'am.'], ['How', 'could', 'you', 'find', 'out?'], ['I', 'used', 'to', 'the', 'same', 'TV', 'as', 'I', 'used', 'to', 'you.'], ['The', 'police', 'broke', 'the', 'apple', 'of', 'his', 'resignation.'], ["You're", 'upset.'], ['I', 'have', 'hardly', 'eaten', 'food', 'since', 'I', 'had', 'eaten', 'food.'], ['Who', 'can', 'you', 'buy', 'a', 'drink?'], ['I', 'know', 'a', 'lot', 'of', 'people', 'who', 'speak', 'French.'], ['Try', 'to', 'check', 'it.'], ['She', 'had', 'the', 'point', 'to', 'see', 'the', 'hospital.'], ["It's", 'not', 'a', 'coincidence.'], ['It', 'was', 'a', 'joke.'], ['Tom', 'should', 'not', 'how', 'to', 'do', 'how', 'to', 'do', 'it.'], ["That's", 'upsetting.'], ['This', 'is', 'open', 'to', 'yours.'], ['Your', 'opinion', 'was', 'not', 'for', 'it.'], ['Tom,', 'I', 'miss', 'you.'], ['I', 'just', 'want', 'to', 'make', 'sure', "it's", 'wrong.'], ['Who', 'drank', 'the', 'TV?'], ['They', 'formed', 'a', 'team', 'of', 'those.'], ["I'll", 'leave', 'it', 'to', 'you.'], ["I'm", 'going', 'to', 'give', 'you', 'a', 'favor.'], ['I', 'need', 'to', 'have', 'some', 'calls.'], ['Tom', 'died', 'of', 'the', 'Canadian', 'somewhere.'], ['Tom', "didn't", 'have', 'any', 'fun', 'at', 'all.'], ['We', 'must', 'observe', 'the', 'rules.'], ['Check', 'these', 'these', 'days.'], ['He', 'seems', 'to', 'be', 'old', 'for', 'his', 'age.'], ['Please', 'keep', 'it', 'quickly.'], ['Play', 'them', 'a', 'lot.'], ["You'll", 'have', 'to', 'answer', 'your', 'life.'], ["You're", 'too', 'tense.'], ['Do', 'you', 'think', "it's", 'dangerous', 'to', 'wear', 'a', 'tie', 'at', 'your', 'uniform'], ['I', 'warned', 'him', 'for', 'some', 'more', 'time.'], ['I', 'have', 'a', 'lot', 'of', 'information', 'you', 'have.'], ["Don't", 'worry', 'too', 'much', 'at', 'the', 'same', 'time.'], ['How', 'many', 'years', 'did', 'he', 'last', 'saw', 'me?'], ["Don't", 'push', 'on', 'the', 'grass.'], ['You', "don't", 'have', 'to', 'hurry.'], ['Of', 'the', 'best', 'thing', 'that', 'was', 'the', 'best', 'teacher.'], ["You're", 'twice', 'as', 'strong', 'as', 'me.'], ['I', 'never', 'forgot', 'you.'], ['Paris', 'is', 'the', 'capital', 'of', 'France.'], ['Tom', "doesn't", 'like', 'me.'], ['I', 'wish', 'I', 'had', 'a', 'admit'], ['I', 'thought', 'it', 'had', 'a', 'nice', 'day,', 'so', 'many', 'people', 'could', 'not', 'get', 'a', 'chance', 'with', 'him', 'not', 'to', 'date.'], ['He', 'advised', 'me', 'to', 'put', 'up', 'on', 'his', 'notebook.'], ['It', 'may', 'not', 'as', 'well', 'as', 'he', 'is.'], ['I', 'woke', 'up', 'at', 'the', 'sunrise.'], ['I', 'hope', 'that', 'you', "don't", 'smoke.'], ['They', 'did', 'a', 'good', 'job.'], ['This', 'book', 'is', 'a', 'difficult', 'book', 'to', 'read.'], ['We', 'know', 'this', 'works.'], ['It', 'was', 'possible', 'for', 'the', 'meeting', 'soon', 'as', 'soon', 'as', 'soon', 'as', 'soon', 'come', 'by', 'plane.'], ['Nobody', 'told', 'me', 'you', 'were', 'here.'], ['We', 'knew', 'Tom', 'was', 'scared.'], ['Tom', 'waited', 'for', 'more', 'than', 'for', 'a', 'while.'], ['I', 'think', "it's", 'better.'], ['The', 'man', 'who', 'is', 'the', 'one', 'who', 'is', 'a', 'friend', 'of', 'mine.'], ['Do', 'you', 'smoke?'], ['He', 'removed', 'my', 'shirt.'], ['No', 'one', 'in', 'my', 'family', 'can', 'do', 'it.'], ['I', 'had', 'it', 'left', 'in', 'my', 'house.'], ['Did', 'you', 'see', 'what', 'Tom', 'was', 'looking', 'for.'], ['What', 'can', 'you', 'do?'], ['They', 'were', 'at', 'the', 'result.'], ["Don't", 'say', 'such', 'stupid', 'things.'], ['I', 'think', 'that', 'she', 'is', 'going', 'to', 'be', 'boring.'], ['Are', 'you', 'going', 'to', 'help?'], ['Close', 'the', 'door', 'behind', 'you.'], ['I', 'lost', 'your', 'number.'], ['Tom', 'said', 'he', 'said', 'you', 'tried', 'eating', 'eating', 'food.'], ['I', 'know', 'what', 'you', 'must', 'do', 'what', 'you', 'know', 'that.'], ['This', 'one', 'is', 'yours.'], ['The', 'cost', 'of', 'life', 'was', 'rising.'], ['I', "haven't", 'talked', 'to', 'Tom', 'about', 'that', 'yet.'], ['She', 'was', 'banished', 'from', 'the', 'building.'], ['Tell', 'me', 'of', 'my', 'wife.'], ['I', "can't", 'stand', 'the', 'cold.'], ['Do', 'you', 'think', "that'll", 'work?'], ['Do', 'you', 'have', 'a', 'copy?'], ["I'm", 'going', 'to', 'solve', 'that.'], ['He', 'suffers', 'suffers', 'from', 'a', 'disease.'], ["I'm", 'nervous.'], ['Tom', 'was', 'about', 'what', 'we', 'had', 'to', 'do.'], ['He', "doesn't", 'like', 'to', 'say', 'anything.'], ['There', 'is', 'a', 'rumor', 'on', 'the', 'rumor', 'on', 'the', 'rumor', 'is', 'impossible.'], ['We', 'are', 'best', 'friends.'], ['Where', 'are', 'your', 'measurements?'], ['Tom', 'has', 'lost.'], ['Pass', 'who', 'you', 'understand.'], ['She', 'stammers', 'when', 'she', 'was', 'nervous.'], ['After', 'we', 'walked', 'on', 'the', 'sofa', 'and', 'lay', 'on', 'the', 'walk', 'on', 'the', 'table.'], ["There's", 'something', 'I', 'have', 'to', 'do', 'it,', 'you', 'know.'], ['We', 'have', 'finished', 'lunch.'], ["I'm", 'sure', 'to', 'know', 'this.'], ['May', 'I', 'see', 'the', 'list?'], ['Is', 'your', 'mother', 'here?'], ['I', 'know', 'you', 'like', 'chocolate.'], ["I'm", 'going', 'to', 'give', 'you', 'some', 'money', 'to', 'help', 'you.'], ["I'm", 'not', 'going', 'with', 'me', 'with', 'me.'], ['The', 'reason', 'is', 'the', 'reason', 'for', 'him.'], ["I'll", 'go', 'back.'], ['No', 'matter', 'how', 'hard', 'you', 'try,', 'but', "don't", 'hesitate', 'to', 'drink', 'the', 'way', 'to', 'drink', 'this', 'cup', 'of', 'coffee.'], ['Gasoline', 'is', 'to', 'love', 'in', 'the', 'election.'], ['How', 'do', 'you', 'like', 'me', 'to', 'do', 'your', 'computer?'], ['If', 'you', 'eat', 'much,', "you'll", 'have', 'succeeded.'], ['What', 'is', 'he', 'hiding?'], ['I', "don't", 'know', 'who', 'did', 'that.'], ['The', 'moon', 'is', 'growing.'], ['I', 'just', 'got', 'here.'], ['When', 'I', 'am', 'wearing', 'my', 'eyes', 'and', 'I', 'am', 'wearing', 'a', 'headache', 'I', 'got', 'up', 'with', 'my', 'eyes', 'wearing', 'a', 'pair', 'of', 'blue', 'myself.'], ['The', 'President', 'of', 'the', 'room.'], ['I', 'know', 'you', 'feel', 'lonely.'], ['The', 'probably', 'are', 'being', 'paid', 'for', 'the', 'two', 'of', 'them', 'is', 'a', 'mystery.'], ['I', 'have', 'no', 'more', 'than', 'any', 'more', 'policy.'], ['You', "could've", 'killed', 'somebody.'], ['The', 'pain', 'has', 'been', 'busy', 'recently.'], ['I', 'am', 'a', 'strong', 'girl.'], ['She', 'insisted'], ["I'll", 'call', 'you', 'after', 'lunch.'], ['You', 'knew', 'I', 'was', 'married.'], ['This', 'pen', 'belongs', 'to', 'mine.'], ['How', 'many', 'students', 'were', 'on', 'the', 'list?'], ['I', 'suppose', 'I', 'was', 'lazy.'], ['Does', 'it', 'have', 'something', 'worth', 'you?'], ['Tom', 'might', 'be', 'delighted.'], ['All', 'of', 'the', 'kids', 'can', 'speak', 'French.'], ['What', 'did', 'Tom', 'do', 'that', 'I', 'plan', 'to', 'buy', 'the', 'picnic.'], ["That's", 'a', 'pretty', 'good', 'one.'], ['Are', 'you', 'certain?'], ['I', 'often', 'think', 'about', 'her.'], ['Do', 'I', 'have', 'a', 'boyfriend?'], ['The', 'game', 'is', 'not', 'over.'], ['Tom', 'will', 'keep', 'his', 'coat.'], ['Did', 'you', 'meet', 'him?'], ['I', 'lost', 'my', 'wife', 'last', 'year.'], ['What', 'time', 'do', 'you', 'think', 'we', 'should', 'go?'], ['Do', 'you', 'want', 'to', 'say', "you're", 'wrong?'], ['I', 'will', 'go', 'to', 'the', 'light', 'until', 'next', 'time.'], ['She', 'could', 'just', 'believe', 'it.'], ['I', 'never', 'want', 'to', 'see', 'you', 'again.'], ['There', 'were', 'no', 'furniture', 'in', 'the', 'mountains.'], ['To', 'tell', 'you,', 'I', 'think', 'about', 'you.'], ['Why', "don't", 'you', 'just', 'buy', 'a', 'new', 'one?'], ["You'll", 'miss', 'the', 'train.'], ['It', 'looks', 'like', 'we', 'have', 'a', 'wonderful', 'job.'], ['Tom', 'teaches', 'French.'], ['I', 'just', 'want', 'you', 'to', 'know', "I'm", 'sorry.'], ['Are', 'you', 'allergic', 'to', 'peanuts?'], ['We', 'got', 'separated.'], ['Please', 'give', 'it', 'to', 'my', 'mind.'], ['She', 'got', 'into', 'a', 'room.'], ['Is', 'that', 'your', 'married', 'girl', 'your', 'daughter?'], ['This', 'book', 'is', 'new.'], ['I', 'want', 'you', 'to', 'keep', 'your', 'promise.'], ['Tom', 'will', 'his', 'own', 'behavior.'], ['They', 'agreed', 'to', 'start', 'early.'], ['I', 'want', 'to', 'take', 'the', 'time', 'on', 'the', 'time', 'on', 'the', 'weather.'], ['Can', 'you', 'please', 'kill', 'that?'], ['I', 'always', 'drink', 'a', 'drink', 'before', 'he', 'left', 'bed.'], ['My', 'birthday', 'falls', 'on', 'a', 'Sunday.'], ['I', 'am', 'a', 'talented', 'teacher.'], ['You', 'gotta', 'get', 'more', 'organized.'], ["I'm", 'just', 'doing', 'this', 'for', 'your', 'own', 'good.'], ['This', 'is', 'a', 'bit', 'of', 'what', 'to', 'do', 'for', 'the', 'party.'], ['Are', 'you', 'dressed?'], ['There', "isn't", 'any', 'problem', 'with', 'that', 'problem.'], ['Please', 'bring', 'me', 'up.'], ['He', 'is', 'a', 'friendly', 'of', 'cars.'], ['Tom', 'had', 'a', 'vision.'], ['We', 'can', 'hear', 'you', 'who', 'broke', 'your', 'window.'], ['Did', 'you', 'think', 'it', 'was', 'going', 'to', 'work?'], ['The', 'sentence', 'is', 'not', 'that', 'sentence', 'of', 'us.'], ["You've", 'hurt', 'me.'], ["I'm", 'lazy.'], ['She', 'is', 'always', 'forgetting', 'to', 'smoke.'], ['Tom', 'likes', 'to', 'write.'], ['We', 'think', 'he', 'will', 'come.'], ['He', 'speaks', 'French.'], ['What', 'do', 'you', 'like', 'to', 'eat?'], ['Why', 'is', 'my', 'sister', 'so', 'sister', 'to', 'me?'], ['I', 'have', 'had', 'enough', 'of', 'you', 'and', 'groan.'], ['What', 'are', 'you', 'trying', 'to', 'kill', 'me?'], ['They', 'have', 'just', 'to', 'sleep', 'at', 'the', 'same', 'time.'], ["Don't", 'people', 'people', 'what', 'people', 'say.'], ['You', "don't", 'need', 'to', 'lose', 'hope.'], ["Didn't", 'you', 'know', 'that', 'the', 'world', 'is', 'on', 'the', 'bill?'], ["That's", 'not', 'the', 'wrong', 'point.'], ['Mary', 'is', 'a', 'very', 'attractive', 'girl.'], ['Time', 'heals', 'all', 'wounds.'], ["I'm", 'not', 'kidding.'], ['The', 'cat', 'is', 'on', 'the', 'table.'], ['I', 'heard', 'Tom', 'who', 'hear', 'Tom', 'who', 'sent', 'you.'], ["We'll", 'all', 'die', 'sooner', 'or', 'later.'], ['He', 'was', 'blackmailed', 'by', 'nose.'], ['I', 'want', 'you', 'to', 'stay', 'a', 'little', 'longer.'], ['I', 'forgot', 'that', 'you', 'were', 'beautiful.'], ['We', 'must', 'go.'], ['Tell', 'me', 'what', 'the', 'problem.'], ['I', 'have', 'a', 'car', 'in', 'my', 'car', 'repaired.'], ['Tom', 'drank', 'the', 'TV.'], ["I'm", 'lucky', 'that', 'I', 'have', 'a', 'job.'], ['The', 'people', 'were', 'looking', 'at', 'the', 'parking', 'full', 'of', 'people'], ['How', 'can', 'you', 'concentrate?'], ['Give', 'me', 'a', 'minute', 'to', 'write', 'to', 'my', 'breath.'], ['Tom', 'was', 'really', 'worried', 'about', 'Mary.'], ['I', "don't", 'think', 'you', 'did', 'this', 'by', 'yourself.'], ['He', 'works', 'all', 'the', 'day', 'and', 'works', 'every', 'day.'], ['I', 'wish', 'you', 'read', 'this', 'book', 'in', 'English.'], ['I', 'still', "don't", 'understand', 'what', 'happened.'], ['Who', 'saw', 'it?'], ['Your', 'oldest', 'is', 'no', 'child.'], ['I', "can't", 'help', 'these', 'dogs', 'all', 'these', 'problems.'], ['Tell', 'us', 'what', 'you', 'want', 'to', 'do,', 'and', 'what', 'you', 'need', 'to', 'make', 'it.'], ['She', 'is', 'a', 'friend', 'of', 'mine.'], ['Tom', 'speaks', 'a', 'lot', 'of', 'that.'], ['Generally', 'speaking,', 'the', 'yellow', 'leaves', 'yesterday.'], ['If', 'for', 'some', 'reason', 'that', 'happened,', 'what', 'would', 'you', 'do?'], ['Have', 'you', 'decided', 'what', 'you', 'decided', 'to', 'do?'], ['They', 'must', 'pay', 'the', 'new', 'American', 'national', 'lines.'], ['Who', 'do', 'you', 'have', 'to', 'do', 'this?'], ['I', 'appreciate', 'your', 'problem,', 'to', 'protect', 'it.'], ['You', "don't", 'know', 'your', 'chance.'], ['This', 'broken', 'vase', 'is', 'my', 'father.'], ['You', 'should', 'read', 'every', 'other', 'day.'], ['I', "don't", 'think', 'I', 'can', 'fix', 'it.'], ['Tom', 'said', 'he', 'wanted', 'to', 'go', 'swimming.'], ['We', 'can', 'do', 'it', 'right', 'away.'], ['He', 'wears', 'a', 'hat.'], ['Tom', 'is', 'listening', 'to', 'listen', 'to', 'me.'], ['I', 'wanted', 'to', 'thank', 'you', 'for', 'what', 'you', 'did', 'today.'], ['Tom', 'is', 'a', 'spoiled', 'child.'], ['This', 'is', 'a', 'tree.'], ['There', 'is', 'only', 'a', 'store', 'in', 'the', 'park', 'the', 'corner.'], ['No', 'matter', 'how', 'hard', 'you', 'find', 'out', 'of', 'the', 'water.'], ['I', 'wish', 'I', 'could', 'buy', 'a', 'car', 'like', 'that.'], ['They', 'invited', 'them', 'to', 'dinner.'], ['I', 'think', 'Tom', 'should', 'give', 'Mary', 'another', 'chance.'], ["You've", 'been', 'my', 'friend.'], ['You', 'had', 'a', 'better', 'call', 'missing.'], ['My', 'sister', 'is', 'pretty', 'much', 'how', 'much', 'I', 'love', 'you.'], ['He', 'has', 'read', 'the', 'worst', "hasn't", 'ever', 'read', 'born.'], ['He', 'works', 'at', 'night.'], ['Is', 'your', 'daughter', 'there?'], ['Tom', 'is', 'trying', 'to', 'do', 'it.'], ['The', 'king', 'is', 'trying', 'to', 'change', 'a', 'row.'], ['I', 'went', 'to', 'bed', 'early', 'because', 'I', 'went', 'to', 'bed', 'early.'], ["I'll", 'be', 'before', 'you', 'arrived.'], ['She', 'kissed', 'me', 'the', 'cheek.'], ['I', 'warned', 'you', 'once.'], ['You', 'still', "haven't", 'told', 'me', 'why', "you're", 'here.'], ['He', 'is', 'young', 'to', 'marry', 'my', 'sister.'], ['He', 'looks', 'like', 'her', 'mother.'], ['Part', 'of', 'the', 'tip', 'of', 'a', 'man', 'on', 'the', 'fire.'], ['I', 'had', 'a', 'invitation.'], ['Why', 'do', 'you', 'come', 'to', 'work', 'with', 'all', 'the', 'time?'], ['I', 'wish', 'we', 'could', 'have', 'gotten', 'out', 'of', 'us', 'out', 'of', 'us.'], ['He', 'is', 'sitting', 'after', 'midnight.'], ['Be', 'very', 'close.'], ['I', 'still', 'changed', 'my', 'mind.'], ['We', 'have', 'to', 'teach', 'Tom', 'to', 'a', 'doctor.'], ['She', 'beat', 'him', 'to', 'the', 'zoo.'], ["They're", 'unbiased.'], ["There's", 'a', 'bus', 'walk', 'in', 'the', 'morning.'], ['I', 'want', 'them', 'all', 'shot.'], ['We', 'can', 'do', 'that', 'now.'], ['Once', 'you', 'have', 'gotten', 'a', 'foreign', 'language.'], ['I', 'admire', 'your', 'determination.'], ['You', 'look', 'upset.'], ['I', "didn't", 'ask', 'you', 'to', 'come', 'with', 'us.'], ['I', 'did', 'it', 'for', 'you', 'to', 'do', 'that', 'whatever', 'it', 'was', 'wrong', 'with', 'you.'], ['I', 'did', 'it', 'myself.'], ['I', 'want', 'you', 'to', 'call', 'you.'], ['This', 'bird', "can't", 'fly.'], ['I', 'did', 'everything', 'for', 'you.'], ['Why', 'did', 'you', 'decide', 'to', 'do', 'that?'], ['How', 'often', 'do', 'you', 'feed', 'your', 'dog?'], ['I', 'told', 'you', 'the', 'truth.'], ['Tom', 'wants', 'to', 'be', 'working', 'hard.'], ['We', 'can', 'trust', 'Tom.'], ['How', 'much', 'time', 'do', 'you', 'spend', 'time', 'and', 'spend', 'time', 'for', 'the', 'time', 'of', 'his', 'children.'], ['He', 'will', 'have', 'come', 'back', 'soon.'], ['She', 'has', 'a', 'little', 'bread.'], ['We', "don't", 'open', 'the', 'door', 'because', 'Tom', 'opened', 'the', 'door.'], ['I', 'baked', 'cookies.'], ['I', 'think', 'I', 'might', 'have', 'a', 'problem', 'with', 'a', 'lawyer.'], ['It', 'is', 'unable', 'to', 'keep', 'his', 'head.'], ['He', 'is', 'going', 'to', 'get', 'paid', 'for', 'practice.'], ['Tom', 'looks', 'so', 'cool.'], ["I'm", 'not', 'stupid.'], ['Do', 'you', 'really', 'want', 'to', 'know?'], ['Where', 'did', 'you', 'buy', 'this', 'hat?'], ['I', 'want', 'to', 'do', 'it.'], ['Be', 'quiet', 'a', 'girl.'], ['Tell', 'me', "Tom's", 'job.'], ['They', "can't", 'swim', 'in', 'the', 'park', 'in', 'the', 'shop', 'together.'], ["I'm", 'resourceful.'], ['Make', 'sure', 'the', 'door', 'is', 'closed.'], ['He', 'is', 'ride', 'a', 'bicycle.'], ['Tom', 'was', 'the', 'first', 'one', 'who', 'was', 'here.'], ["You've", 'gotten', 'a', 'truck', 'test', 'now.'], ['Your', 'efforts', 'will', 'be', 'soon.'], ['Who', 'broke', 'the', 'window.'], ["I've", 'always', 'wanted', 'to', 'be', 'mother.'], ['I', 'thought', 'it', 'was', 'genuine.'], ["That's", 'what', 'I', 'meant', 'to', 'say.'], ["We're", 'the', 'one', 'of', 'the', 'corner.'], ['He', 'had', 'no', 'more', 'comfortable', 'in', 'mind.'], ['He', 'must', 'thank', 'me.'], ['He', 'is', 'to', 'be', 'in', 'love', 'with', 'Tom', 'in', 'Boston', 'for', 'a', 'few', 'or', 'future.'], ['It', 'is', 'far', 'out', 'that', 'we', 'need', 'to', 'get', 'out', 'of', 'this', 'situation.'], ['He', 'is', 'going', 'to', 'climb', 'the', 'contract', 'out', 'of', 'breath.'], ['As', 'far', 'as', 'he', 'know,', 'he', 'is', 'honest.'], ["We'll", 'be', 'all', 'day', 'to', 'the', 'house', 'tomorrow.'], ['If', "you're", 'trying', 'to', 'change', 'a', 'form', 'of', 'them,', "you'll", 'be', 'careful.'], ['I', 'know', 'what', 'they', 'mean.'], ['She', 'bought', 'the', 'dress', 'on', 'the', 'table.'], ['Please', 'correct', 'the', 'form', 'is', 'out.'], ['Does', 'Tom', 'have', 'French?'], ['I', 'need', 'a', 'pen', 'and', 'paper.'], ['I', "won't", 'be', 'careful', 'but', 'to', 'help', 'the', 'rule', 'to', 'help', 'them.'], ['Tom', 'knows', 'the', 'police', 'like', 'him.'], ['Why', 'are', 'you', 'all', 'so', 'busy?'], ['A', 'swarm', 'of', 'death', 'bumped', 'on', 'the', 'water.'], ["I'm", 'glad', 'that', 'makes', 'you', 'happy.'], ['Tom', 'deserves', 'the', 'right', 'to', 'you.'], ["Don't", 'tell', 'me.', 'Let', 'me', 'guess.'], ['How', 'come', 'you', "didn't", 'come', 'to', 'the', 'party?'], ['When', 'did', 'you', 'be', 'a', 'teacher?'], ['Tom', 'is', 'writing', 'a', 'video.'], ['Can', 'you', 'save', 'enough', 'money', 'for', 'the', 'money?'], ["I'm", 'unbiased.'], ['I', 'need', 'to', 'get', 'up', 'for', 'school.'], ['I', 'need', 'to', 'explain', 'this', 'to', 'Tom.'], ['What', 'happened', 'to', 'my', 'bag?'], ['I', 'always', 'catch', 'the', 'rules.'], ['I', 'was', 'wondering', 'if', 'you', 'need', 'help.'], ['She', 'is', 'almost', 'up', 'early.'], ["You're", 'very', 'understanding.'], ['He', 'suffers', 'from', 'headaches.'], ['I', 'must', 'get', 'some', 'rest.'], ['What', 'was', 'your', 'sister?'], ['You', "won't", 'be', 'good.'], ['I', 'had', 'a', 'very', 'good', 'time.'], ['I', 'am', 'paid', 'for', 'what', 'I', 'would', 'do.'], ['I', 'arrived', 'in', 'Boston', 'yesterday', 'afternoon.'], ['I', 'can', 'prove', 'it', 'to', 'you.'], ['He', 'is', 'like', 'a', 'picture', 'of', 'love', 'from', 'the', 'child.'], ['You', 'can', 'meet', 'for', 'three', 'hundred', 'languages.'], ["Can't", 'you', 'help', 'us?'], ['Your', 'son', 'is', 'dating', 'my', 'daughter.'], ['They', "don't", 'know', 'what', 'they', 'should', 'do', 'with', 'the', 'money.'], ['It', 'should', 'be', 'all', 'the', 'world.'], ['Would', 'you', 'like', 'to', 'see', 'your', 'son', 'with', 'a', 'beard?'], ["Tom's", 'answer', 'is', 'already', 'wrong,', 'of', 'course.'], ['My', 'teacher', 'is', 'the', 'same', 'time.'], ['What', 'is', 'the', 'oldest', 'you', 'do', 'you', 'think', 'you', 'feel?'], ['Give', 'me', 'your', 'car', 'keys?'], ['Do', 'I', 'have', 'a', 'letter?'], ['Love', 'is', 'wrong.'], ['My', 'dad', 'was', 'delayed.'], ["That's", 'why', 'I', 'wanted', 'you', 'to', 'know.'], ["You're", 'too', 'skinny.'], ['We', 'must', 'leave.'], ["We'll", 'meet', 'on', 'the', 'light.'], ['Why', "don't", 'you', 'take', 'a', 'job?'], ["I'm", 'going', 'to', 'America', 'in', 'May.'], ['Why', "don't", 'even', 'make', 'sense', 'to', 'laugh', 'so', 'much', 'about', 'me.'], ['Please', 'say', 'hello', 'to', 'my', 'room.'], ['They', 'wear', 'very', 'little', 'clothes.'], ["That's", 'not', 'what', 'I', 'wanted.'], ['She', 'writes', 'to', 'her', 'son', 'in', 'his', 'time.'], ['I', 'read', 'your', 'book', 'very', 'interesting.'], ['It', 'was', 'a', 'miracle.'], ['Tom', 'likes', 'him', 'as', 'he', 'could.'], ['We', 'are', 'hungry.'], ['Is', 'there', 'any', 'animals', 'in', 'the', 'zoo'], ['They', 'went', 'to', 'New', 'York.'], ['You', 'have', 'a', 'little', 'today.'], ['I', 'suppose', 'my', 'teacher', 'is', 'just', 'a', 'poet.'], ['He', 'is', 'going', 'to', 'take', 'off', 'at', 'the', 'same', 'opportunity.'], ['The', 'light', 'was', 'set', 'up', 'at', 'the', 'building.'], ['What', 'do', 'you', 'want', 'to', 'do', 'after', 'you', 'graduate?'], ['I', 'have', 'plenty', 'of', 'ideas.'], ['I', 'finished', 'myself.'], ['Choose', 'between', 'the', 'two.'], ['You', "can't", 'dance,', 'if', 'you', 'going?'], ['Take', 'it', 'in', 'common.'], ["I'm", 'afraid', 'that', 'you', "can't", 'save', 'this', 'time.'], ['Life', 'is', 'a', 'little', 'too', 'small', 'in', 'a', 'village.'], ['London', 'is', 'the', 'most', 'far', 'from', 'yours.'], ['Tom', 'has', 'a', 'very', 'good', 'job.'], ['Stay', 'in', 'your', 'room.'], ["Don't", 'expect', 'until', 'I', 'arrived.'], ['We', 'lost.'], ['The', 'baby', 'remained', 'quiet.'], ["You're", 'in', 'danger.'], ['The', 'situation', 'lasted', 'two', 'houses.'], ['I', 'cooked', 'lunch.'], ['We', "didn't", 'steal', 'it.'], ['The', 'students', 'fell', 'in', 'the', 'city.'], ['This', 'is', 'a', 'tree.'], ['They', 'should', 'have', 'started', 'to', 'begin?'], ['Are', 'you', 'honest?'], ['They', 'all', 'drank.'], ['I', 'know', "you're", 'busy,', 'but', 'I', 'still', 'love', 'you.'], ['We', 'have', 'the', 'same', 'class', 'yesterday.'], ['I', 'have', 'two', 'new', 'mistakes', 'at', 'all.'], ['I', 'read', 'a', 'bad', 'story.'], ['You', "shouldn't", 'depend', 'on', 'too', 'many', 'others.'], ['I', 'fell', 'into', 'the', 'pool.'], ["It's", 'getting', 'worse.'], ['It', 'was', 'a', 'real', 'drunkard.'], ['You', 'must', 'be', 'careful.'], ["I'd", 'like', 'to', 'go', 'there', 'someday.'], ['I', 'know', 'Tom', 'better', 'than', 'I', 'do.'], ['A', 'number', 'of', 'water', 'needs', 'to', 'cut', 'out', 'of', 'water.'], ['What', 'did', 'you', 'do', 'on', 'your', 'vacation?'], ['You', 'need', 'to', 'find', 'another', 'situation.'], ['Tom', 'is', 'growing.'], ['That', 'sounded', 'like', 'you.'], ['You', 'are', 'wrong.'], ['We', "shouldn't", 'judge', 'people', 'in', 'their', 'appearance.'], ['He', 'stood', 'on', 'the', 'wall.'], ['She', 'has', 'three', 'times', 'as', 'many', 'people', 'than', 'you.'], ["You're", 'precise.'], ['Do', 'you', 'want', 'to', 'go', 'to', 'the', 'house?'], ['I', "don't", 'deserve', 'it.'], ['He', 'needs', 'to', 'read', 'three', 'weeks', 'from', 'report.'], ['The', 'fog', 'delayed', 'the', 'weather', 'advised', 'him', 'to', 'swim', 'across', 'the', 'river.'], ['Staying', 'home', 'is', 'fun.'], ['She', 'is', 'a', 'poet.'], ['Tom', 'is', 'an', 'astronaut.'], ["I'll", 'be', 'there', 'somewhere.'], ['I', 'was', 'very', 'hungry.'], ['Who', 'phoned?'], ['He', 'looks', 'very', 'good.'], ['Come', 'and', 'see', 'this.'], ['Tell', 'me', 'that', "it's", 'not', 'true.'], ['At', 'last,', 'they', 'found', 'out', 'for', 'himself.'], ['I', 'watch', 'TV', 'right', 'TV', 'time.'], ['I', "can't", 'find', 'find', 'out.'], ['Further', 'is', 'a', 'bit', 'of', 'crime', 'to', 'walk', 'in', 'the', 'United', 'States.'], ["You've", 'been', 'selected.'], ['I', 'slept', 'in', 'the', 'nose', 'of', 'the', 'clock.'], ['They', 'hurried', 'to', 'the', 'scene', 'of', 'the', 'accident.'], ['Everyone', 'has', 'to', 'know', 'what', 'to', 'come.'], ['He', 'makes', 'me', 'all', 'right.'], ['The', 'fire', 'got', 'out', 'of', 'breath.'], ['You', 'have', 'a', 'broken', 'red', 'red.'], ['Are', 'we', 'running', 'or', 'Chinese?'], ['Did', 'you', 'have', 'a', 'letter', 'from', 'him?'], ['I', 'did', 'it', 'work', 'for', 'the', 'whole', 'newspaper.'], ['I', 'used', 'to', 'even', 'care', 'even', 'for', 'it.'], ['It', 'was', 'a', 'crime', 'crime', 'cancer.'], ['Do', 'we', 'need', 'to', 'pay', 'for', 'you?'], ['The', 'heater', "doesn't", 'work.'], ['I', 'got', 'myself', 'out.'], ['She', 'went', 'to', 'the', 'odds', 'with', 'his', 'children.'], ['I', 'think', "it's", 'time', 'for', 'me', 'to', 'come', 'home.'], ['I', 'really', 'have', 'my', 'apology.'], ['Can', 'you', 'pass', 'these', 'boxes', 'per', 'these', 'days.'], ['If', 'you', 'eat', 'much,', "you'll", 'have', 'change.'], ['I', 'walked', 'on', 'the', 'ticket', 'on', 'my', 'shoulder.'], ['The', 'meaning', 'of', 'a', 'thing', 'is', 'a', 'bit', 'of', 'luck.'], ["I'm", 'going', 'to', 'stay', 'there', 'for', 'a', 'while.'], ['I', 'knew', 'you', "wouldn't", 'listen.'], ["What's", 'your', 'favorite', 'book?'], ['I', "didn't", 'think', 'this', 'would', 'happen.'], ['I', 'suppose', 'I', "didn't", 'have', 'any', 'choice.'], ['Thanks', 'a', 'lot.'], ['I', "should've", 'been', 'told', 'you.'], ['My', 'friend', 'helped', 'me', 'suffer.'], ['If', 'you', 'push', 'it', 'up', 'to', 'fix', 'it', 'up', 'hard', 'will', 'fix', 'his', 'own.'], ['He', 'has', 'been', 'unreasonable.'], ['We', 'should', 'read', 'a', 'lot', 'while', 'you', 'are', 'young.'], ["You're", 'going', 'to', 'help', 'him,', "don't", 'you?'], ['I', "don't", 'know', 'how', 'to', 'describe', 'it.'], ['Dinner', 'will', 'be', 'ready', 'soon.'], ['He', 'often', 'comes', 'to', 'bed', 'in', 'bed', 'at', 'night.'], ['It', 'was', 'my', 'idea', 'since', 'I', 'was', 'a', 'little', 'girl.'], ["Who's", 'your', 'teacher?'], ["It's", 'better', 'to', 'go', 'to', 'bed.'], ['I', 'would', 'like', 'a', 'piece', 'of', 'cake.'], ['Take', 'up', 'on.'], ['You', "haven't", 'seen', 'anyone', 'before,', 'you?'], ['Take', 'it', 'on.'], ['Rules', 'are', 'no', 'use.'], ['What', 'is', 'the', 'name', 'of', 'this', 'bird?'], ['What', 'kind', 'of', 'dog', 'do', 'you', 'think', 'you', 'want?'], ['What', 'time', 'did', 'you', 'go', 'to', 'bed', 'yesterday?'], ['My', 'leg', 'always', 'hurts.'], ['I', 'suppose', 'you', 'want', 'me', 'to', 'leave.'], ['I', 'thought', 'that', 'would', 'interest', 'you.'], ['We', 'are', 'talking', 'about', 'the', 'number', 'of', 'your', 'life?'], ['You', 'were', 'scared,', "weren't", 'you?'], ['Tom', 'drives', 'too', 'fast.'], ["I'm", 'not', 'sure', 'that', "you're", 'ready.'], ['I', 'remember', 'seeing', 'this', 'movie', 'before.'], ['If', 'he', 'had', 'a', 'told', 'the', 'truth,', 'he', 'would', 'come.'], ['I', 'asked', 'Tom', 'who', 'Tom', 'told', 'his', 'French.'], ['May', 'I', 'borrow', 'your', 'phone?'], ['Your', 'French', 'is', 'better', 'than', 'mine.'], ['He', 'showed', 'a', 'lot', 'of', 'stamps.'], ['The', 'room', 'has', 'two', 'windows.'], ["I'd", 'like', 'to', 'buy', 'a', 'house.'], ["Tom's", 'car', 'has', 'improved', 'Tom?'], ['Where', 'do', 'you', 'think', 'we', 'are', 'from?'], ['It', 'was', 'difficult', 'for', 'us', 'to', 'decide', 'which', 'one', 'to', 'buy.'], ['The', 'girls', 'voted', 'for', 'the', 'winter.'], ["You're", 'still', 'young.'], ['The', 'fog', 'set', 'up', 'his', 'change.'], ['Do', 'you', 'know', 'the', 'man', "who's", 'staring', 'at', 'you?'], ['I', "didn't", 'understand', 'the', 'joke.'], ['He', 'planted', 'a', 'hole', 'in', 'the', 'garden.'], ["Don't", 'you', 'want', 'a', 'chair?'], ['You', "don't", 'have', 'to', 'apologize.'], ['A', 'soccer', 'team', 'is', 'covered', 'with', 'the', 'bush.'], ['The', 'streets', 'are', 'missing.'], ['This', 'road', 'is', 'terrible.'], ['Stay', 'on.'], ['Thanks', 'for', 'bringing', 'me', 'from', 'here.'], ['Your', 'mother', 'loves', 'him.'], ['Who', 'is', 'trying', 'to', 'give', 'me', 'a', 'lift.'], ['This', "isn't", 'a', 'problem', 'yet.'], ['I', "can't", 'go', 'any', 'further.'], ['He', 'was', 'in', 'France.'], ['You', "don't", 'seem', 'crazy.'], ['I', 'ate', 'a', 'lunch.'], ['How', 'is', 'he', 'not', 'remember?'], ['He', 'made', 'up', 'the', 'old', 'against', 'against', 'the', 'crisis.'], ['Tom', 'seems', 'to', 'be', 'serious.'], ['I', 'hope', 'you', "didn't", 'wake', 'you.'], ["We're", 'sloshed.'], ['I', 'have', 'no', 'idea', 'what', "I'm", 'doing.'], ['She', 'goes', 'to', 'Japan', 'and', 'buy', 'every', 'day.'], ['We', "don't", 'have', 'a', 'problem.'], ["I've", 'already', 'written', 'to', 'Tom.'], ["Don't", 'ask', 'orders.'], ['He', 'was', 'very', 'puzzled.'], ["What's", 'your', 'favorite', 'smell?'], ['My', 'brother', 'gave', 'me', 'a', 'cute', 'doll.'], ['The', 'movie', 'was', 'badly', 'told', 'you', 'had', 'had', 'to', 'show', 'you.'], ['I', "don't", 'know', 'how', 'much', 'money', "we've", 'got.'], ['I', 'saw', 'her', 'at', 'home.'], ['Tom', 'has', 'no', 'insurance.'], ['I', 'just', "can't", 'help', 'you', 'right', 'now.'], ['I', 'know', 'that', 'Tom', 'is', 'a', 'teacher.'], ['The', 'cat', 'caught', 'up.'], ['Is', 'Tom', 'still', 'interested?'], ['Tom', 'looks', 'proud', 'of', 'his', 'son.'], ['I', "can't", 'find', 'my', 'bag.'], ['Tom', 'said', 'that', 'he', 'wanted', 'to', 'take', 'the', 'building', 'in', 'the', 'country', 'he', 'refused.'], ['Do', 'you', 'think', "I'm", 'ugly?'], ["It's", 'totally', 'absurd.'], ["He's", 'photogenic.'], ['Yours', 'is', 'free.'], ["It's", 'hardly', 'time', 'to', 'live', 'around', 'here.'], ['What', 'were', 'you', 'thinking', 'about', 'school?'], ['Do', 'you', 'have', 'a', 'beer', 'beer?'], ["It's", 'coming.'], ['I', 'really', 'think', "it's", 'possible.'], ['That', 'house', 'is', 'out', 'of', 'fun.'], ['I', "didn't", 'expect', 'you', 'so', 'early.'], ["There's", 'no', 'hurry.'], ['Tom', "doesn't", 'recognize', 'you.'], ['What', 'are', 'you', 'drinking?'], ['I', "can't", 'drink', 'coffee', 'without', 'sugar.'], ['I', "can't", 'read', 'my', 'dreams.'], ['Do', 'you', 'spend', 'enough', 'time', 'with', 'your', 'children?'], ["Tom's", 'heart', 'failed', 'to', 'thank', 'Mary.'], ['Open', 'your', 'eyes.'], ['I', "didn't", 'tell', 'her.'], ['I', "don't", 'know', 'what', 'to', 'do.'], ['I', 'visit', 'the', 'work', 'if', 'I', 'have', 'gone.', 'I', 'am', 'gone.'], ["It's", 'raining', 'cold', 'tonight.'], ['I', 'love', 'traveling.'], ['I', "won't", 'do', 'it', 'again.'], ['I', 'need', 'you', 'here.'], ['There', 'are', 'a', 'lot', 'of', 'fun', 'at', 'the', 'station.'], ['You', "can't", 'fix', 'it', 'anymore.'], ['Let', 'me', 'buy', 'you', 'a', 'new', 'one.'], ['I', 'know', 'your', 'brother.'], ['Where', 'did', 'you', 'just', 'say', 'that', 'you', 'never', 'asleep.'], ['We', 'let', 'you', 'know', 'where', 'we', 'saw', 'you.'], ["I'm", 'going', 'to', 'work', 'here.'], ['I', "don't", 'want', 'to', 'be', 'involved.'], ["It'll", 'take', 'a', 'moment.'], ['You', "don't", 'know', 'how', 'well', 'how', 'it', 'happened.'], ['Do', 'you', 'know', 'where', 'he', 'is?'], ['Hand', 'on', 'your', 'weapons!'], ['How', 'old', 'are', 'those', 'shoes?'], ['Can', 'you', 'lend', 'me', 'a', 'few', 'minutes?', 'I', 'need', 'to', 'know', 'a', 'few', 'minutes?'], ['Have', 'you', 'ever', 'kissed', 'a', 'girl?'], ['You', 'won.'], ["Don't", 'tell', 'me', 'you', "didn't", 'believe', 'it.'], ['I', 'knew', 'Tom', 'was', 'scared.'], ['In', 'Japan,', 'the', 'new', 'school', 'year', 'begins', 'in', 'April.'], ['Tom', 'has', 'a', 'problem', 'with', 'Mary.'], ['Everyone', 'prayed.'], ["What's", 'this', 'stuff?'], ['He', 'is', 'a', 'poet.'], ["You're", 'depressed,', "aren't", 'you?'], ['I', 'never', 'thought', "I'd", 'find', 'that', 'lucky.'], ['Do', 'you', 'mind', 'if', 'I', 'park', 'here?'], ["You're", 'a', 'happy', 'liar.'], ["She's", 'as', 'young', 'as', 'I', 'am.'], ['My', 'uncle', 'gave', 'me', 'his', 'car.'], ['Speak', 'more', 'slowly,', 'please.'], ['I', 'just', 'want', 'to', 'say', "I'm", 'being', 'here.'], ['We', 'have', 'to', 'take', 'this', 'problem', 'in', 'the', 'problem.'], ['He', 'put', 'a', 'carried', 'clean.'], ['I', 'had', 'no', 'one', 'to', 'talk', 'to.'], ["I've", 'already', 'told', 'no.'], ['Do', 'you', 'want', 'to', 'go?'], ['Why', "don't", 'you', 'give', 'your', 'girlfriend?'], ['He', 'told', 'me', 'he', 'wanted', 'to', 'speak', 'more', 'slowly.'], ['Do', 'you', 'work', 'every', 'day?'], ['My', 'house', 'is', 'on', 'the', 'side', 'of', 'the', 'street.'], ['Sleep', 'is', 'cold.'], ['Tom', 'prepared', 'until', 'until', 'midnight.'], ['They', 'swam.'], ['That', 'would', 'be', 'right.'], ['I', 'used', 'to', 'go', 'out', 'with', 'Tom', 'at', 'the', 'end', 'of', 'the', '2:30.'], ['Tom', 'went', 'to', 'someone', 'to', 'buy', 'something', 'to', 'eat.'], ['I', 'have', 'a', 'lot.'], ['We', 'had', 'a', 'traumatic', 'experience.'], ['Further', 'more', 'than', 'the', 'end', 'of', 'the', 'election.'], ['Tom', 'told', 'me', 'you', 'got', 'a', 'lot.'], ['He', 'has', 'a', 'strange', 'impression', "doesn't", 'he?'], ['No', 'one', 'in', 'the', 'pool.'], ['You', 'may', 'have', 'something', 'better', 'with', 'you.'], ['You', 'need', 'to', 'go', 'to', 'the', 'hospital.'], ['Tom', 'greeted', 'Mary', 'with', 'a', 'smile.'], ["They're", 'now', 'alone.'], ['I', 'want', 'you', 'to', 'know', 'how', 'sorry', 'I', 'am.'], ['Call', 'me.'], ['I', 'know', 'that', 'name.'], ['He', 'saw', 'many', 'stamps.'], ['I', 'think', "it's", 'like', 'such', 'a', 'thing.'], ['If', 'you', 'can', 'make', 'it', 'one', 'you', 'can', 'help.'], ['Can', 'I', 'talk', 'to', 'you', 'in', 'private?'], ["You've", 'got', 'the', 'wrong', 'number.'], ['How', 'many', 'times', 'have', 'you', 'been', 'back?'], ['Let', 'me', 'ask', 'you', 'to', 'ask', 'Tom.'], ['I', 'want', 'you', 'to', 'work', 'well.'], ['Can', 'you', 'verify', 'this', 'message', 'just', 'a', 'car?'], ["You're", 'the', 'one', 'of', 'them,', 'right?'], ['Let', 'me', 'ask', 'you', 'a', 'stupid', 'question.'], ['Try', 'to', 'keep', 'a', 'little', 'more', 'longer.'], ["He's", 'inside.'], ['I', 'hear', 'a', 'contagious', 'outside.'], ['She', 'has', 'a', 'stone', 'face'], ['I', 'am', 'looking', 'forward', 'to', 'New', 'York', 'today.'], ['Can', 'you', 'at', 'least', 'be', 'at', 'least', 'to', 'be', 'at', 'least', 'after', 'me?'], ['I', 'want', 'what', 'it', 'happened.'], ['He', 'has', 'a', 'great', 'deal', 'for', 'this', 'opportunity.'], ['I', 'thought', 'we', 'had', 'found', 'the', 'body', 'but', 'the', 'fire', 'was', 'found.'], ['We', 'studied', 'French.'], ['I', 'like', 'to', 'write', 'a', 'pen', 'at', 'the', 'hook.'], ["I'm", 'sorry', 'I', 'hurt', 'you.'], ['Tom', 'is', 'in', 'bed', 'alone.'], ['No', 'matter', 'what', 'he', 'was', 'absent.'], ['Did', 'you', 'tell', 'Tom', 'yesterday?'], ["It's", 'incredible', 'as', 'the', 'world', 'today.'], ['How', 'much', 'do', 'you', 'have', 'on', 'the', 'ability', 'to', 'you?'], ['We', 'talked', 'to', 'the', 'meeting.'], ['How', 'old', 'were', 'you', 'with', 'this', 'car?'], ['This', 'hat', 'is', 'too', 'small', 'for', 'you.'], ['Are', 'you', 'the', 'mother?'], ['He', 'died', 'before', 'he', 'arrived.'], ['Tom', 'is', 'too', 'hard.'], ["You're", 'absolutely', 'right.'], ['I', 'saw', 'a', 'dog', 'cross', 'the', 'street.'], ['I', 'want', 'to', 'know', 'who', 'you', 'want', 'that.'], ['I', 'was', 'overwhelmed.'], ['I', 'know', 'Tom', 'does', 'that', 'too.'], ['I', 'hope', "you're", 'not', 'offended.'], ['I', "don't", 'have', 'a', 'lot', 'of', 'money', 'to', 'read.'], ['Always', 'try', 'to', 'see', 'the', 'best', 'in', 'the', 'best', 'room.'], ['He', 'has', 'a', 'cat', 'and', 'two', 'dogs.'], ['I', 'got', 'out', 'of', 'my', 'cat.'], ['You', 'know', 'too', 'much.'], ["I'm", 'sorry,', 'I', "can't", 'go.'], ["There's", 'not', 'the', 'possibility', 'that', 'you', 'grow', 'up', 'at', 'the', 'end', 'of', 'the', 'fire.'], ['He', 'was', 'a', 'bad', 'day,', 'and', 'there', 'was', 'nothing', 'there', 'was', 'a', 'jerk.'], ['Tom', 'forgot', 'to', 'salute.'], ['When', 'can', 'you', 'see', 'the', 'party', 'before', 'you', 'see', 'him?'], ['He', 'was', 'not', 'at', 'all', 'interested.'], ["It's", 'your', 'time', 'to', 'do', 'that.'], ['The', 'house', 'is', 'for', 'four', 'years.'], ['Everyone', 'was', 'doing', 'it.'], ['It', 'may', 'come', 'from', 'any', 'further.'], ['Who', 'is', 'playing', 'the', 'guitar?'], ['I', 'had', 'a', 'job', 'when', 'I', 'was', 'your', 'age.'], ['Where', 'did', 'you', 'find', 'this', 'list?'], ['People', 'are', 'eating', 'married', 'food.'], ['Why', "don't", 'you', 'stop', 'me?'], ['Did', 'you', 'call', 'me', 'last', 'night?'], ['She', 'was', 'going', 'to', 'go', 'to', 'bed', 'at', 'least', 'seven.'], ['I', "don't", 'care', 'whether', 'water', 'are', 'beautiful.'], ['She', 'was', 'at', 'home', 'when', 'I', 'was', 'home.'], ['I', "don't", 'care', 'to', 'wake', 'up', 'at', 'six.'], ['I', 'left', 'my', 'new', 'video', 'my', 'new', 'computer.'], ['She', 'forced', 'him', 'to', 'eat', 'dinner', 'with', 'her.'], ["Don't", 'worry.', "I'm", 'going', 'anywhere.'], ["You'll", 'never', 'leave', 'this', 'town.'], ['You', "aren't", 'very', 'wrong.'], ['Tom', "wasn't", 'aware', 'of', 'the', 'police.'], ['I', "don't", 'drink', 'beer.'], ['This', 'is', 'the', 'last', 'time', 'I', 'want', 'you', 'to', 'do', 'that.'], ['She', 'pulled', 'him', 'against', 'his', 'turn', 'against', 'the', 'clock.'], ['I', 'am', 'not', 'about', 'this', 'right', 'now.'], ['I', 'know', 'Tom', 'is', 'about', 'to', 'cry.'], ['I', 'thought', 'we', 'could', 'help', 'us', 'later.'], ['This', 'is', 'a', 'very', 'interesting', 'question.'], ['Tom', 'used', 'to', 'climb', 'out', 'of', 'high', 'school.'], ['I', "don't", 'know', 'how', 'long', "it'll", 'take.'], ['A', 'dog', 'is', 'full', 'of', 'fever.'], ['The', 'wind', 'has', 'ruined'], ["Time's", 'up.'], ['I', 'love', 'the', 'same', 'history.'], ['The', 'police', 'think', 'the', 'map', "wasn't", 'a', 'ball', 'with', 'the', 'window?'], ["Let's", 'sit', 'down', 'to', 'anybody?'], ['It', "wasn't", 'OK', 'if', 'I', "wasn't", 'it?'], ['How', 'am', 'I', 'supposed', 'to', 'dress?'], ['We', 'found', 'it', 'down.'], ['Are', 'you', 'sure', 'you', "don't", 'know', 'why?'], ['I', 'think', "it's", 'possible.'], ['Tom', 'pulled', 'out', 'his', 'head.'], ['If', 'for', 'some', 'reason', 'that', 'happened,', 'what', 'would', 'you', 'do?'], ["Don't", 'you', 'have', 'some', 'tea?'], ["You'll", 'have', 'our', 'opinion', 'of', 'our', 'students.'], ['I', 'fed', 'the', 'table.'], ["Who's", 'your', 'girlfriend?'], ['I', 'hate', 'this', 'guitar.'], ['I', "don't", 'think', 'so.'], ['They', 'want', 'you', 'dead.'], ['His', 'daughter', 'is', 'sick.'], ['This', 'week', 'I', 'did', 'all', 'the', 'time.'], ['I', 'work', 'every', 'day.'], ["It's", 'really', 'a', 'really', 'hot', 'customers.'], ['What', 'are', 'you', 'thinking', 'about?'], ["That's", 'another', 'story.'], ['I', 'refused', 'to', 'pay.'], ['What', 'does', 'that', 'even', 'mean?'], ['I', 'expected', 'this', 'to', 'be', 'here', 'by', 'yourself.'], ['Do', 'you', 'know', 'Japanese?'], ['How', 'about', 'playing', 'chess'], ["It's", 'when', 'it', 'was', 'five', 'minutes', 'in', 'high', 'school.'], ['I', 'had', 'no', 'idea.'], ['I', 'appreciate', 'your', 'company.'], ['Tom', 'wanted', 'to', 'see', 'Mary', 'happy.'], ["You're", 'alone,', "aren't", 'you?'], ['He', 'never', 'used', 'to', 'buy', 'wine.'], ['Can', 'you', 'see', 'that', 'small', 'house?'], ['Tom', 'poured', 'something', 'for', 'Mary.'], ["I'm", 'alone', 'in', 'the', 'world.'], ['I', 'wish', 'I', 'could', 'help', 'that.'], ['How', 'do', 'you', 'know', "we're", 'doing', 'all', 'we', 'feel?'], ['Tom', 'wants', 'to', 'stay', 'in', 'love', 'again?'], ['They', 'were', 'very', 'hungry.'], ['Not', 'everyone', 'went', 'to', 'bed.'], ['We', 'only', 'have', 'three', 'shots.'], ['He', 'is', 'in', 'our', 'way', 'to', 'help.'], ["You're", 'very', 'sophisticated.'], ['Tom', 'is', 'looking', 'with', 'a', 'contact', 'with', "John's", 'legs.'], ['She', 'knows', 'something', 'about', 'the', 'announcement.'], ['The', 'old', 'man', 'looks', 'sad.'], ['He', 'was', 'lying.'], ['I', "don't", 'know', 'anything', 'about', 'it.'], ["They're", 'stalling.'], ['The', 'basket', 'was', 'full', 'of', 'water.'], ['I', 'knew', 'Tom', 'was', 'a', 'cook.'], ['Sit', 'next', 'to', 'me.'], ['The', 'ability', 'is', 'too', 'small', 'to', 'get', 'warm.'], ['You', 'owe', 'me', 'up.'], ['The', 'fish', 'and', 'the', 'boys', "can't", 'swim', 'together.'], ['He', 'is', 'about', 'a', 'word', 'on', 'the', 'subject.'], ['I', 'gave', 'him', 'some', 'books.'], ['Do', 'you', 'mind', 'if', 'I', 'take', 'my', 'sweater?'], ['As', 'soon', 'as', 'you', 'finished', 'the', 'contract', 'you', 'will', 'soon', 'get', 'in.'], ['Do', 'you', 'think', 'about', 'what', 'time', 'about', 'what', 'happened?'], ['He', 'is', 'a', 'good', 'family.'], ['I', 'think', 'you', 'look', 'hot.'], ['Could', 'you', 'lend', 'me', 'a', 'hand?'], ['He', 'wrote', 'the', 'most', 'interesting', 'than', 'the', 'same', 'time.'], ['Could', 'you', 'come', 'here', 'a', 'moment?'], ['I', "can't", 'believe', "I'm", 'agreeing', 'to', 'believe', 'you.'], ['She', 'waved', 'her', 'hand.'], ['I', 'am', 'a', 'little', 'bigger', 'than', 'your', 'tongue.'], ['We', 'have', 'a', 'simple', 'body', 'and', 'raised', 'a', 'selfie.'], ['Sleep', 'people', 'will', 'get', 'the', 'ability', 'to', 'get', 'the', 'future', 'of', 'mankind.'], ['Tom', 'approves.'], ['I', 'feel', 'like', 'this', 'is', 'going', 'to', 'be', 'OK.'], ["There's", 'a', 'big', 'hole', 'in', 'your', 'sock.'], ['A', 'fire', 'suspected', 'he', 'was', 'lying.'], ['I', 'take', 'care', 'of', 'my', 'grandfather.'], ['May', 'I', 'ask', 'you', 'to', 'do', 'this', 'kind', 'of', 'game?'], ['This', 'is', 'a', 'hybrid.'], ['Everyone', 'loves', 'me', 'to', 'school.'], ["It's", 'been', 'a', 'long', 'since', "I've", 'seen', 'in', 'this', 'apartment.'], ['She', 'turned', 'up.'], ['He', 'stuck', 'the', 'key', 'in', 'the', 'lock.'], ['I', 'just', 'think', 'you', 'should', 'be', 'careful,', "that's", 'all.'], ['I', 'wake', 'up', 'at', '6.'], ["It's", 'still', 'against', 'you.'], ['The', 'production', 'of', 'the', 'company', 'has', 'a', 'certain', 'price', 'of', 'goods.'], ["What's", 'your', 'best', 'price?'], ['I', 'hate', 'this', 'idea.'], ["There's", 'something', 'in', 'the', 'paper,', 'of', 'having', 'a', 'crime', 'in', 'the', 'pond.'], ['Will', 'he', 'be', 'back?'], ['I', 'think', "it's", 'not', 'a', 'bad', 'boy.'], ['It', 'was', 'never', 'done', 'before.'], ['You', 'know', 'what', 'Tom', 'was', 'named', 'well.'], ['In', 'case', 'there', 'was', 'not', 'an', 'hour', 'ago.'], ['My', 'father', 'let', 'me', 'go', 'to', 'swim.'], ['A', 'lot', 'of', 'my', 'knowledge,', "I'm", 'wrong,', 'I', 'know.'], ['Did', 'you', 'see', 'the', 'news?'], ["I'm", 'a', 'little', 'confused.'], ['Is', 'it', 'going?'], ['You', 'will', 'have', 'a', 'good', 'point.'], ["I'm", 'a', 'guy', 'worker.'], ['Tom', 'and', 'I', "don't", 'know', "you're", 'he?'], ['It', 'was', 'pretty', 'weird.'], ['Tom', 'drank', 'the', 'bottle.'], ["We'll", 'be', 'going.'], ['I', 'figured', 'you', 'might', 'change', 'your', 'mind.'], ['I', 'could', 'kiss', 'you.'], ['It', 'was', 'disgusting.'], ['Give', 'me', 'a', 'word', 'to', 'anyone', 'else.'], ['I', 'think', 'we', 'should', 'take', 'a', 'look', 'or', 'another', 'time.'], ['Is', 'the', 'way', 'of', 'the', 'second', 'way', 'to', 'the', 'station.'], ['They', 'were', 'afraid', 'of', 'the', 'big', 'dog.'], ['How', 'did', 'you', 'stop', 'it?'], ['I', 'think', 'Tom', 'may', 'be', 'right.'], ['What', 'do', 'you', 'want', 'to', 'see', 'if', 'you', 'are?'], ['Is', 'it', 'going?'], ['My', 'friends', "don't", 'know', 'where', "I'm", 'going.'], ['The', 'post', 'office', 'is', 'not', 'far', 'from', 'here.'], ['Tom', 'already', 'knows', 'the', 'truth.'], ['We', 'are', 'worried', 'about', 'the', 'situation.'], ["I'll", 'do', 'my', 'best.'], ['Those', 'houses', 'are', 'beautiful.'], ["I'm", 'pretty', 'good.'], ['I', 'want', 'a', 'word', 'with', 'you.'], ['I', 'will', 'take', 'the', 'same', 'thing', 'when', 'it', 'is.'], ["You've", 'got', 'a', 'lot', 'of', 'sunset.'], ['I', 'just', "didn't", 'want', 'you', 'to', 'think', 'I', 'was', 'stingy.'], ['The', 'same', 'clock', 'is', 'the', 'same', 'for', 'the', 'same', 'time.'], ['It', 'was', 'two', 'hours', 'two', 'hours', 'to', 'two', 'hours.'], ['Which', 'book', 'have', 'you', 'bought', 'it?'], ["They're", 'rich.'], ["It's", 'a', 'long', 'story.'], ['I', "don't", 'think', 'I', 'can', 'make', 'your', 'party.'], ['You', "don't", 'have', 'to', 'do', 'this', 'if', 'you', "don't", 'want', 'to.'], ["What's", 'the', 'difference?'], ['We', 'really', 'need', 'to', 'find', 'out.'], ['I', 'got', 'up', 'too', 'early.'], ['Can', 'you', 'play', 'the', 'most', 'girl', 'with', 'the', 'river?'], ['From', 'going', 'to', 'be', 'there', 'by', 'car.'], ["You've", 'lost', 'the', 'game.'], ['Speak', 'say', 'no.'], ['No', 'one', "doesn't", 'understand', 'him,', 'but', 'it', 'is', 'it', 'if', 'it', 'is', 'raining.'], ['That', 'was', 'a', 'rumor.'], ['I', 'hope', 'you', 'stop', 'trying', 'to', 'call', 'me.'], ["I'll", 'give', 'you', 'some', 'advice.'], ['Please', 'show', 'me', 'to', 'the', 'number', 'of', 'my', 'health.'], ['I', "can't", 'do', 'that', 'either.'], ['Why', 'do', 'you', 'have', 'that?'], ['How', 'often', 'do', 'you', 'remember?'], ['I', 'know', 'these', 'people.'], ["That's", 'not', 'quite', 'right.'], ['I', "can't", 'believe', 'you', 'did', 'that', 'all', 'that', 'by', 'yourself.'], ['Are', 'you', 'a', 'natural', 'blonde?'], ['I', "don't", 'love', 'being', 'out', 'of', 'you.'], ['Talking', 'with', 'the', 'boys', 'is', 'beautiful.'], ['I', 'was', 'greatly', 'impressed', 'with', 'his', 'speech.'], ['Have', 'you', 'ever', 'heard', 'this', 'story?'], ["You'd", 'better', 'hurry.'], ["I'd", 'like', 'to', 'borrow', 'your', 'trip', 'to', 'your', 'country', 'from', 'Australia.'], ['I', 'wanted', 'you', 'to', 'do', 'that.'], ['I', 'need', 'to', 'talk', 'to', 'this', 'anymore.'], ['I', 'expected', 'you', 'to', 'consider', 'a', 'hospital.'], ['You', 'go', 'there.'], ['Let', 'us', 'know', 'when', "he'll", 'come', 'back.'], ['I', 'had', 'to', 'finish', 'what', 'I', 'started.'], ['Where', 'did', 'you', 'meet', 'him?'], ['I', "don't", 'think', 'Tom', 'can', 'do', 'that.'], ['How', 'many', 'are', 'there', 'there?'], ['The', 'girls', 'giggled.'], ['There', 'is', 'no', 'one', 'of', 'the', 'towel.'], ["You're", 'nuts!'], ['He', 'leaves', 'for', 'Tokyo', 'tomorrow.'], ['If', 'I', 'had', 'bought', 'that', 'I', 'had', 'bought', 'it.'], ['We', 'rented', 'an', 'apartment', 'when', 'we', 'rented', 'a', 'rented'], ['Have', 'you', 'talked', 'about', 'me?'], ['He', 'is', 'a', 'circle.'], ['Which', 'one', 'is', 'more', 'expensive?'], ['Do', 'you', 'have', 'dinner', 'every', 'day?'], ['It', 'was', 'harder', 'than', 'I', 'thought.'], ['He', 'is', 'a', 'problem', 'problem.'], ['Why', 'said', 'he', 'wanted', 'to', 'call', 'you', 'with', 'him', 'of', 'college.'], ['The', 'roads', 'were', 'a', 'red', 'roof.'], ['It', 'was', "Tom's", 'plan', 'since', 'the', 'teacher.'], ['Tom', 'taught', 'Mary', 'how', 'to', 'swim?'], ['It', 'looks', 'like', "you're", 'not', 'here.'], ['It', 'difficult', 'difficult', 'to', 'solve', 'the', 'problem.'], ["I'll", 'thank', 'you', 'for', 'your', 'help.'], ['They', "didn't", 'know', 'what', 'little', 'money', 'left.'], ["That's", 'the', 'best', 'man', "I've", 'ever', 'given', 'you', 'to', 'see.'], ['I', 'have', 'no', 'more', 'time.'], ['We', 'walked', 'along', 'a', 'bus.'], ['How', 'big', 'is', 'the', 'old', 'car?'], ['Mary', 'gave', 'him', 'a', 'sweater', 'for', 'his', 'will.'], ['I', 'sent', 'you', 'a', 'lot.'], ['I', 'like', 'being', 'when', 'you', 'need.'], ['My', 'house', 'is', 'far', 'from', 'here.'], ['No', 'one', 'believed', 'me.'], ["What's", 'your', 'family', 'name?'], ['Call', 'me', 'if', 'you', 'need', 'help.'], ['May', 'I', 'have', 'anything', 'else', 'to', 'do?'], ['This', 'museum', 'is', 'on', 'TV.'], ['Tom', 'probably', 'thought', 'I', 'was', 'thirsty.'], ['I', 'wonder', 'what', 'your', 'name', "didn't", 'need', 'to', 'do', 'your', 'name.'], ['I', 'lost', 'my', 'way', 'to', 'school.'], ['I', 'thought', 'it', 'might', 'be', 'a', 'good', 'idea', 'when', 'we', 'could', 'get', 'to', 'discuss', 'this.'], ["There'll", 'try', 'to', 'keep', 'all', 'the', 'rest', 'of', 'us', 'all', 'the', 'other', 'questions.'], ['Something', 'might', 'be', 'interesting', 'so', 'please', 'be', 'careful.'], ['He', 'has', 'a', 'little', 'money', 'in', 'the', 'bank.'], ['Just', 'be', 'glad', 'to', 'be', 'prepared.'], ['What', 'do', 'you', 'look', 'at', 'this', 'picture', 'in', 'this', 'picture?'], ['He', 'is', 'not', 'at', 'all', 'the', 'gentleman.'], ['I', 'am', 'eighteen', 'years', 'old.'], ['You', 'must', 'learn', 'how', 'to', 'keep', 'your', 'life.'], ['His', 'story', 'was', 'a', 'magazine.'], ['I', "don't", 'know', 'how', 'they', 'do', 'it.'], ["We'll", 'find', 'out.'], ['I', 'want', 'to', 'go', 'to', 'school', 'in', 'jail.'], ['The', 'floorboards', 'took', 'the', 'edge', 'of', 'the', 'scene', 'of', 'the', 'edge', 'of', 'the', 'earthquake.'], ['Tom', 'probably', 'never', 'win.'], ['The', 'system', 'is', 'not', 'available', 'for', 'now.'], ['The', 'water', 'goes', 'with', 'the', 'glass.'], ['Will', 'those', 'have', 'any', 'change?'], ['See', 'you', 'at', 'the', 'moment.'], ['For', 'the', 'best', 'thing', "it's", 'a', 'mess.'], ['He', 'was', 'proud', 'of', 'his', 'daughter.'], ['The', 'house', 'looked', 'very', 'hard.'], ["I'm", 'not', 'a', 'loser.'], ['All', 'of', 'a', 'sudden,', 'it', 'was', 'cold.'], ['There', 'is', 'something', 'Tom', "doesn't", 'like', 'to', 'do.'], ['I', 'know', 'you', 'love', 'coffee.'], ['What', 'does', 'that', 'really', 'mean?'], ['I', 'have', 'a', 'problem', 'with', 'breakfast.'], ['Who', 'is', 'there?'], ['I', 'was', 'absent', 'from', 'school.'], ['You', 'must', 'pay', 'in', 'advance.'], ['Can', 'you', 'tell', 'the', 'reason', 'why', 'we', 'can', 'do', 'this', 'one?'], ['A', 'friend', 'of', 'people', 'were', 'with', 'with', 'their', 'parents.'], ["I'm", 'not', 'sure', 'this', 'is', 'my', 'key.'], ['I', 'figured', 'I', 'might', 'find', 'you', 'here.'], ['A', 'lot', 'of', 'people', 'are', 'still', 'afraid', 'of', 'people', 'yet.'], ['Please', 'see', 'what', 'you', 'see', 'the', 'great', 'collection', 'of', 'stamps.'], ['How', 'do', 'you', 'remember?'], ['This', 'smells', 'bad.'], ['We', 'will', 'hurry.'], ['Tom', 'is', 'wearing', 'his', 'shoulders.'], ['Italy', 'invaded', 'Ethiopia', 'in', '1935.'], ['I', 'like', 'this', 'idea.'], ['Everyone', 'was', 'safe.'], ['I', "don't", 'remember', 'that', 'at', 'all.'], ['How', 'is', 'it', 'going', 'for', 'a', 'ride?'], ['Do', 'you', 'talk', 'to', 'your', 'projects?'], ["I'm", 'glad', 'to', 'see', 'you', 'here.'], ["You'd", 'be', 'perfect', 'for', 'that.'], ['We', "haven't", 'written', 'since', 'we', 'have', 'since', "we've", 'in.'], ['The', 'apple', 'of', 'the', 'habit', 'of', 'being', 'is', 'that', 'he', 'was', 'innocent.'], ['Please', 'do', 'anything', "it's", 'necessary.'], ['Tom', 'never', 'was', 'lying.'], ["I'm", 'not', 'ready', 'for', 'that.'], ['I', "didn't", 'think', "you'd", 'be', 'so', 'late.'], ["I'm", 'not', 'going', 'to', 'do', 'that', 'yet.'], ['Can', 'you', 'drive', 'me', 'home?'], ['I', 'want', 'to', 'write', 'this', 'letter', 'to', 'Japan.'], ['Did', 'you', 'go', 'to', 'the', 'restaurant', 'yesterday?'], ['You', 'should', 'not', 'go', 'to', 'school.'], ['I', 'never', 'knew', 'it.'], ['We', "didn't", 'hear', 'it.'], ["I'd", 'like', 'to', 'discuss', 'this', 'with', 'you.'], ['Why', 'are', 'you', 'so', 'good', 'at', 'such', 'me?'], ['I', 'learned', 'how', 'to', 'learn', 'how', 'to', 'swim.'], ['It', 'is', 'no', 'business', 'with', 'a', 'little', 'doctor.'], ["She's", 'a', 'nice', 'hat.'], ['Tom', 'seems', 'to', 'have', 'a', 'lucky', 'match.'], ['Tom', 'is', 'stuttering.'], ['Thanks', 'for', 'your', 'patience.'], ['Cotton', 'needs', 'to', 'be', 'worth', 'a', 'native', 'speaker.'], ['The', 'movie', 'was', 'almost', 'the', 'heavy', 'opportunity.'], ['The', 'factory', 'is', 'desert.'], ["Here's", 'your', 'beer.'], ["There's", 'something', 'I', 'want', 'to', 'show', 'you.'], ['I', 'just', "can't", 'help', 'you', 'do', 'help.'], ["I'll", 'do', 'the', 'work', 'tomorrow.'], ['He', 'suggested', 'that', 'the', 'company', 'ended', 'up', 'the', 'ability', 'to', 'get', 'paid', 'for', 'their', 'failure', 'to', 'avoid', 'their', 'moon.'], ["I'm", 'proud', 'of', 'work', 'with', 'you.'], ['I', 'intend', 'to', 'return', 'next', 'year.'], ['I', 'know', "you're", 'busy,', 'but', 'can', 'I', 'have', 'a', 'good', 'time', 'with', 'me?'], ['What', 'do', 'you', 'expect?'], ['My', 'daughter', 'is', 'going', 'to', 'drive', 'a', 'foreigner.'], ['Please', 'show', 'me', 'the', 'room.'], ['I', 'have', 'a', 'headache,', 'I', 'want', 'to', 'be', 'late.'], ['I', 'wonder', 'if', 'you', 'want', 'me', 'such', 'a', 'good', 'idea', 'to', 'remember.'], ['The', 'cows', 'are', 'full', 'of', 'water.'], ['I', "can't", 'just', 'going.'], ['All', 'the', 'members', 'were', 'members', 'of', 'the', 'middle', 'of', 'the', 'room', 'that', 'the', 'rest', 'of', 'the', 'world', 'is', 'the', 'child.'], ['God', 'cat', 'is', 'the', 'afraid', 'of', 'the', 'trunk.'], ['I', 'love', 'you', 'and', 'love', 'out.'], ['We', 'want', 'to', 'save', 'food.'], ['She', 'is', 'always', 'friendly', 'with', 'everyone.'], ['I', 'think', "he's", 'right.'], ['How', 'do', 'you', 'stop', 'this?'], ['Please', 'close', 'the', 'door.'], ['Can', 'you', 'still', 'remember', 'where', 'we', 'first', 'met?'], ['Did', 'you', 'have', 'the', 'dishwasher?'], ['He', 'lay', 'on', 'the', 'bed.'], ['I', "don't", 'think', 'that', 'one', 'of', 'us', 'wants', 'to', 'do', 'with', 'each', 'other.'], ['She', 'has', 'a', 'loud', 'voice.'], ["I'd", 'like', 'to', 'eat.'], ['I', 'live', 'here', 'three', 'years', 'in', 'three', 'years.'], ['I', 'am', 'afraid', 'of', 'it.'], ["I'm", 'sorry.', 'I', "didn't", 'mean', 'to', 'make', 'you', 'cry.'], ["Don't", 'forget', 'to', 'know', 'when', 'he', 'gets', 'over', 'when', 'he', 'is.'], ['He', 'promised', 'me', 'that', 'he', "wouldn't", 'tell', 'anybody.'], ['Do', 'you', 'want', 'some', 'more', 'coffee?'], ["She's", 'in', 'the', 'garage.'], ['I', 'fell', 'into', 'the', 'picture.'], ['Are', 'you', 'sure', 'you', 'can', 'handle', 'this?'], ['A', 'swarm', 'of', 'bread', 'found', 'the', 'child', 'when', 'it', 'was', 'cold.'], ['Can', 'you', 'supply', 'me', 'with', 'all', 'of', 'me?'], ["You're", 'depressed,', "isn't", 'it?'], ['You', 'made', 'fun', 'of', 'my', 'dirty.'], ["You're", 'the', 'oldest.'], ['I', 'need', 'an', 'urgent', 'need', 'for', 'air.'], ['Oh', 'us.'], ['The', 'girls', 'were', 'very', 'kind', 'to', 'me.'], ['We', 'talked', 'to', 'you', 'not', 'enough', 'to', 'walk', 'on', 'the', 'baby.'], ['He', 'found', 'the', 'door', 'closed.'], ['I', 'am', 'wearing', 'a', 'shower', 'from', 'the', 'week.'], ['I', 'have', 'to', 'solve', 'this', 'problem', 'to', 'solve.'], ['Take', 'it', 'on.'], ["I'd", 'like', 'you', 'to', 'meet', 'one', 'of', 'mine.'], ['Tom', 'ate', 'a', 'turkey', 'sandwich.'], ['He', 'is', 'rich.'], ['I', 'had', 'fun', 'last', 'night.'], ['None', 'of', 'them', 'look', 'busy.'], ['I', "can't", 'do', 'that', 'either.'], ['You', 'have', 'a', 'lot', 'of', 'work', 'to', 'do.'], ['Have', 'you', 'ever', 'had', 'the', 'money', 'Tom', 'had', 'asked', 'you?'], ['They', "don't", 'know', 'how', 'to', 'do', 'it.'], ['In', 'the', 'moment', 'we', 'ate', 'our', 'meal,', 'we', 'talked', 'about', 'our', 'week.'], ['Father', "doesn't", 'want', 'to', 'drive.'], ["I'll", 'come.'], ['I', 'am', 'learning', 'several', 'times.'], ["Don't", 'be', 'so', 'outraged.'], ['I', 'pretended', 'that', 'I', 'was', 'winning.'], ['He', 'is', 'not', 'going', 'today.'], ['How', 'far', 'is', 'it', 'from', 'here', 'to', 'us?'], ['I', 'know', 'I', 'can', 'go', 'faster.'], ['They', 'were', 'not', 'listening', 'to', 'music.'], ['I', "can't", 'believe', "I'm", 'talking', 'to', 'you', 'for', 'that.'], ["You'll", 'have', 'to', 'pay', 'for', 'this.'], ['He', 'bought', 'a', 'dress', 'to', 'his', 'dress.'], ['She', 'did', 'a', 'good', 'job.'], ['You', "don't", 'have', 'to', 'buy', 'this,', 'are', 'you?'], ['At', 'where', 'I', 'stayed', 'in', 'my', 'mother,', 'but', 'I', 'want', 'to', 'marry', 'her.'], ['This', 'fact', 'is', 'that', 'he', 'is', 'innocent.'], ['What', 'do', 'you', 'think', "it's", 'good', 'for', 'the', 'whole', 'person', 'to', 'buy', 'it.'], ['I', "can't", 'spend', 'my', 'way', 'of', 'tea,', 'what', 'I', "can't", 'stand', 'you', 'to', 'do', 'not', 'to', 'be.'], ['She', 'called', 'him.'], ["Don't", 'waste', 'your', 'weather.'], ['This', 'is', 'a', 'strange', 'case.'], ['Put', 'your', 'hat.'], ['I', "didn't", 'tell', 'us', 'where', 'he', 'lives.'], ['Were', 'you', 'one', 'of', 'these?'], ['The', 'situation', 'had', 'no', 'different.'], ['I', "don't", 'speak', 'fast.'], ['May', 'I', 'make', 'it', 'up', 'to', 'me', 'now?'], ['This', 'book', 'is', 'similar', 'to', 'Japan.'], ["That's", 'really', 'not', 'funny.'], ['I', 'admit', 'that', 'I', 'was', 'surprised.'], ['Bread', 'is', 'made', 'from', 'wheat.'], ["You're", 'not', 'going', 'to', 'today.'], ['Breakfast', 'is', 'ready.'], ['I', 'won.'], ['Your', 'change', 'is', 'up.'], ["I'm", 'not', 'at', 'home.'], ['Come', 'down', 'the', 'door', 'open.'], ['I', "don't", 'see', 'the', 'sentence.'], ["Don't", 'worry', 'about', 'me.'], ['Look,', "I'm", 'very', 'busy.'], ['Tom', 'is', 'still', 'sleeping.'], ["Don't", 'give', 'me', 'the', 'point.'], ['Where', 'did', 'you', 'get', 'on', 'this', 'bus?'], ['I', "don't", 'know', 'my', 'neighbors.'], ['You', 'need', 'to', 'have', 'plans', 'to', 'have', 'some', 'pictures.'], ['What', 'foods', 'are', 'you', 'allergic', 'to?'], ['I', 'spend', 'a', 'little', 'time', 'for', 'hours', 'to', 'write', 'to', 'my', 'teeth.'], ['Will', 'you', 'drink', 'another', 'cup', 'of', 'coffee?'], ['Yesterday', 'Mary', 'stayed', 'home', 'all', 'the', 'house', 'yesterday.'], ['Tom', 'and', 'Mary', 'are', 'being', 'used', 'to', 'be', 'together.'], ['If', 'you', "don't", 'want', 'to', 'live', 'in', 'your', 'advice,', 'We', "don't", 'want', 'to', 'get', 'a', 'date', 'for', 'kids.'], ["You're", 'really', 'annoying.'], ['Tom', 'left', 'here', 'last', 'night.'], ['We', 'must', 'be', 'cautious.'], ['It', 'was', 'not', 'a', 'success.'], ['No', 'one', 'lost', 'hope.'], ['We', 'are', 'our', 'idea', 'what', 'we', 'were', 'in', 'the', 'past.'], ['It', 'is', 'a', 'wonderful', 'invention.'], ['The', 'man', 'you', 'think', 'the', 'boss', 'is', 'to', 'meet', 'my', 'uncle.'], ['He', 'made', 'up', 'his', 'mind', 'to', 'get', 'caught.'], ['Try', 'to', 'spend', 'your', "mother's", 'mother.'], ['He', 'would', 'be', 'a', 'great', 'salary', 'he', 'would', 'be', 'happy.'], ['Are', 'there', 'to', 'join', 'us', 'for', 'us?'], ["I'd", 'like', 'you', 'to', 'come', 'with', 'us.'], ['Please', 'tell', 'me', 'what', 'you', 'need.'], ['My', 'son', 'is', 'too', 'skinny.'], ['She', 'asked', 'him', 'to', 'call', 'him', 'later', 'but', 'he', 'gets', 'himself.'], ['He', 'speaks', 'English', 'in', 'English.'], ['I', 'made', 'two', 'birds', 'with', 'two', 'people.'], ['A', 'lot', 'of', 'people', 'changed', 'the', 'lot', 'of', 'death.'], ["That's", 'not', 'my', 'power.'], ["That's", 'where', "you're", 'wrong.'], ['I', 'feel', 'kind', 'of', 'responsible.'], ['I', 'should', 'have', 'been', 'a', 'little', 'more', 'patient.'], ['How', 'is', 'this', 'going?'], ['Tom', 'and', 'Mary', 'never', 'like', 'each', 'other.'], ['Tom', 'took', 'out', 'of', 'my', 'business.'], ['We', "should've", 'met', 'Tom', 'to', 'go', 'to', 'school.'], ["I'm", 'taller.'], ['I', 'get', 'two', 'with', 'two', 'quilts', 'in', 'the', 'winter.'], ['We', 'need', 'to', 'get', 'out', 'of', 'here.'], ['Come', 'in.'], ['I', 'want', 'to', 'travel', 'with', 'you.'], ["We're", 'counting', 'on', 'you.'], ['I', 'wanted', 'to', 'do', 'that', 'before', '2:30.'], ['We', 'will', 'hurry.'], ['We', "don't", 'make', 'much', 'living', 'in', 'the', 'election.'], ['I', 'just', 'wanted', 'to', 'explain', 'it', 'to', 'watch.'], ['Tom', 'told', 'you', 'ever', 'wanted', 'to', 'meet', 'Boston.'], ['Please', 'come', 'to', 'me', 'again', 'again', 'when', 'you', 'are', 'not', 'too', 'much', 'days.'], ['I', 'can', 'listen.'], ['He', 'has', 'a', 'good', 'appetite', 'and', 'a', 'man.'], ['This', 'is', 'good', 'for', 'me.'], ['How', 'much', 'money', 'did', 'you', 'win?'], ['What', 'a', 'beautiful', 'dress!'], ["I'd", 'like', 'you', 'to', 'come', 'mad.'], ['We', 'talked', 'to', 'the', 'meaning', 'of', 'any', 'problems.'], ['I', "wasn't", 'pleased.'], ['I', 'feel', 'a', 'little', 'better', 'now.'], ['Tom', "doesn't", 'mean', 'to', 'attend', 'his', 'wife.'], ['Who', 'is', 'the', 'boy', 'who', 'wrote', 'the', 'river?'], ['This', 'is', 'a', 'very', 'difficult', 'time.'], ['I', 'love', 'this', 'game.'], ['He', 'waited', 'for', 'a', 'walk.'], ["You'd", 'better', 'take', 'a', 'while.'], ["They're", 'without', 'me.'], ['Am', 'I', 'under', 'suspicion?'], ['He', 'is', 'very', 'honest,', 'to', 'help', 'us', 'with', 'us.'], ['Have', 'you', 'have', 'a', 'cellphone?'], ['I', 'was', 'unable', 'to', 'keep', 'you', 'how', 'to', 'do', 'it', 'right', 'away.'], ['I', 'saw', 'a', 'stranger', 'enter', 'this', 'house.'], ['Please', 'bring', 'me', 'the', 'ball.'], ['Do', 'you', 'ever', 'think', 'about', 'that', 'guy?'], ['I', "didn't", 'know', 'that', 'he', 'had', 'eaten', 'then.'], ['You', 'were', 'afraid,', "weren't", 'you?'], ["I'm", 'contagious.'], ["You're", 'on', 'the', 'right', 'track.'], ['The', 'food', 'was', 'never', 'finished.'], ['I', 'see', 'a', 'light.'], ["That's", 'not', 'possible.'], ['I', 'want', 'you', 'to', 'be', 'here.'], ['I', 'never', 'dreamed', "we'd", 'meet', 'you', 'here.'], ['This', 'is', 'my', 'dictionary.'], ["She's", 'smarter', 'than', 'me.'], ['I', 'thought', 'I', 'was', 'your', 'love.'], ['The', 'rent', 'is', 'going', 'to', 'remove', 'in', 'the', 'cellar.'], ['Tom', "doesn't", 'need', 'it.'], ['You', 'are', 'good', 'at', 'your', 'weight', 'of', 'your', 'weight.'], ['You', "can't", 'tell', 'the', 'both', 'of', 'the', 'truth.'], ['I', 'know', 'that', 'you', 'must', 'be', 'sure', 'about', 'the', 'accident.'], ['Really?'], ["She's", 'a', 'bit', 'shy.'], ['She', 'advised', 'him', 'to', 'take', 'care', 'of', 'the', 'more', 'problems.'], ['I', 'wish', 'I', 'were', 'being', 'beautiful.'], ['It', 'looks', 'like', "we're", 'going', 'to', 'be', 'assertive.'], ['His', 'neighbor', 'was', 'a', 'present', 'with', 'his', 'own.'], ['Tom', 'asked', 'us', 'to', 'wait', 'some', 'questions.'], ['Young', 'people', 'have', 'many', 'people', 'to', 'deal', 'with', 'their', 'people.'], ['She', 'is', 'busy', 'with', 'his', 'work.'], ["I'd", 'like', 'to', 'know', 'where', 'Tom', 'hid', 'the', 'key.'], ['Would', 'you', 'have', 'something', 'else?'], ['Tom', 'refused', 'to', 'sign', 'the', 'document.'], ['I', "don't", 'know', 'if', "it's", 'a', 'good', 'idea.'], ['Are', 'you', 'sure', "you're", 'not', 'tired?'], ['Tom', "didn't", 'believe', 'anything', 'to', 'us.'], ['I', 'overslept', 'but', 'I', "didn't", 'notice', 'her', 'feelings.'], ['The', 'stars', 'are', 'in', 'the', 'sky.'], ["Where's", 'your', 'drink?'], ['Stop', 'deluding', 'yourselves.'], ['The', 'sky', 'was', 'filled', 'out', 'of', 'breath.'], ["They're", 'outside.'], ['The', 'plane', 'landed', 'in', 'an', 'hour.'], ["I'll", 'call', 'you', 'when', 'I', 'get', 'to', 'the', 'bus', 'stop.'], ['Do', 'you', 'know', 'why', 'spring', 'are', 'the', 'most', 'important', 'spring', 'rolls?'], ['Speech', 'is', 'the', 'story', 'of', 'the', 'crime.'], ['We', 'have', 'no', 'idea', 'how', 'long', 'around', 'the', 'world.'], ['I', 'woke', 'up.'], ['I', 'study', 'in', 'Tokyo', 'University.'], ['You', 'should', 'change', 'your', 'own', 'life.'], ["It's", 'not', 'surprising.'], ['I', "wouldn't", 'want', 'to', 'pry.'], ['I', 'will', 'make', 'trouble.'], ['She', 'may', 'not', 'like', 'him,', 'but', 'I', "don't."], ['His', 'success', 'with', 'her.'], ['Who', 'told', 'you', 'why', 'you', 'were', 'here?'], ["I'll", 'follow', 'you', 'trying', 'to', 'follow', 'orders.'], ["I'm", 'not', 'done', 'with', 'you', 'yet.'], ["That's", 'a', 'bad', 'habit', 'of', 'mine.'], ['They', "wouldn't", 'do', 'that', 'again.'], ["Here's", 'the', 'only', 'one', 'you', 'can', 'wait.'], ['You', 'do', 'your', 'dirty', 'name?'], ['When', 'God', 'public,', 'let', 'the', 'results', 'if', 'you', 'want', 'to', 'know.'], ['I', 'was', 'about', 'the', 'scene', 'when', 'the', 'accident', 'happened.'], ['When', 'I', 'grow', 'up,', 'I', 'want', 'to', 'be', 'treated', 'like', 'you.'], ['The', 'more', 'of', 'you', 'and', 'two', 'between', 'you', 'and', 'you', 'are', 'likely', 'to', 'be', 'accepted.'], ["I'm", 'still', 'sure', 'I', 'can', 'do', 'that.'], ['What', 'do', 'you', 'have', 'in', 'a', 'situation', 'in', 'that?'], ['It', "shouldn't", 'be', 'like', 'this.'], ['Cotton', 'is', 'very', 'hard', 'for', 'probably', 'a', 'minute.'], ['Do', 'you', 'enjoy', 'French', 'difficult?'], ['He', 'was', 'very', 'funny.'], ['Tom', 'turned', 'down', 'the', 'rope.'], ['Women', 'generally', 'deserve', 'their', 'jobs', 'and', 'learned', 'their', 'workers.'], ["I'll", 'keep', 'my', 'eyes.'], ['Would', 'you', 'be', 'willing', 'to', 'show', 'me', 'how', 'to', 'do', 'that?'], ['You', 'have', 'to', 'take', 'care', 'of', 'yourselves.'], ['He', 'looked', 'like', 'that.'], ['They', 'plan', 'to', 'make', 'a', 'party.'], ['I', 'really', 'like', 'being', 'with', 'you.'], ['I', 'found', 'a', 'large', 'flashlight', 'in', 'his', 'room.'], ['Take', 'it', 'on.'], ['Tom', 'wants', 'me', 'to', 'take', 'a', 'place.'], ['Everyone', 'looked', 'sick.'], ['They', 'were', 'one', 'of', 'the', 'one', 'after', 'another.'], ['The', 'early', 'bird', 'is', 'going', 'to', 'arrive', 'early.'], ['I', 'tripped.'], ['Music', 'is', 'for', 'me.'], ['She', 'had', 'lost', 'fun.'], ['If', 'you', 'want', 'to', 'stay', 'here,', 'you', 'are', 'welcome', 'to.'], ['Correct', 'the', 'underlined', 'address.'], ['Why', 'are', 'you', 'so', 'busy', 'today?'], ["You've", 'done', 'everything', 'that', 'possible.'], ['I', 'heard', 'someone', 'scream.'], ['I', 'know', 'that', 'Tom', 'is', 'a', 'little', 'rusty.'], ['You', "don't", 'have', 'a', 'team', 'number.'], ['He', 'refused', 'his', 'hand', 'to', 'hand.'], ['You', "don't", 'have', 'to', 'come.'], ['Take', 'this', 'up.'], ['What', 'Tom.'], ['Is', 'that', 'what', 'you', 'want?'], ['To', 'have', 'my', 'money,', 'I', "don't", 'have', 'to.'], ['Who', 'knows', 'all', 'that?'], ['Her', 'little', 'little', 'wife', 'kept', 'him', 'to', 'explain', 'it', 'to', 'him.'], ['Tom', 'gave', 'me', 'what', 'I', 'needed.'], ['Look', 'at', 'the', 'rules.'], ["I'm", 'almost', 'almost', 'left', 'at', 'home.'], ["You'll", 'have', 'to', 'drive.'], ['I', 'have', 'errands', 'to', 'do.'], ['I', "didn't", 'tell', 'Tom', 'what', 'Tom', 'told', 'me', 'what', 'I', 'told', 'you.'], ['Bad', 'changes', 'in', 'China', 'are', 'generally', 'in', 'China', 'the', "boss's", 'project.'], ['I', 'seldom', 'listen', 'to', 'him.'], ['It', 'takes', 'one', 'of', 'the', 'accidents.'], ['I', "don't", 'usually', 'eat', 'this', 'dogs', 'in', 'this', 'student.'], ['I', 'visited', 'six', 'months', 'ago.'], ['I', 'want', 'to', 'discuss', 'this', 'with', 'your', 'discuss', 'this', 'is.'], ['How', 'often', 'do', 'you', 'still', 'have', 'this?'], ['I', 'was', 'shaken.'], ['It', 'was', 'a', 'spot.'], ['How', 'did', 'you', 'rent', 'the', 'car?'], ['What', 'is', 'this', 'bird?'], ['Why', 'are', 'you', 'so', 'secretive?'], ['He', 'threw', 'me', 'the', 'hand.'], ["I'm", 'not', 'safe', 'to', 'be.'], ['What', 'do', 'you', 'do', 'for', 'your', 'life?'], ['I', 'plan', 'to', 'be', 'paid', 'for', 'a', 'long', 'or', 'to', 'continue.'], ['I', 'wish', 'you', 'would', 'not', 'go', 'without', 'me', 'without', 'me.'], ['The', 'cat', 'loves', 'the', 'children.'], ['Are', 'you', 'saying', 'that', "I'm", 'a', 'liar?'], ['The', 'coffee', 'was', 'so', 'hot', 'that', 'I', 'had', 'to', 'drink', 'that', 'way.'], ["That's", 'the', 'part', 'of', 'mine.'], ['Why', "didn't", 'you', 'call', 'me', 'last', 'night?'], ['Can', 'I', 'get', 'some', 'sleep?'], ["I'm", 'really', 'happy', 'for', 'you.'], ['I', 'have', 'no', 'insurance.'], ['The', 'road', 'curves', 'gently', 'towards', 'the', 'west.'], ['Tom', 'thinks', "I'm", 'being', 'spontaneous.'], ['Do', 'you', 'have', 'any', 'French', 'for?'], ['How', 'much', 'is', 'it?'], ['I', 'want', 'to', 'be', 'careful', 'to', 'find', 'out', 'of', 'being', 'a', 'liar.'], ['This', 'is', 'a', 'lot', 'more', 'fun', 'than', 'studying.'], ['Everyone', 'has', 'a', 'great', 'report', 'to', 'write', 'this', 'paper.'], ['I', 'want', 'it.'], ['She', 'gave', 'me', 'out.'], ['It', 'was', 'a', 'cold,', 'so', 'my', 'coat', 'hurts.'], ['I', "couldn't", 'see', 'the', 'face', 'of', 'his', 'death.'], ['The', 'need', 'needs', 'rain.'], ['I', 'want', 'your', 'opinion.'], ['He', 'is', 'running.'], ['He', 'was', 'scolded', 'by', 'his', 'success', 'by', 'his', 'behavior.'], ['How', 'was', 'the', 'sun?'], ['I', 'think', 'he', 'knows', 'what', 'he', 'is.'], ['You', 'must', 'be', 'careful.'], ['I', "shouldn't", 'have', 'kissed', 'Tom.'], ['Could', 'you', 'please', 'tell', 'me', 'the', 'train', 'to', 'the', 'station', 'to', 'go', 'to', 'the', 'station', 'to', 'go?'], ["I've", 'got', 'out', 'of', 'my', 'words.'], ['I', "didn't", 'believe', 'that', 'you', "haven't", 'told', 'me', 'this?'], ['I', 'feel', 'kind', 'of', 'myself.'], ['No', 'way!'], ["I'm", 'a', 'good', 'idea', 'and', 'good', 'lawyer.'], ['I', 'hope', "you're", 'happy.'], ['I', 'apologize', 'to', 'all', 'of', 'you.'], ['We', 'want', 'our', 'planet.'], ['I', 'was', 'totally', 'shocked.'], ['Is', 'this', 'happening?'], ["You've", 'gone', 'too', 'much', 'time.'], ['I', "don't", 'want', 'Tom', 'to', 'do', 'that.'], ['The', 'old', 'woman', 'Tom', 'is', 'the', 'old', 'woman', 'that', 'Mary', 'was', 'almost', 'because', 'he', 'was', 'Canadian.'], ['Thanks', 'for', 'your', 'help.'], ['I', 'have', 'to', 'do', 'something', 'else', 'first.'], ['You', 'have', 'no', 'one', 'to', 'push', 'this', 'button.'], ['It', 'is', 'difficult', 'to', 'meet', 'you.'], ['Tom', "doesn't", 'love', 'our', 'neighbors.'], ['The', 'truth', 'is', 'going', 'to', 'have', 'a', 'knife', 'for', 'the', 'next', 'day.'], ['My', 'daughter', 'is', 'going', 'to', 'give', 'me', 'a', 'lot.'], ['He', 'won', 'the', 'contest', 'last', 'week.'], ['He', 'gave', 'him', 'a', 'new', 'name.'], ['My', 'sister', 'gave', 'me', 'out', 'of', 'the', 'fact', 'that', 'the', 'show', 'was', 'going', 'on.'], ['I', 'thought', 'I', 'ran', 'as', 'fast', 'as', 'I', 'ran', 'as', 'fast', 'as', 'I', 'could.'], ["He's", 'addicted', 'to', 'hearing.'], ['I', "won't", 'be', 'here.'], ['My', 'mother', 'is', 'busy', 'cooking.'], ['Tom', 'kissed', 'Mary', 'when', 'Mary', 'went', 'out.'], ['She', 'has', 'a', 'quiet', 'accent.'], ['What', 'are', 'you', 'doing', 'in', 'the', 'library?'], ["I'm", 'sorry', 'you', 'got', 'dragged', 'behind', 'this.'], ['I', 'can', 'tear', 'you', 'apart', 'with', 'my', 'bare', 'hands.'], ['I', "don't", 'envy', 'you.'], ['Go', 'and', 'keep', 'you', 'touch.'], ['There', 'was', 'a', 'thousand', 'people.'], ['If', 'you', 'want', 'to', 'stay', 'here,', 'you', 'want.'], ['I', 'think', 'we', 'should', 'call', 'Tom.'], ['Can', 'you', 'wake', 'off?'], ["That's", 'not', 'yours.'], ['He', 'tried', 'to', 'open', 'the', 'door.'], ['Did', 'I', 'say', 'that?'], ["I'm", 'serious.'], ["You're", 'not', 'what', 'I', 'said.'], ['Have', 'you', 'read', 'the', 'poem', 'among', 'an', 'exam?'], ["We're", 'now', 'ready.'], ['Am', 'I', 'the', 'first', 'one?'], ['He', 'threw', 'the', 'ring', 'off', 'the', 'bed.'], ['I', 'put', 'on', 'the', 'check.'], ['Would', 'you', 'mind', 'if', 'I', 'work?'], ['In', 'the', 'summer,', 'of', 'the', 'people', 'are', 'on', 'the', 'sea.'], ['How', 'many', 'people', 'have', 'you', 'met', 'the', 'girlfriend?'], ['Do', 'you', 'think', 'that', 'Tom', 'is', 'innocent.'], ['Finally,', 'I', 'have', 'my', 'own', 'pride.'], ['Tom', 'was', 'under', 'the', 'shower.'], ['I', "don't", 'want', 'money.'], ['The', 'girl', 'seems', 'to', 'love', 'her', 'mother.'], ["There's", 'a', 'outside.'], ['I', "couldn't", 'tell', 'Tom', 'what', 'happened', 'to', 'you.'], ['We', "don't", 'need', 'anymore.'], ["Don't", 'make', 'sure', "you're", 'not', 'feel', 'around', 'it.'], ['She', 'left', 'the', 'hotel', 'for', 'Boston.'], ['"How', 'time', 'are', 'you', 'going', 'to', 'do', 'every', 'day', 'in', 'the', 'weather."'], ['I', "can't", 'believe', 'everything', 'that', 'happened.'], ['What', 'did', 'you', 'read', 'last', 'yesterday?'], ['I', 'bought', 'the', 'book', 'from', 'the', 'other', 'day.'], ['Tom', 'told', 'me', 'he', 'was', 'interested.'], ["She's", 'two', 'years', 'younger', 'than', 'you.'], ['I', 'could', 'not', 'help', 'you.'], ['We', 'were', 'winning.'], ['Your', 'wish', 'is', 'to', 'come', 'around', 'the', 'future.'], ['What', 'can', 'I', 'do', 'for', 'you?'], ["I'd", 'like', 'the', 'bill,', 'please.'], ['I', "don't", 'know', 'whether', 'he', 'is', 'dead', 'or', 'alive.'], ['Is', 'there', 'anything', 'else', 'around?'], ['He', 'was', 'in', 'the', 'room', 'at', 'that', 'room.'], ['Is', 'that', 'what', 'you', 'said?'], ['The', 'company,', 'blamed', 'years', 'not', 'to', 'be', 'replaced.'], ["You're", 'crafty.'], ['Does', 'anyone', 'have', 'a', 'cellphone?'], ['Were', 'you', 'successful?'], ["I'll", 'be', 'watching', 'you.'], ["I'm", 'dizzy.'], ["I'm", 'used', 'to', 'a', 'truck.'], ["Let's", 'sit', 'here', 'until', 'the', 'sun', 'comes', 'here.'], ['I', 'was', 'really', 'surprised.'], ["You're", 'scaring', 'me.'], ['Do', 'you', 'think', 'Tom', 'is', 'still', 'he?'], ['I', "don't", 'even', 'want', 'you', 'to', 'get', 'it.'], ['Is', 'it', 'yours?'], ['She', 'was', 'in', 'Paris.'], ['Please', 'get', 'off', 'the', 'light', 'of', 'ten'], ['She', 'suggested', 'that', 'I', 'give', 'it', 'to', 'him.'], ['Please', 'speak', 'more', 'loudly.'], ['I', 'forgot', 'to', 'tell', 'you', 'something.'], ['Everybody', 'knows.'], ['Why', "don't", 'you', 'take', 'a', 'room?'], ['Would', 'you', 'like', 'to', 'come', 'out', 'of', 'the', 'second', 'please?'], ['I', "can't", 'believe', 'they', 'used', 'to', 'be', 'much', 'children.'], ['I', 'am', 'very', 'happy', 'with', 'that.'], ['Why', "don't", 'you', 'talk', 'to', 'us', 'now?'], ['Do', 'you', 'have', 'anything', 'to', 'tell', 'me?'], ["I'm", 'sure', 'he', 'will', 'come.'], ['The', 'investigation', 'was', 'that', 'ship', 'if', 'he', 'was', 'a', 'ship.'], ['Before', 'going', 'going', 'to', 'be', 'able', 'to', 'keep', 'the', 'way', 'to', 'be', 'able', 'to', 'improve', 'the', 'medicine.'], ['You', 'have', 'to', 'take', 'the', 'boat.'], ['Tom', 'knows', 'this', 'is', 'the', 'truth.'], ["It's", 'hard', 'for', 'him', 'to', 'master', 'old', 'French', 'old', 'class.'], ['The', 'dog', 'bites.'], ['Are', 'you', 'proud', 'of', 'me?'], ['That', 'was', 'awfully', 'knees'], ['This', 'book', 'has', 'a', 'place', 'to', 'live.'], ["He's", 'a', 'good', 'cook.'], ["I'm", 'sure', 'I', "don't", 'want', 'to', 'do', 'that.'], ['Let', 'Tom', 'decide.'], ["Don't", 'worry.', "Everything'll", 'not', 'listen', 'to', 'me.'], ["You'd", 'better', 'check', 'this', 'out.'], ['His', 'aunt', 'got', 'up', 'a', 'bit', 'for', 'the', 'future.'], ['This', 'newspaper', 'is', 'free.'], ['How', 'are', 'you', 'going?'], ['I', 'hear', 'a', 'thick', 'at', 'the', 'top', 'of', 'the', 'sea.'], ['Tom', 'is', 'very', 'good-looking.'], ['Tom', 'bought', 'this', 'book.'], ['He', 'makes', 'him', 'understood', 'his', 'book.'], ['What', 'do', 'you', 'do', 'with', 'the', 'first', 'moment?'], ['I', 'have', 'a', 'toothache.'], ['This', 'computer', 'tastes', 'on', 'the', 'power.'], ['I', 'made', 'that', 'decision', 'made.'], ['Everyone', 'screamed.'], ['Are', 'you', 'being', 'back?'], ['He', 'opened', 'the', 'door.'], ['He', 'did', 'nothing', 'but', 'watch', 'anything', 'all', 'the', 'TV', 'yesterday.'], ['Those', 'houses', 'are', 'all', 'over', 'the', 'full', 'enemy.'], ['This', 'room', 'is', 'quite', 'large.'], ['She', 'is', 'happy', 'of', 'her', 'mother.'], ['The', 'abandoned', 'abandoned', 'the', 'two', 'seconds', 'after', 'front', 'of', 'the', 'window.'], ['I', 'have', 'fewer', 'books', 'than', 'you.'], ['He', 'is', 'having', 'a', 'weather', 'today.'], ['Have', 'you', 'been', 'here', 'when', 'you', 'are', 'here?'], ['Is', 'French', 'English', 'language', 'is', 'difficult?'], ['Forget', 'it.'], ['Tom', 'likes', 'sand.'], ['I', 'have', 'a', 'shoulder.'], ['I', 'rescued', 'you.'], ['He', 'is', 'a', 'comfortable', 'teacher.'], ['He', 'knows', 'that', "you're", 'lying.'], ['I', 'played', 'tennis.'], ["It's", 'time', 'to', 'come.'], ['I', 'just', 'want', 'to', 'be', 'my', 'ears.'], ['Tom', "isn't", 'afraid', 'of', 'dying.'], ['It', 'may', 'be', 'living', 'in', 'your', 'danger.'], ['Why', 'are', 'you', 'trying', 'to', 'me?'], ['The', 'old', 'man', 'missing.'], ['Can', 'you', 'tell', 'me', 'why', 'you', 'ever', 'remember?'], ['That', 'was', 'the', 'best', 'thing', 'that', 'ever', 'happened', 'to', 'me.'], ['This', 'is', 'legal.'], ['Have', 'you', 'ever', 'ridden', 'a', 'mule?'], ['He', 'lives', 'in', 'a', 'high', 'school', 'neighborhood.'], ['I', 'have', 'no', 'choice', 'but', 'to', 'do', 'what', 'they', 'made.'], ['I', 'feel', 'like', 'things', 'that', "I've", 'finished.'], ['Bring', 'me', 'some', 'water.'], ['I', "didn't", 'even', 'remember.'], ['I', 'made', 'a', 'spell', 'of', 'cake.'], ['We', 'still', 'have', 'a', 'lot', 'to', 'do.'], ['Dogs', 'are', 'cute.'], ["I'm", 'going', 'to', 'agree', 'with', 'your', 'opinion.'], ['I', 'really', 'do', 'really', 'like', 'you.'], ['Half', 'of', 'the', 'office', 'half', 'a', 'week', 'off.'], ["It's", 'a', 'pity', 'that', 'you', "can't", 'come.'], ['I', 'often', 'think', 'about', 'it.'], ['I', 'have', 'to', 'finish', 'my', 'homework', 'before', 'tomorrow.'], ['I', "didn't", 'know', 'you', 'needed', 'to', 'do', 'that.'], ["She's", 'looking', 'at', 'the', 'money', 'you', 'tell', 'me', 'all', 'the', 'moment.'], ['I', 'have', 'gone', 'busy.'], ['We', 'all', 'enjoyed', 'all', 'the', 'documents.'], ['Tom', 'can', 'swim', 'as', 'fast', 'as', 'Mary.'], ['Tom', 'lied.'], ['She', "doesn't", 'play', 'the', 'guitar', 'very', 'well.'], ['The', 'one', 'of', 'him', 'is', 'in', 'love', 'with', 'him.'], ["It's", 'not', 'here.'], ['The', 'concert', 'was', 'a', 'dream.'], ['I', "don't", 'have', 'any', 'questions.'], ['Tom', 'poured', 'more', 'water', 'in', 'his', 'glass.'], ['She', 'filled', 'out', 'of', 'the', 'water.'], ['You', 'need', 'to', 'stop', 'drinking.'], ['The', 'door', 'is', 'closed.'], ["That's", 'enough.'], ['I', "didn't", 'steal', 'it.'], ['I', 'can', 'survive.'], ['A', 'man', 'broke', 'down', 'and', 'bought', 'a', 'new', 'one.'], ['I', "wasn't", 'happy', 'to', 'get', 'there', 'so', 'many', 'here.'], ['The', 'President', 'is', 'always', 'hard', 'in', 'the', 'middle', 'of', 'the', 'room.'], ['I', 'only', 'hope', "I'm", 'not', 'too', 'late.'], ["That's", 'not', 'what', 'he', 'said.', 'but', 'he', 'said.'], ['I', 'agree', 'with', 'everyone.'], ['They', "don't", 'know', 'that', "I'm", 'Japanese.'], ["I'd", 'like', 'to', 'come', 'home', 'tonight.'], ["It's", 'not', 'the', 'answer.'], ['The', 'day', 'is', 'running', 'up', 'with', 'a', 'day.'], ['Is', 'this', 'normal?'], ['Can', 'you', 'tell', 'me', 'a', 'car', 'so', 'car?'], ['This', 'is', 'my', 'eyes', 'and', 'I', 'feel', 'like', 'it.'], ['You', "don't", 'miss', 'the', 'end', 'of', 'the', 'subject.'], ['Are', 'your', 'hands', 'clean?'], ['I', "don't", 'have', 'much', 'money', 'as', 'you', 'have.'], ['To', 'tell', 'the', 'truth,', "I'm", 'not', 'there.'], ['I', 'know', 'Tom', 'is', 'a', 'national', 'guy.'], ['Sorry', 'to', 'come', 'so', 'late.'], ['Tom', 'talked', 'all', 'of', 'the', 'night.'], ['Can', 'I', 'see', 'your', "driver's", 'license?'], ['Have', 'you', 'met', 'her', 'new', 'dress?'], ['I', 'have', 'to', 'tighten', 'these', 'people.'], ['We', 'asked', 'Tom', 'what', 'he', 'was', 'going', 'to', 'buy', 'it.'], ['Is', 'there', 'there', 'any', 'other', 'day?'], ['I', "haven't", 'met', 'Tom', 'recently.'], ['Bad', 'weather', 'told', 'us', 'about', 'the', 'weather.'], ['I', 'live', 'in', 'French,', 'and', 'France.'], ['Tom', 'speaks', 'French', 'as', 'well', 'as', 'me.'], ['Tom', 'is', 'now', 'in', 'jail.'], ['The', 'children', 'is', 'in', 'the', 'corner.'], ['When', 'did', 'you', 'start', 'writing', 'songs?'], ["I'd", 'like', 'to', 'know', 'that', 'my', 'uncle', 'will', 'come', 'out', 'of', 'ten.'], ['Tom', 'stayed', 'at', 'home', 'with', 'her.'], ['What', 'does', 'that', 'mean,', "don't", 'you?'], ['I', 'fell', 'on', 'her', 'by', 'chance.'], ['I', 'think', "it's", 'time', 'for', 'me', 'to', 'leave.'], ['I', 'had', 'a', 'headache,', 'but', 'I', "didn't", 'have', 'to', 'do', 'it.'], ['They', 'did', 'not', 'care.'], ['I', "don't", 'think', 'Tom', 'is', 'a', 'racist.'], ['When', 'will', 'you', 'get', 'the', 'shoes?'], ['We', 'can', 'trust', 'them.'], ["Tom's", 'window', 'was', 'open.'], ['This', 'one', 'is', 'for', 'me.'], ['The', 'weather', 'are', 'not', 'too', 'good.'], ['What', 'happened', 'on', 'the', 'meeting?'], ["I'm", 'sure', "I'm", 'going', 'to', 'have', 'this.'], ['Do', 'you', 'like', 'studying?'], ['Tom', 'threw', 'the', 'old', 'book', 'at', 'the', 'end', 'of', 'the', 'attic.'], ['I', 'thought', "you'd", 'eventually', 'want', 'to', 'get', 'some', 'trouble.'], ['Why', "don't", 'you', 'just', 'keep', 'me', 'up?'], ["You're", 'in', 'big', 'now.'], ['Let', 'me', 'me!'], ["What's", 'the', 'matter', 'with', 'this?'], ['Are', 'these', 'your', 'friends?'], ["I'm", 'blind.'], ['I', 'left', 'you.'], ['We', 'have', 'helped', 'the', 'ability', 'to', 'control', 'the', 'guitar.'], ['I', 'miss', 'you', 'very', 'much.'], ['I', 'know', 'that', 'Tom', "won't", 'tell', 'Mary', 'that.'], ["I'd", 'be', 'happy', 'to', 'hear', 'you.'], ['Have', 'you', 'had', 'a', 'kind', 'of', 'holiday?'], ['You', "can't", 'have', 'both', 'of', 'them.'], ['I', 'think', 'we', 'have', 'enough', 'time.'], ['I', 'want', 'you', 'to', 'call', 'me.'], ['He', 'never', 'told', 'anyone.'], ['Everyone', 'seems', 'like', 'a', 'good', 'time.'], ['I', 'suggest', 'you', 'not', 'drink', 'harder.'], ['You', 'have', 'a', 'mean', 'worker.'], ['I', 'thought', "you'd", 'want', 'to', 'come', 'back.'], ["Let's", 'go', 'with', 'this', 'one.'], ["I'm", 'glad', 'to', 'see', 'you.'], ['The', 'ship', 'is', 'in', 'the', 'second', 'business', 'for', 'the', 'committee.'], ['I', 'do', 'it.'], ['He', 'is', 'afraid', 'of', 'snakes.'], ['I', 'know', "you're", 'not', 'comfortable.'], ['When', 'he', 'was', 'all', 'the', 'sky,', 'he', 'was', 'completely', 'out', 'of', 'trouble.'], ["That's", 'not', 'what', 'I', 'meant', 'to', 'say.'], ["We're", 'going', 'to', 'have', 'loads', 'of', 'you.'], ['Can', 'you', 'answer', 'this', 'question?'], ["You're", 'not', 'permitted', 'to', 'bring', 'dogs', 'in', 'this', 'building.'], ['Tom', 'ordered', 'that.'], ['They', 'clung', 'together', 'for', 'warmth.'], ["What's", 'that', 'what', 'you', "don't", 'know', 'what', 'it', 'is.'], ['I', "don't", 'think', 'Tom', 'likes', 'adventure.'], ['The', 'dogs', 'kept', 'all', 'the', 'night.'], ['How', 'long', 'will', 'it', 'take', 'care', 'of', 'the', 'pain?'], ['Everything', 'was', 'all', 'day', 'long', 'yesterday.'], ["Isn't", 'that', 'for', 'you?'], ['She', 'is', 'here.'], ['I', 'thought', "I'd", 'never', 'see', 'you', 'again.'], ['My', 'dog', 'is', 'a', 'cat.'], ['Behave', 'like', 'a', 'man.'], ['You', "won't", 'stay,', 'if', 'you', 'smoke?'], ['She', 'was', 'bored', 'with', 'her', 'money.'], ['When', 'do', 'you', 'want', 'to', 'eat?'], ['What', 'does', 'it', 'look', 'like?'], ['I', "haven't", 'seen', 'you', 'in', 'weeks.'], ["I'm", 'not', 'going', 'to', 'help', 'working.'], ['Look', 'at', 'the', 'park', 'closed.'], ['Is', 'that', 'not', 'going', 'to', 'call', 'me?'], ["I'll", 'wait', 'here', 'until', 'he', 'comes', 'back.'], ['Come', 'help', 'me.'], ['Give', 'me', "Tom's", 'cousin.'], ['Tom', 'told', 'me', 'you', 'needed', 'some', 'money.'], ["We're", 'going', 'to', 'work', 'together.'], ['Take', 'her', 'to', 'get', 'started', 'down.'], ['What', 'else', 'can', 'you', 'do?'], ['Swimming', 'is', 'great.'], ['People', 'are', 'going', 'to', 'have', 'a', 'look', 'bored.'], ['Since', 'the', 'bus', 'was', 'late,', 'I', 'was', 'going', 'by', 'taxi.'], ['I', 'love', 'being', 'alone.'], ['What', 'would', 'I', 'do', 'without', 'me?'], ["I've", 'had', 'enough', 'of', 'it.'], ['You', 'must', 'not', 'touch', 'the', 'paintings.'], ['Tom,', 'my', 'decision', 'understands.'], ['I', 'hear', 'that', 'Tom', "doesn't", 'speak', 'French.'], ['Tom', "didn't", 'come', 'to', 'work', 'yesterday.'], ['He', 'advised', 'him', 'to', 'do', 'it.'], ["I'm", 'not', 'going', 'to', 'pay', 'for', 'this.'], ['I', 'thought', "you'd", 'never', 'come', 'here.'], ['He', 'is', 'not', 'always', 'late.'], ['I', 'feel', 'a', 'good', 'relationship.'], ['Please', 'smile.'], ["I'm", 'glad', 'you', 'could', 'come', 'to', 'the', 'party.'], ['What', 'are', 'they', 'afraid', 'of?'], ['Do', 'you', 'have', 'any', 'beer?'], ['This', 'desk', 'is', 'too', 'small', 'for', 'me', 'to', 'carry.'], ['He', 'is', 'very', 'well.'], ["I'm", 'going', 'to', 'wash', 'my', 'hands.'], ['He', 'is', 'a', 'good', 'camera.'], ['I', "don't", 'have', 'a', 'problem.'], ['The', 'room', 'is', 'at', 'the', 'second', 'floor.'], ['I', 'know', 'your', 'age.'], ['Tom', 'ignored', "Mary's", 'advice.'], ['Everyone', 'looked', 'relieved.'], ['I', 'agree', 'with', 'him.'], ['What', 'country', 'are', 'you', 'in', 'Boston?'], ['I', 'think', 'this', 'book', 'is', 'not', 'that', 'interesting.'], ['He', 'is', 'the', 'fastest', 'of', 'the', 'fastest', 'of', 'the', 'class.'], ['We', 'both', 'want', 'to', 'get', 'it.'], ['Are', 'you', 'eating', 'anything', 'to', 'eat?'], ['They', 'are', 'the', 'answers', 'to', 'the', 'sky.'], ["Where's", 'the', 'toilet?'], ['I', 'remember', 'about', 'my', 'happy', 'happy.'], ['When', 'did', 'it', 'rain', 'for', 'her?'], ['I', 'had', 'no', 'more', 'time', 'to', 'quit', 'the', 'moment.'], ['Please', 'be', 'careful.'], ["Where's", 'the', 'nearest', 'station?'], ['The', 'boy', 'knows', 'his', 'name', 'from', 'his', 'first', 'name.'], ['Do', 'you', 'know', 'what', 'I', 'want', 'to', 'know?'], ['I', 'like', 'chocolate', 'chocolate', 'cake.'], ['Where', 'can', 'I', 'try', 'that?'], ['I', 'have', 'a', 'table.'], ['Try', 'to', 'make', 'it.'], ['He', 'lost', 'his', 'best', 'but', 'he', 'lost', 'his', 'help.'], ['A', 'good', 'people', 'wish', 'to', 'live', 'here.'], ['This', 'is', 'for', 'me', 'to', 'sober', 'up.'], ['Anyone', 'wants', 'to', 'take', 'a', 'walk', 'condition.'], ['A', 'expensive', 'tie', 'is', 'impossible', 'for', 'a', 'tie', 'to', 'tie', 'a', 'washing', 'machine.'], ['This', 'problem', 'is', 'difficult', 'to', 'solve.'], ['How', 'much', 'is', 'the', 'ability', 'to', 'pay', 'for', 'me?'], ['I', 'know', 'they', 'are', 'about', 'each', 'other.'], ["Where's", 'the', 'nearest', 'bathroom?'], ['After', 'any', 'company', 'that', 'he', 'would', 'never', 'listen', 'to', 'me.'], ['You', 'have', 'had', 'to', 'hear.'], ['I', 'like', 'classical', 'music', 'classical', 'music.'], ["I've", 'given', "Tom's", 'phone', 'with', 'Tom.'], ['Quit', 'acting', 'like', 'a', 'baby.'], ["What's", 'the', 'room', 'around', 'in', 'the', 'middle', 'of', 'the', 'river?'], ["They're", 'fixing', 'the', 'wall', 'to', 'protect', 'the', 'teacher.'], ['See', 'what', 'I', 'mean?'], ['I', 'told', 'you', 'I', 'have', 'a', 'girlfriend.'], ['She', 'began', 'to', 'cry.'], ['I', 'was', 'injured', 'and', 'excited.'], ['That', 'should', 'be', 'fun.'], ['I', 'thought', 'I', 'could', 'wait', 'a', 'little', 'longer.'], ['Please', 'let', 'me', 'enter', 'the', 'room.'], ['Fire', 'is', 'dangerous.'], ['I', 'hope', 'it', 'will', 'be', 'fine', 'tomorrow.'], ['I', 'wish', 'they', 'wanted', 'to', 'know', 'anything.'], ["That's", 'what', 'I', 'expected.'], ["I'd", 'like', 'you', 'to', 'ask', 'for', 'my', 'question.'], ['Tom', 'certainly', 'needs', 'to', 'be', 'busy.'], ['It', 'is', 'impossible', 'to', 'get', 'a', 'dentist', 'of', 'charges.'], ['I', 'want', 'to', 'hear', 'your', 'opinion.'], ['She', 'is', 'afraid', 'of', 'snakes.'], ['I', 'want', 'your', 'name', 'and', 'badge', 'name.'], ['I', 'told', 'him', 'to', 'her.'], ['Tom', 'is', 'going', 'to', 'have', 'a', 'walk.'], ['What', 'are', 'you', 'all', 'doing?'], ['Where', 'do', 'you', 'want', 'these', 'suitcases?'], ["Don't", 'look', 'so', 'suspicious.'], ['Why', 'are', 'you', 'wearing', 'a', 'watch?'], ['Please', 'say', 'yes.'], ['Tom', 'asked', 'Mary', 'to', 'put', 'up', 'the', 'land.'], ['He', 'told', 'me', 'that', 'he', 'can', 'shower.'], ['He', 'is', 'finally', 'over.'], ['Man', 'is', 'the', 'man', 'of', 'a', 'good', 'man', 'to', 'the', 'man.'], ['You', 'need', 'to', 'do', 'the', 'difficulties.'], ['He', 'bought', 'a', 'bottle', 'of', 'wine.'], ['Did', 'you', 'hear', 'me?'], ['Do', 'you', 'want', 'to', 'eat', 'this?'], ['They', 'were', 'all', 'friends.'], ['I', "can't", 'play', 'tennis', 'tennis.'], ['This', 'is', 'the', 'kind', 'of', 'work', 'that', "I'm", 'done.'], ['Do', 'you', 'have', 'any', 'all-day', 'tours?'], ['It', 'sounded', 'like', 'a', 'gunshot.'], ['Are', 'you', 'still', 'at', 'home?'], ['He', 'is', 'a', 'relatively', 'worker.'], ["We're", 'lost.'], ["I'm", 'not', 'surprised', 'you', "don't", 'know', 'the', 'answer.'], ['He', 'is', 'proud', 'of', 'his', 'business.'], ['Do', 'you', 'have', 'a', 'stapler', 'Why'], ['I', 'took', 'care', 'of', 'that.'], ['I', "don't", 'know', 'why', 'I', 'have', 'to', 'do', 'this.'], ['I', 'pay', 'two', 'newspapers.'], ['It', 'is', 'a', 'good', 'point.'], ['I', 'hope', "you're", 'not', 'going', 'to', 'do', 'this', 'today.'], ['Do', 'you', 'want', 'to', 'help', 'it?'], ['The', 'baby', 'is', 'going', 'out', 'of', 'breath.'], ['Look', 'in', 'the', 'dictionary.'], ['All', 'of', 'his', 'son', 'in', 'the', 'English', 'in', 'age', 'in', 'Boston.'], ['I', 'will', 'not', 'go', 'with', 'you', 'when', 'you', 'go', 'with', 'me.'], ['young', 'is', 'my', 'son', 'that', 'he', 'is', 'going', 'to', 'be', 'in', 'my', 'school.'], ['The', 'earth', 'is', 'a', 'lot', 'larger', 'than', 'the', 'moon.'], ['Stop', 'harassing', 'me.'], ['Some', 'people', 'can', 'read', 'the', 'box', 'of', 'time.'], ['You', 'must', 'be', 'at', 'the', 'station', 'at', 'the', 'station', 'at', 'seven.'], ['I', 'will', 'tell', 'him', 'what', 'he', 'comes', 'next', 'to.'], ['Tom', 'tried', 'to', 'control', 'cancer.'], ['You', 'have', 'a', 'good', 'reason', 'to', 'be', 'angry.'], ['I', "didn't", 'feel', 'like', 'driving', 'but', 'I', 'was', 'the', 'habit', 'of', 'a', 'day.'], ['He', 'was', 'distracted', 'by', 'the', 'beautiful', 'girl.'], ['I', "can't", 'put', 'up', 'without', 'a', 'dirty', 'hat.'], ['Tom', 'wanted', 'to', 'be', 'able', 'to', 'say', 'so.'], ['It', 'is', 'getting', 'warmer', 'day', 'day', 'in', 'day.'], ['I', "don't", 'want', 'to', 'let', 'you', 'go.'], ["I'm", 'glad', 'you', 'brought', 'that', 'up.'], ['Would', 'you', 'please', 'help', 'me', 'if', 'I', 'smoke?'], ['What', 'do', 'you', 'know', 'him?'], ['I', 'stayed', 'at', 'a', 'cheap', 'hotel.'], ["You'll", 'probably', 'not', 'think', 'this.'], ["You're", 'not', 'allowed', 'to', 'swim', 'here.'], ['Tom', 'went', 'to', "Mary's", 'house', 'with', 'Mary.'], ['I', 'think', 'you', 'need', 'a', 'new', 'pair', 'of', 'shoes.'], ['This', 'is', 'the', 'most', 'important', 'thing', "I've", 'ever', 'done.'], ['People', 'can', 'see', 'anything', 'but', 'I', "don't", 'know', 'anything', 'but', 'I', "don't", 'know', 'any', 'of', 'my', 'mind', 'all', 'my', 'dreams.'], ["I'll", 'keep', 'it', 'out.'], ["We're", 'not', 'Americans.'], ['Hand', 'in', 'the', 'light', 'for', 'us.'], ['Practice', 'is', 'the', 'best', 'man', 'for', 'us', 'to', 'win.'], ['The', 'lion', 'is', 'the', 'king', 'of', 'the', 'beasts.'], ["We're", 'all', 'crazy.'], ['The', 'answers', 'is', 'on', 'the', 'west.'], ['I', 'see', 'what', "you're", 'doing.'], ['I', "don't", 'work', 'for', 'it.'], ['Now,', 'he', 'is', 'a', 'new', 'job.'], ['He', 'drives', 'a', 'hybrid.'], ["That's", 'my', 'favorite', 'subject.'], ['His', 'pictures', 'is', 'very', 'short.'], ['I', "can't", 'wait', 'to', 'meet', 'him.'], ['I', "don't", 'think', 'Tom', 'wants', 'to', 'know.'], ['My', 'mother', 'made', 'me', 'a', 'sweater.'], ['I', "didn't", 'say', 'you', 'were', 'crazy.'], ['Tom', 'is', 'trying', 'to', 'sell', 'his', 'old', 'car.'], ['Take', 'the', 'job.'], ["I'm", 'looking', 'for', 'my', 'key.'], ['Come', 'in.'], ['I', 'never', 'really', 'thought', 'my', 'father.'], ['There', 'were', 'no', 'other', 'meeting.'], ['Tom', 'likes', 'traveling', 'alone.'], ['I', "can't", 'tell', 'you', 'how', 'happy', 'I', 'am', 'that', "you've", 'come', 'to', 'visit', 'us.'], ['He', 'can', 'speak', 'French,', 'too.'], ['I', "didn't", 'want', 'to', 'bug', 'you.'], ['Would', 'you', 'like', 'another', 'beer?'], ['I', 'feel', 'bad', 'about', 'it.'], ['We', 'must', 'make', 'a', 'decision.'], ['She', 'wept', 'him.'], ['We', 'asked', 'a', 'question', 'every', 'question.'], ["I've", 'asked', 'Tom', 'to', 'go', 'to', 'Boston', 'with', 'Tom.'], ['We', 'have', 'to', 'do', 'this', 'to', 'never', 'do', 'that.'], ["I'd", 'like', 'to', 'ask', 'you', 'a', 'few', 'questions.'], ['I', 'feel', 'bad', 'about', 'it.'], ['Promise', 'not', 'tell', 'me', 'that', 'you', "don't", 'drive.'], ['Why', 'are', 'you', 'so', 'upset?'], ['Eat', 'your', 'maid.'], ['I', 'worked', 'so', 'hard', 'hard', 'but', 'I', 'could', 'be', 'very', 'tired.'], ['He', 'wrote', 'quickly.'], ['I', 'have', 'some', 'cookies.', 'for', 'you.'], ['Please', 'close', 'the', 'door.'], ['My', 'parents', 'died', 'in', 'the', 'mountains.'], ['Allow', 'me', 'to', 'drink.'], ['Everything', 'starting', 'to', 'rain.'], ['My', 'uncle', 'was', 'going', 'to', 'be', 'ninety.'], ['That', 'applies', 'to', 'you.'], ['She', 'went', 'to', 'the', 'center', 'of', 'the', 'disaster.'], ['May', 'I', 'ask', 'why?'], ['Where', 'did', 'he', 'learn', 'this?'], ["I'll", 'give', 'up.'], ['No', 'one', 'works.'], ['I', 'wanted', 'to', 'tell', 'you', 'something', 'I', 'wanted', 'to', 'you.'], ['They', 'tried', 'a', 'third', 'time.'], ['Tom', 'was', 'fired.'], ["I'm", 'not', 'your', 'maid.'], ['Take', 'a', 'rest.'], ["That's", 'the', 'best', 'we', 'have.'], ['Where', 'did', 'you', 'get', 'that', 'dress?'], ["Let's", 'watch', 'this', 'video.'], ["That's", 'really', 'very', 'good.'], ['Do', 'you', 'have', 'any', 'idea', 'what', 'happened?'], ['The', 'room', 'was', 'cold.'], ['How', 'do', 'I', 'know', 'that', "you're", 'not', 'trying', 'to', 'try', 'it?'], ["They're", 'really', 'anxious.'], ['I', 'wonder', 'who', 'that', 'lady', 'means.'], ['Bring', 'me', 'my', 'hat.'], ['The', 'ice', 'of', 'the', 'company', 'is', 'likely', 'to', 'succeed.'], ['I', 'appreciate', 'your', 'family', 'that', 'has', 'a', 'black', 'friend.'], ['I', "can't", 'win.'], ['I', 'made', 'a', 'big', 'statement.'], ["That's", 'what', 'Tom', 'told', 'me.'], ['I', 'hope', 'he', 'will', 'accept', 'that.'], ['You', 'speak', 'French', 'very', 'well.'], ['Why', "don't", 'you', 'go?'], ['Tom', 'is', 'studying', 'French', 'hard', 'to', 'improve', 'his', 'French.'], ["You're", 'not', 'being', 'rational.'], ['She', 'advised', 'him', 'to', 'stop', 'smoking.'], ['Staying', 'your', 'sister', 'is', 'at', 'home', 'to', 'tip'], ['She', 'left', 'her', 'room', 'with', 'a', 'while.'], ['Do', 'you', 'want', 'me', 'to', 'call', 'your', 'picture?'], ['If', 'you', 'want', 'to', 'do', 'a', 'waste', 'of', 'work', 'you', 'want', 'to', 'do', 'the', 'necessary', 'time.'], ['The', 'soldiers', 'began', 'to', 'an', 'expensive', 'day.'], ["I'm", 'sure', "you're", 'having', 'a', 'good', 'job.'], ['This', 'suitcase', 'is', 'too', 'heavy', 'for', 'you.'], ['They', 'was', 'better', 'than', 'the', 'best', 'of', 'the', 'best', 'car.'], ["You're", 'a', 'great', 'ill.'], ['The', 'police', 'accused', 'the', 'scene', 'of', 'a', 'few', 'of', 'the', 'accident.'], ['It', 'was', 'broken.'], ['Money', "doesn't", 'grow', 'on', 'trees.'], ['It', 'looks', 'like', "they're", 'the', 'other', 'people.'], ['I', 'am', 'going', 'to', 'walk', 'to', 'school.'], ['Can', 'we', 'all', 'go', 'now?'], ['I', 'think', "it's", 'not', 'quite', 'anything', 'to', 'do,', 'but', "I'm", 'not', 'sure.'], ["Don't", 'try', 'to', 'read', 'too', 'much', 'of', 'the', 'problem.'], ['They', 'were', 'so', 'busy', 'that', 'they', 'were', 'so', 'humiliated.'], ['His', 'husband', 'is', 'in', 'three', 'years', 'for', 'three.'], ['Maybe', "you'd", 'be', 'a', 'few', 'minutes', 'late.'], ['Life', 'is', 'almost', 'not', 'as', 'big', 'as', 'he', 'is.'], ['He', 'left', 'his', 'gun', 'for', 'without', 'a', 'gun.'], ['Tom', "doesn't", 'know', 'what', "Mary's", 'family', 'left.'], ['Tom', 'pulled', 'his', 'paper', 'against', 'the', 'wall.'], ['I', 'suggest', 'we', 'get', 'out', 'of', 'their', 'clothes.'], ['They', 'clung', 'out', 'of', 'their', 'hand', 'to', 'be', 'seen.'], ['I', 'think', 'Tom', 'can', 'do', 'that.'], ['He', 'admitted', 'that', 'he', 'had', 'been', 'teaching', 'his', 'age.'], ["It's", 'all', 'the', 'point.'], ['A', 'good', 'idea', 'is', 'a', 'nice', 'way', 'of', 'tea,', 'as', 'a', 'nice', 'cold.'], ['I', 'missed', 'you', 'so', 'much.'], ['Why', 'did', 'you', 'stop', 'them?'], ['Do', 'you', 'have', 'a', 'box', 'in', 'your', 'arm', 'for', 'a', 'walk?'], ['Where', 'would', 'you', 'like', 'to', 'go?'], ['This', 'is', 'a', 'very', 'interesting', 'policy.'], ['By', 'the', 'weather', 'may', 'have', 'come', 'from', 'over', 'here.'], ['She', 'bought', 'a', 'sweater.'], ['I', 'look', 'forward', 'to', 'you', 'tonight.'], ['Tell', 'me', 'the', 'reason', 'you', 'were', 'absent', 'from', 'school', 'yesterday.'], ['There', 'is', 'a', 'great', 'need', 'for', 'two', 'languages.'], ['I', 'miss', 'the', 'myself.'], ['I', "can't", 'believe', 'I', 'even', 'told', 'me', 'there.'], ['He', 'decided', 'to', 'go.'], ['The', 'plants', 'will', 'come.'], ["We're", 'married.'], ['You', 'should', 'listen', 'to', 'me.'], ['need', 'be', 'needed.'], ['All', 'you', 'have', 'to', 'do', 'is', 'trust', 'me.'], ["Let's", 'get', 'out', 'of', 'the', 'fireplace.'], ['She', "couldn't", 'convince', 'him', 'to', 'accept', 'a', 'personal', 'face.'], ['You', 'used', 'to', 'be', 'safe', 'here.'], ['Our', 'food', 'was', 'out', 'of', 'the', 'small', 'response.'], ['Is', 'it', 'OK', 'to', 'go', 'to', 'the', 'airport?'], ["You've", 'underestimated'], ["You're", 'very', 'sophisticated.'], ['Your', 'room', 'is', 'really', 'clean.'], ['They', 'are', 'working', 'for', 'me.'], ['They', 'are', 'the', 'last', 'week', 'I', 'bought', 'last', 'week.'], ["It's", 'already', 'dark.'], ['I', "won't", 'go', 'to', 'school', 'tomorrow.'], ['I', 'have', 'absolutely', 'no', 'things.'], ['I', 'have', 'no', 'idea', 'what', "I've", 'been', 'told', 'all', 'I', 'were', 'injured.'], ['I', 'was', 'married', 'to', 'this', 'time.'], ['Can', 'you', 'save', 'enough', 'money', 'for', 'the', 'money?'], ['How', 'much', 'is', 'it?'], ['You', 'may', 'have', 'this.'], ['You', 'work', 'hard.'], ['I', 'could', 'tell', 'you', 'who', 'did', 'it.'], ['The', 'fuse', 'is', 'blown.'], ['He', 'loves', 'to', 'travel.'], ['Give', 'me', 'the', 'sugar,', 'please.'], ['Could', 'you', 'go', 'to', 'the', 'supermarket', 'and', 'go', 'to', 'school.'], ["They're", 'all', 'missing.'], ['You', 'have', 'a', 'lot', 'of', 'nerve.'], ['I', 'really', 'wish', 'he', 'was', 'really', 'painted', 'that', 'picture.'], ["You're", 'not', 'so', 'mean?'], ['Father', 'is', 'in', 'a', 'business', 'business.'], ['Mary', 'called', 'for', 'an', 'hour', 'when', 'I', 'was', 'an', 'hour', 'for', 'a', 'walk.'], ['I', 'always', 'believe', 'it.'], ['The', 'company', 'has', 'the', 'company', 'of', 'their', 'political', 'finger.'], ['They', 'gave', 'us', 'the', 'president.'], ['It', "doesn't", 'make', 'a', 'nice', 'camera', "doesn't", 'you?'], ['Is', 'there', 'a', 'proverb', 'proverb', 'in', 'Japan?'], ['Her', 'idea', 'is', 'better', 'than', 'the', 'best', 'policy.'], ["They're", 'going', 'to', 'grow', 'up.'], ['I', 'think', 'this', 'translation', 'is', 'correct.'], ['I', 'may', 'have', 'to', 'translate', 'me', 'to', 'bed.'], ['He', 'has', 'only', 'a', 'Japanese', 'Japanese', 'exist.'], ['He', 'is', 'running', 'quickly.'], ['She', 'backed', 'up', 'at', 'the', 'end', 'of', 'the', 'evening.'], ['She', 'has', 'some', 'little', 'books.'], ['Everyone', 'makes', 'mistakes.'], ["Let's", 'go', 'to', 'a', 'walk', 'for', 'once.'], ['Would', 'you', 'like', 'me', 'to', 'go?'], ['I', 'suppose', 'I', "won't", 'tell', 'anybody.'], ['I', 'had', 'a', 'slight', 'appointment.'], ['I', 'just', 'got', 'a', 'promotion.'], ['How', 'long', 'have', 'you', 'had', 'a', 'wedding?'], ['It', 'was', 'just', 'a', 'joke.'], ['Sleep', 'is', 'going', 'to', 'rain', 'this', 'evening.'], ['I', "can't", 'believe', "you're", 'going', 'to', 'believe', 'it.'], ['I', 'just', 'wanted', 'to', 'tell', 'you', 'how', 'pleased', 'I', 'am.'], ['You', "shouldn't", 'let', 'you', 'find', 'it.'], ['What', 'do', 'you', 'need?'], ["Don't", 'just', "don't", 'understand.'], ['Do', 'you', 'know', 'how', 'that', "that's", 'significant?'], ["It's", 'worth', 'now.'], ['Do', 'you', 'think', "I'm", 'ugly?'], ['Does', 'she', 'have', 'a', 'boyfriend?'], ["Don't", 'kid', 'me.'], ['Stand', 'up', 'straight.'], ['Are', 'you', 'finished', 'with', 'you?'], ['Maybe', 'Tom', 'can', 'win.'], ['Mom,', 'anybody', 'else', 'can', 'you?'], ["I'm", 'going', 'to', 'protect', 'Tom.'], ['I', 'think', "it's", 'too', 'fat.'], ["They're", 'different.'], ['The', 'police', 'officer', 'aimed', 'at', 'the', 'suspect.'], ['Eat', 'your', 'soup', 'before', 'you', 'say.'], ['Tell', 'us', 'what', 'happened.'], ["I'm", 'the', 'one', 'who', 'met', 'him.'], ['We', 'were', 'bored.'], ['Is', 'it', 'all', 'right?'], ['Tom', 'is', 'eating.'], ['He', 'did', 'what', 'I', 'wanted', 'to', 'do.'], ['Things', 'are', 'all', 'the', 'same.'], ['Even', 'Tom', 'said', 'such', 'a', 'stupid', 'word', 'to', 'say', 'such', 'a', 'thing.'], ['How', 'did', 'you', 'answer', 'Tom?'], ["I'm", 'glad', "you're", 'here', 'to', 'me.'], ['When', 'did', 'you', 'learn', 'how', 'to', 'swim?'], ["Aren't", 'you', 'hot?'], ['Do', 'you', 'have', 'a', 'passport'], ['Tom', 'put', 'his', 'bag', 'on', 'his', 'back.'], ["I'd", 'like', 'to', 'thank', 'you', 'for', 'all', 'for', 'your', 'help.'], ['"I', "don't", 'like', 'sports,', 'and', "don't", 'do', 'I."'], ['Tom', 'opened', 'the', 'window', 'closed.'], ['Where', 'is', 'the', 'oldest', 'in', 'front', 'of', 'the', 'law.'], ['I', 'thought', "you'd", 'gone', 'and', 'left', 'me.'], ['I', 'know', 'who', 'is', 'who', 'now.'], ['I', "don't", 'have', 'much', 'friends.'], ['I', 'took', 'a', 'taxi', 'because', 'the', 'bus', 'was', 'late.'], ["Don't", 'let', 'it', 'feel', 'cold.'], ["You're", 'the', 'one.'], ['I', "can't", 'remember', 'to', 'get', 'mixed', 'in', 'your', 'business.'], ['I', 'pretended', 'that', 'not', 'to', 'go.'], ["You've", 'found', 'enough.'], ['I', 'just', 'want', 'you', 'to', 'give', 'up', 'more', 'money.'], ['Come', 'here', 'immediately.'], ['It', "won't", 'take', 'long.'], ['I', "don't", 'think', 'I', 'can', 'help', 'you.'], ['I', 'had', 'to', 'walk', 'because', 'my', 'car', 'broke', 'out', 'of', 'order.'], ['I', "can't", 'believe', "you're", 'talking', 'to', 'you', 'this.'], ['He', 'has', 'not', 'been', 'happy.'], ['I', 'need', 'a', 'job.'], ['Do', 'you', 'want', 'a', 'movie?'], ["I'll", 'never', 'believe', 'you.'], ['Would', 'you', 'care', 'for', 'the', 'cookies?'], ['How', 'old', 'were', 'you', 'when', 'you', 'moved', 'in', 'Boston?'], ["Can't", 'you', 'understand', 'this', 'impossible?'], ["You're", 'just', 'like', 'your', 'mother.'], ['Thanks', 'for', 'giving', 'up', 'smoking.'], ['They', 'kept', 'their', 'secret.'], ['After', 'I', 'graduated', 'from', 'college,', 'I', 'lived', 'back', 'with', 'my', 'house', 'and', 'lived', 'with', 'two', 'years', 'old.'], ['I', 'just', "don't", 'want', 'you', 'to', 'make', 'mistakes.'], ['How', 'long', 'did', 'you', 'stay', 'at', 'the', 'party?'], ['Take', 'a', 'card.'], ['You', "shouldn't", 'have', 'gone', 'to', 'such', 'a', 'place', 'like', 'a', 'friend.'], ["I've", 'made', 'that', 'weird', 'as', 'if', 'it', 'happened.'], ['Tom', "doesn't", 'know', 'how', 'you', 'know', 'how', 'better.'], ['Her', 'daughter', 'is', 'a', 'bad', 'cook.'], ["I've", 'got', 'to', 'go', 'now.'], ['I', 'have', 'a', 'lot', 'to', 'say.'], ['You', "can't", 'wait', 'if', 'you', 'can', 'late.'], ["You're", 'the', 'boss.'], ['"I', "don't", 'have', 'anything', 'to', 'do,'], ['I', 'must', 'sleep.'], ["Aren't", 'you', 'embarrassed?'], ['Our', 'train', 'was', 'at', 'the', 'time.'], ['I', 'ran', 'into', 'a', 'friend', 'on', 'the', 'bus.'], ['Could', 'you', 'please', 'fix', 'this', 'again?'], ["You're", 'not', 'going', 'to', 'go.'], ['I', 'am', 'going', 'to', 'October.'], ['The', 'name', 'was', "Tom's", 'name', 'on', 'the', 'table.'], ["Don't", 'be', 'afraid', 'to', 'make', 'mistakes.'], ['Do', 'you', 'like', 'mine?'], ['There', 'was', 'no', 'side', 'today.'], ["We'd", 'better', 'do', 'that.'], ['I', 'hope', 'you', 'are', 'not', 'offended.'], ["That's", 'unimportant.'], ['We', "don't", 'know', 'her.'], ['It', 'just', "doesn't", 'seem', 'to', 'be', 'true.'], ['Unfortunately,', 'he', 'refused', 'to', 'come.'], ['Stay', 'away', 'from', 'my', 'daughter!'], ['Did', 'I', 'take', 'you', 'for', 'the', 'party', 'yesterday?'], ['His', 'horse', 'jumped', 'against', 'the', 'water.'], ["I'm", 'pretty', 'sure', 'Tom', 'lives', 'on', 'Park', 'Street.'], ['She', 'helped', 'him.'], ['We', 'played', 'fruit', 'after', 'lunch.'], ['What', 'time', 'did', 'you', 'get', 'up', 'at', 'the', 'time?'], ['The', 'movie', 'is', 'on', 'the', 'second', 'movie', 'in', 'a', 'movie', 'movie', 'home.'], ['You', "can't", 'trust', 'Tom.'], ['Do', 'something', 'in', 'the', 'lunch', 'in', 'the', 'contest?'], ["I'll", 'be', 'very', 'careful.'], ['Science', 'is', 'important', 'to', 'understand', 'culture.'], ['We', 'must', 'take', 'care', 'of', 'it.'], ['He', "doesn't", 'want', 'you', 'to', 'know.'], ['They', 'are', 'responsible', 'for', 'peace.'], ['Everyone', 'was', 'struck'], ['I', 'think', 'you', 'will', 'survive.'], ['If', 'it', "wouldn't", 'be', 'a', 'native', 'speaker.'], ['Where', 'was', 'the', 'fire', 'when', 'you', 'saw', 'the', 'fire?'], ['Was', 'it', 'you', 'that', 'left', 'the', 'door', 'open', 'last', 'night?'], ['All', 'the', 'flowers', 'in', 'the', 'garden', 'are', 'beautiful.'], ['Can', 'you', 'imagine', 'that', 'happening?'], ['I', 'know', 'Tom', 'did', 'that', 'once.'], ['She', 'advised', 'him', 'to', 'go', 'home', 'early.'], ['I', 'am', 'in', 'the', 'northern', 'room.'], ["You're", 'a', 'liar.'], ['I', 'love', 'this', 'wine.'], ['I', 'figured', 'that', 'you', "weren't", 'coming.'], ['There', 'is', 'a', 'hard', 'time.', 'she', 'will', 'come', 'on', 'time.'], ['Tom', 'took', 'part', 'of', 'his', 'children', 'to', 'get', 'a', 'map', 'of', 'the', 'bed.'], ['I', 'would', 'like', 'to', 'write', 'a', 'book.'], ['I', 'have', 'a', 'cat.'], ['Tom', "wasn't", 'the', 'first', 'person', 'to', 'see.'], ['There', "wasn't", 'much', 'of', 'a', 'hurry.'], ['What', 'time', 'do', 'you', 'usually', 'eat', 'breakfast?'], ['Could', 'I', 'have', 'the', 'bill,', 'please?'], ['Is', 'he', 'still', 'again?'], ["You've", 'been', 'a', 'man', 'from', 'a', 'supposed', 'to', 'have', 'a', 'moment?'], ['All', 'the', 'curtains', 'are', 'closed.'], ["You've", 'found', 'out', 'of', 'him.'], ['With', 'she', 'told', 'her', 'there', 'would', 'she', 'told', 'him.'], ['Did', 'I', 'do', 'something', 'stupid?'], ['I', 'know', 'I', 'can', 'be', 'able', 'to', 'do', 'that.'], ['I', 'need', 'a', 'week.'], ["That's", 'not', 'enough.'], ['We', 'had', 'to', 'postpone', 'our', 'plan.'], ["I'm", 'going', 'to', 'die.'], ['He', 'touched', 'me', 'to', 'the', 'chimney.'], ['I', 'doubt', 'this', 'is', 'anything', 'for', 'you.'], ['You', 'seem', 'very', 'nervous', 'this', 'morning.'], ['We', 'have', 'the', 'right', 'and', 'said', 'you', "don't", 'know', 'the', 'ears.'], ["That's", 'the', 'right', 'I', 'have', 'done.'], ['He', 'threw', 'a', 'selfie', 'on', 'the', 'sofa.'], ['Do', 'you', 'have', 'a', 'boyfriend?'], ['This', 'movie', 'is', 'free.'], ['Please', 'find', 'off', 'the', 'worst', 'where', 'the', 'fire', 'is.'], ["There's", 'a', 'lot', 'of', 'coffee', 'in', 'the', 'world', 'is', 'much', 'better.'], ["Don't", 'you', 'think', "we'd", 'better', 'stay', 'here?'], ['My', 'piano', 'plays', 'piano', 'every', 'day.'], ['She', 'is', 'at', 'home', 'when', 'she', 'is', 'home.'], ['My', 'mother', 'put', 'a', 'large', 'vase', 'on', 'the', 'shelf.'], ['Do', 'we', 'have', 'to', 'do', 'all', 'that?'], ['Tom', 'stole', "Mary's", 'money.'], ['Tom', 'is', 'meeting', 'to', 'meet', 'him.'], ['I', 'thought', 'about', 'my', 'best', 'friend.'], ['They', 'live', 'in', 'a', 'house.'], ['Further', 'are', 'more', 'expensive', 'than', 'two', 'beautiful.'], ['I', 'love', 'puzzles.'], ['My', 'driving', 'body', 'gets', 'himself', 'when', 'my', 'baby', 'gets', 'himself', 'when', 'he', 'gets', 'a', 'little', 'afraid.'], ['Tom', 'gave', 'Mary', 'a', 'banana.'], ["Don't", 'talk', 'in', 'this', 'room.'], ['He', 'liked', 'that.'], ['They', 'were', 'talking', 'about', 'what', 'they', 'sing.'], ['Tom', 'walks', 'quickly.'], ["Don't", 'you', 'think', 'so?'], ['He', 'knows', 'a', 'lot', 'of', 'things', 'at', 'a', 'lot', 'of', 'people.'], ['All', 'the', 'members', 'were', 'greatly', 'from', 'the', 'paddock.'], ['Can', 'we', 'have', 'a', 'moment', 'alone?'], ['He', 'is', 'not', 'as', 'young', 'as', 'he', 'used', 'to', 'be.'], ['I', 'want', 'him', 'to', 'work', 'home.'], ["What's", 'your', 'favorite', 'holiday?'], ['Please', 'be', 'serious.'], ['France', 'is', 'a', 'branch', 'of', 'a', 'desk.'], ['I', 'think', 'agree.'], ['Do', 'you', 'think', 'I', 'am', 'that', 'for', 'a', 'job?'], ['If', 'I', 'were', 'you,', 'I', 'would', 'paint', 'it', 'blue.'], ['Even', 'the', 'company', 'called', 'trees.'], ['They', 'forced', 'their', 'intention', 'of', 'having', 'their', 'family', 'to', 'keep', 'their', 'behavior.'], ['I', 'know', 'that', 'Tom', 'is', 'a', 'specialist.'], ['They', 'arrived', 'at', 'the', 'foot', 'of', 'the', 'mountain.'], ['I', "can't", 'explain', 'this', 'time', 'to', 'buy.'], ["I'm", 'not', 'taking', 'pictures', 'of', 'you.'], ['He', 'was', 'sitting', 'with', 'his', 'arms', 'folded.'], ["You're", 'a', 'good', 'guy.'], ['Have', 'you', 'already', 'finished?'], ['We', 'need', 'some', 'people', 'who', 'have', 'problems', 'with', 'them.'], ['They', 'found', 'out', 'the', 'world.'], ['Are', 'you', 'going', 'to', 'leave', 'tomorrow?'], ["I'm", 'sorry,', 'my', 'father', 'is', 'out.'], ['He', 'will', 'soon', 'die', 'today', 'than', 'dark.'], ['This', 'is', 'a', 'situation', 'situation.'], ['Most', 'of', 'the', 'time,', 'I', 'have', 'lived', 'on', 'a', 'meeting', 'last', 'year.'], ['He', 'is', 'a', 'lawyer', 'from', 'high', 'school', 'towns.'], ['You', 'look', 'a', 'little', 'young', 'to', 'be', 'a', 'teacher.'], ['What', 'is', 'this', 'stuff?'], ['You', 'never', 'spoke', 'about', 'anyone', 'before.'], ['Can', 'we', 'go?'], ['Tom', 'cut', 'the', 'paper', 'and', 'two.'], ['He', 'is', 'tired', 'of', 'staying', 'at', 'the', 'manager.'], ['I', 'wish', "you'd", 'stop', 'doing', 'that.'], ['Please', 'go', 'to', 'the', 'bank.'], ['Do', 'you', 'think', 'this', 'rope', 'is', 'pretty', 'upset?'], ["I'm", 'looking', 'for', 'the', 'next', 'subject.'], ['I', 'feel', 'sorry', 'for', 'you.'], ['To', 'write', 'that', "I'm", 'not', 'going', 'anymore.'], ['Cockfighting', 'many', 'of', 'their', 'countries.'], ['He', 'is', 'a', 'poet.'], ["It's", 'not', 'cool.'], ['How', 'do', 'you', 'seem', 'to', 'help', 'us?'], ["What's", 'inside?'], ['You', 'probably', 'just', 'want', 'to', 'be', 'alone.'], ['My', 'brother', 'is', 'stronger', 'than', 'me.'], ['Do', 'I', 'need', 'a', 'loan?'], ['He', 'has', 'a', 'few', 'friends.'], ['Either', 'these', 'and', 'see', 'if', 'you', 'see', 'anything.'], ['Tom', 'removed', 'his', 'coat.'], ["I've", 'got', 'it.'], ["What's", 'your', 'plan?'], ['This', 'train', 'broken', 'open', 'and', 'open', 'the', 'law.'], ['The', 'sailors', 'have', 'caused', 'the', 'increase', 'of', 'mankind.'], ['You', 'can', 'go', 'by', 'boat.'], ['Tom', 'asked', 'Mary', 'what', 'she', 'was.'], ['Some', 'knowing', 'not', 'fighting.'], ["I'd", 'like', 'to', 'quit', 'arguing.'], ['You', 'should', 'know', 'why', 'we', "don't", 'know', 'about', 'us.'], ['I', 'ran', 'to', 'remove', 'before', 'I', 'get', 'to', 'bed.'], ["You're", 'very', 'brave.'], ['The', 'boy', 'caught', 'a', 'big', 'fish.'], ['Children', 'need', 'love.'], ['We', 'saw', 'myself', 'enter', 'a', 'house', 'in', 'the', 'house.'], ["That's", 'not', 'about', 'that.'], ['I', 'spent', 'the', 'whole', 'book', 'reading', 'the', 'novel.'], ['I', 'had', 'no', 'idea', 'how', 'to', 'walk', 'and', 'waited.'], ['We', 'all', 'have', 'choices.'], ['It', 'was', 'a', 'cold,', 'he', 'was', 'an', 'hour', 'and', 'an', 'examination.'], ['Most', 'of', 'the', 'boxes', 'is', 'very', 'interesting.'], ['Spring', 'does', 'big', 'safety.'], ['I', 'was', 'almost', 'almost', 'almost', 'almost', 'ten', 'dollars', 'on', 'my', 'teeth.'], ['How', 'did', 'you', 'come', 'by', 'time?'], ["I've", 'always', 'wanted', 'to', 'be', 'a', 'teacher.'], ["I'll", 'show', 'you.'], ['Where', 'do', 'you', 'come', 'from?'], ['I', 'brushed', "Tom's", 'daughter.'], ['I', "don't", 'believe', 'that', 'she', 'said.'], ['Oh,', 'I', 'am', 'sorry.'], ['All', 'of', 'this', 'room', 'will', 'be', 'held', 'in', 'this', 'room.'], ['It', 'was', 'personal.'], ['Hurry', 'up,', 'or', "you'll", 'miss', 'the', 'train.'], ['Could', 'you', 'say', 'that', 'again?'], ["I've", 'already', 'told', 'anyone', 'about', 'the', 'same', 'time.'], ['I', "can't", 'put', 'up', 'with', 'the', 'noise.'], ['I', 'really', 'have', 'a', 'cold.'], ["I'm", 'not', 'very', 'organized.'], ['A', 'map', 'is', 'the', 'branch', 'of', 'peace.'], ['He', 'should', 'be', 'in', 'jail.'], ['Do', 'you', 'know', 'what', 'time', 'it', 'happened?'], ["You're", 'late.'], ['Tom', 'is', 'someone', 'someone', 'that', 'someone', 'is', 'looking', 'for.'], ['Why', "don't", 'we', 'keep', 'together?'], ['He', 'had', 'everything', 'he', 'owned.'], ['The', 'house', 'of', 'the', 'two', 'of', 'you', 'to', 'be', 'home', 'by', 'two', 'days.'], ["That's", 'really', 'impressive.'], ['Thank', 'you', 'very', 'much.'], ['A', 'pen', 'is', 'bright', 'enough.'], ['She', 'was', 'rich,', 'but', 'he', 'tried,', 'but', 'the', 'job.'], ['Some', 'man', 'are', 'the', 'richest', 'man', 'in', 'the', 'world.'], ['There', 'were', 'many', 'traffic', 'accident.'], ['Why', 'did', 'Tom', 'help', 'you?'], ['Return', 'to', 'your', 'seat.'], ['Be', 'careful.'], ['She', 'writes', 'to', 'her', 'son', 'in', 'his', 'time.'], ['The', 'family', 'family', 'is', 'on', 'the', 'king', 'for', 'its', 'family.'], ['They', 'told', 'me', 'that', 'I', 'had', 'to', 'read', 'the', 'job.'], ['Her', 'daughter', 'has', 'what', 'it', 'takes', 'to', 'be', 'a', 'good', 'teacher.'], ['The', 'cows', 'are', 'often', 'a', 'huge', 'jam.'], ['This', 'is', 'my', 'notebook.'], ["That's", 'a', 'child', 'can', 'do', 'it', 'as', 'simple', 'as', 'it', 'is.'], ['Learn', 'to', 'stop', 'the', 'hour.'], ['She', 'advised', 'him', 'to', 'take', 'the', 'first', 'train', 'in', 'the', 'morning.'], ['I', 'often', 'think', 'about', 'it.'], ['Tom', 'helped', 'the', 'book', 'cross', 'the', 'street.'], ['What', 'time', 'is', 'your', 'appointment?'], ['The', 'odds', 'is', 'mine.'], ["You're", 'very', 'good', 'at', 'this.'], ['Tom', 'split', 'up', 'with', 'Mary.'], ['Shut', 'it.'], ["You're", 'right,', 'of', 'course.'], ['I', 'thought', 'you', 'should', 'see', 'that', 'contract.'], ['We', 'still', 'have', 'a', 'few', 'options.'], ['He', 'may', 'have', 'lied', 'to', 'me.'], ['You', 'look', 'a', 'little', 'shaken.'], ['Have', 'you', 'been', 'told', 'when', 'you', 'are', 'expected', 'to', 'be', 'here?'], ['I', 'am', 'used', 'to', 'the', 'group.'], ['Please', "don't", 'waste', 'water.'], ['Please', 'stop', 'taking', 'up', 'with', 'you.'], ['I', "wasn't", 'interested', 'at', 'all', 'the', 'party.'], ['I', 'am', 'not', 'a', 'man', 'of', 'milk', 'to', 'help', 'each', 'other.'], ['I', "couldn't", 'help', 'Tom.'], ['You', 'should', 'be', 'very', 'proud', 'of', 'you.'], ['He', 'has', 'no', 'message.'], ["I'm", 'sure', 'you', 'did', 'what', 'you', 'must', 'do', 'what', 'you', 'do.'], ['Please', 'write', 'on', 'the', 'sofa', 'on', 'the', 'line.'], ['I', 'knew', 'this', 'would', 'happen.'], ['We', 'bought', 'new', 'furniture.'], ['That', "doesn't", 'make', 'sense.'], ['If', "there's", 'anything', "there's", 'anything', 'you', "don't", 'want', 'to', 'know.'], ['Where', 'have', 'you', 'been', 'all', 'this', 'time?'], ['Mary', 'looked', 'at', 'him', 'in', 'the', 'mirror.'], ['We', 'sat', 'around', 'the', 'pond.'], ['Which', 'of', 'you', 'are', 'going', 'to', 'happen?'], ['I', 'will', 'show', 'you', 'around', 'the', 'city.'], ["I'm", 'sorry', 'to', 'disturb', 'you.'], ['This', 'dog', 'barks', 'at', 'all', 'the', 'ground.'], ['Who', 'left?'], ['I', 'need', 'a', 'new', 'broom.', "It's", 'a', 'new', 'broom.'], ['She', 'was', 'so', 'sure', 'if', 'he', 'was', 'not', 'like', 'that.'], ['I', 'tripped.'], ['Do', 'you', 'need', 'a', 'ride?'], ['It', 'was', 'a', 'bitter', 'pill', 'to', 'swallow.'], ['Look', 'at', 'that', 'building.'], ['You', "can't", 'take', 'this', 'with', 'you.'], ['Because', 'of', 'the', 'heavy', 'line', 'on', 'the', 'departure', 'of', 'his', 'pocket.'], ['I', 'drank', 'a', 'glass', 'of', 'wine', 'after', 'a', 'bottle', 'of', 'wine.'], ['Are', 'you', 'having', 'fun?'], ['Tom', 'is', 'out', 'of', 'breath.'], ['The', 'water', 'is', 'too', 'hard', 'to', 'swim', 'to', 'swim.'], ['Tom', 'has', 'a', 'mystery.'], ["I'm", 'really', 'busy.'], ['Where', 'did', 'you', 'get', 'this?'], ["I'm", 'as', 'tall', 'as', 'you.'], ['You', 'can', 'smoke', 'in', 'this', 'room.'], ['Tom', "doesn't", 'seem', 'very', 'interested.'], ['This', 'is', 'the', 'best', 'car', 'that', 'we', 'will', 'get', 'our', 'teeth.'], ['I', 'feel', 'faint.'], ['You', "don't", 'want', 'to', 'do', 'it,', 'do', 'you?'], ['You', "don't", 'have', 'a', 'lot', 'of', 'nerve', 'bringing', 'me', 'here', 'under', 'false', 'pretenses.'], ['The', "girl's", 'daughter', 'were', 'going', 'to', 'learn', 'the', 'building.'], ['You', 'can', 'stay', 'here', 'if', 'you', 'like,', 'so', 'much', 'if', 'you', 'need', 'to.'], ['Have', 'you', 'ever', 'eaten', 'alone', 'in', 'a', 'restaurant?'], ['This', 'article', 'is', 'more', 'interesting', 'than', 'the', 'previous', 'one.'], ["You're", 'right.'], ["I'd", 'rather', 'walk.'], ['I', "don't", 'need', 'a', 'bite.'], ['Mary', 'had', 'a', 'little', 'accused', 'of', 'having', 'taken', 'away', 'from', 'paper.'], ["I'll", 'talk', 'to', 'him', 'tomorrow.'], ["You're", 'being', 'prepared.'], ['He', 'has', 'no', 'secrets', 'for', 'granted.'], ['Tom', 'is', 'working.'], ['I', 'called', 'your', 'dog', 'that', 'you', "didn't", 'come', 'by', 'the', 'next', 'day.'], ['Read', 'this', 'book.'], ['Have', 'you', 'tried', 'not', 'to', 'think', 'anything.'], ['I', "don't", 'know', "what's", 'going', 'out', 'of', 'here', 'but', "I'm", 'sorry,', 'but', "I'm", 'sorry,'], ['I', "shouldn't", 'have', 'done', 'that.'], ["Don't", 'let', 'your', 'dog', 'all', 'day.'], ["I'll", 'keep', 'my', 'promise.'], ["You're", 'the', 'one', 'for', 'you.'], ['Those', 'who', "doesn't", 'want', 'to', 'go,', "don't", 'need', 'to', 'do', 'that.'], ['He', 'is', 'at', 'home', 'ten', "o'clock."], ['The', 'problem', 'is', 'that', 'we', 'have', 'no', 'money.'], ['Hand', 'for', 'my', 'father.'], ['I', 'thought', 'I', 'was', 'looking', 'for', 'you.'], ['There', 'were', '30', 'survivors.'], ['I', "don't", 'like', 'the', 'way', 'he', 'really', 'married.'], ['He', 'does', 'his', 'diary.'], ['Is', 'there', 'something', 'in', 'particular', 'that', 'you', 'want', 'to', 'study?'], ['You', 'must', 'be', 'very', 'busy', 'now.'], ['I', 'really', 'misjudged', 'you.'], ['I', 'wish', 'it', 'was', 'a', 'opportunity.'], ['You', 'are', 'no', 'longer', 'in', 'my', 'teacher.'], ['Tom', 'took', 'out', 'of', 'the', 'children', 'to', 'get', 'out', 'of', 'the', 'car.'], ['Did', 'you', 'notice', 'that', 'Tom', "didn't", 'notice', 'his', 'tie', 'today?'], ['What', 'can', 'I', 'see', 'you', 'see', 'your', 'hand?'], ['Today', 'is', 'very', 'cold.'], ['Please', 'follow', 'me.'], ['Tom', 'has', 'three', 'years', 'for', 'three', 'days.'], ['I', 'can', 'fix', 'it.'], ['I', 'usually', 'go', 'to', 'the', 'party', 'so', 'I', 'used', 'to', 'go', 'to', 'the', 'store', 'then.'], ['Take', 'notes.'], ['Even', 'though', 'you', 'can', 'swim', 'in', 'a', 'cold', 'days', 'in', 'Japan.'], ['Do', 'you', 'want', 'to', 'put', 'some', 'coffee?'], ["Don't", 'make', 'the', 'same', 'mistake', 'again.'], ['I', 'have', 'a', 'lot', 'of', 'responsibilities.'], ['My', 'car', 'is', 'a', 'loser.'], ['Do', 'you', 'like', 'singing?'], ['I', 'had', 'nothing', 'to', 'do', 'with', 'this', 'problem.'], ['If', 'you', 'mind', 'your', 'opinion,', "I'll", 'be', 'careful.'], ["You're", 'the', 'person', 'who', 'is?'], ['He', 'was', 'the', 'only', 'one', 'by', 'himself.'], ['Do', 'you', 'know', 'how', 'this', 'is?'], ['I', 'thought', 'you', 'were', 'injured.'], ['I', 'felt', 'like', 'you', "couldn't", 'do', 'that.'], ["Don't", 'waste', 'my', 'dirty', 'hands', 'with', 'me.'], ['I', 'trust', 'him.'], ["I'd", 'like', 'to', 'file', 'a', 'complaint.'], ['Are', 'you', 'being', 'back?'], ['I', 'think', 'the', 'plan', 'will', 'light', 'the', 'next', 'one.'], ['Are', 'you', 'happy', 'with', 'your', 'new', 'lady', 'here?'], ['How', 'big', 'the', 'dog.'], ['When', 'did', 'you', 'come?'], ['It', 'was', 'a', 'good', 'response.'], ['When', 'did', 'you', 'see', 'the', 'movie', 'to', 'see', 'the', 'news?'], ['Do', 'you', 'love', 'the', 'dark?'], ["I've", 'always', 'been', 'here', 'for', 'you.'], ["I've", 'been', 'wanting', 'to', 'ask', 'you', 'a', 'while.'], ['Tom', 'has', 'secrets.'], ['I', 'like', 'the', 'milk', 'one.'], ['I', 'had', 'a', 'permit', 'for', 'me', 'to', 'pay', 'for', 'the', 'concert.'], ['No', 'matter', 'how', 'hard', 'he', 'said', 'he', 'was', 'sure', 'he', 'could', 'true.'], ['A', 'dolphin', 'person', 'is', 'not', 'growing', 'than', 'a', 'native', 'speaker', 'again.'], ['He', 'was', 'covered', 'with', 'his', 'guilt.'], ['Is', 'this', 'seat', 'free?'], ['Food', 'is', 'a', 'lot', 'of', 'fish', 'in', 'oil.'], ["You'd", 'better', 'help', 'me', 'with', 'the', 'doctor.'], ["I'll", 'take', 'care', 'of', 'the', 'cat.'], ['My', 'father', 'used', 'three', 'hours', 'three', 'yesterday.'], ["I'm", 'afraid', "I'm", 'being', 'a', 'cold.'], ['Have', 'you', 'ever', 'seen', 'the', 'girlfriend?'], ['Are', 'we', 'all', 'here?'], ["I'm", 'not', 'the', 'one', 'who', 'made', 'the', 'rules.'], ['Why', 'do', 'we', 'need', 'this?'], ["You're", 'sleepy.'], ['Tom', 'can', 'do', 'it,', 'do', 'it?'], ['With', 'sure', 'you', 'try,', 'he', "won't", 'help', 'me.'], ['He', "won't", 'go', 'to', 'school.'], ['We', 'found', 'an', 'urgent', 'suggested', 'for', 'a', 'trip', 'to', 'us.'], ['I', 'made', 'the', 'deal.'], ['I', 'could', 'hardly', 'speak.'], ['You', "can't", 'possibly', 'understand.'], ['Do', 'you', 'have', 'something', 'in', 'mind?'], ['Tom', 'is', 'a', 'good', 'idea,', "isn't", 'he?'], ["They're", 'Asian.'], ["I'm", 'afraid', 'he', 'will', 'come.'], ["I'm", 'not', 'here', 'to', 'fight.'], ['Stay', 'in', 'bed.'], ['You', "can't", 'blame', 'me.'], ['We', 'will', 'hurry.'], ['I', 'got', 'myself', 'to', 'get', 'away', 'from', 'the', 'line.'], ['How', 'do', 'you', 'not', 'do', 'that', 'anymore.'], ['The', 'prices', 'have', 'set', 'up', 'quickly.'], ['Do', 'you', 'think', 'that', 'Tom', 'is', 'actually', 'serious?'], ['There', 'were', 'a', 'lot', 'of', 'complaints', 'about', "Tom's", 'behavior.'], ['Let', 'him', 'go!'], ['Tom', 'made', "Mary's", "Mary's", 'meeting.'], ['Please', 'have', 'a', 'snack.'], ['Can', 'you', 'read', 'a', 'while?'], ['We', 'all', 'talked', 'to', 'each', 'other.'], ['She', 'needs', 'you.'], ["I'm", 'getting', 'close.'], ['It', 'was', 'very', 'fun.'], ["That's", 'not', 'what', 'he', 'said.'], ['This', 'is', 'an', 'interesting', 'apple.'], ["I've", 'had', 'a', 'lot', 'of', 'interesting', 'people.'], ['I', 'need', 'to', 'find', 'some', 'glasses.'], ['Smoking', 'is', 'a', 'bad', 'habit.'], ['I', 'had', 'a', 'stomachache.'], ["There's", 'a', 'rash', 'of', 'steel.'], ["That's", 'a', 'flight.'], ['Why', "didn't", 'you', 'say', 'it', 'yet?'], ['I', 'made', 'a', 'slight', 'headache', 'with', 'my', 'boss.'], ['I', 'could', 'see', 'Tom', 'was', 'smiling.'], ['A', 'lost', 'arm', 'is', 'asked', 'of', 'having', 'lost', 'arm', 'from', 'open', 'of', 'his', 'pocket.'], ['No', 'matter', 'how', 'sneaky', 'you', 'are,', 'you', 'can', 'never', 'kill', 'one.'], ['Tom', 'says', 'he', 'needs', 'to', 'talk', 'to', 'you.'], ['This', 'is', 'their', 'choice.'], ['I', 'will', 'walk', 'school.'], ['I', "don't", 'believe', 'something', 'happening.'], ['You', 'should', 'find', 'the', 'map.'], ['Were', 'you', 'happy?'], ['I', 'had', 'to', 'sleep', 'all', 'day', 'when', 'I', 'walked', 'home.'], ['We', "don't", 'have', 'any', 'money.'], ['When', 'did', 'you', 'say', 'that?'], ['live', 'in', 'a', 'living', 'living', 'live', 'in', 'living', 'live', 'in', 'the', 'country.'], ['Tom', 'knows', 'that', "he's", 'wrong,', 'but', 'he', "doesn't", 'love', 'him.'], ['There', 'are', 'a', 'lot', 'of', 'cool', 'on', 'the', 'table.'], ['It', 'would', 'be', 'better', 'if', 'it', 'would', 'come.'], ['I', 'know', 'how', 'you', 'feel.'], ["We'll", 'talk', 'about', 'it', 'later.'], ['We', 'talked', 'to', 'you', 'where', 'we', 'got', 'there', 'somewhere.'], ['I', 'think', 'abroad', 'goes', 'to', 'school.'], ['My', 'uncle', 'is', 'planning', 'in', 'the', 'country.'], ['Mary', 'is', 'lovely.'], ['Would', 'you', 'please', 'open', 'the', 'window?'], ['He', 'is', 'just', 'about', 'the', 'rest', 'of', 'the', 'subject.'], ["I've", 'never', 'let', 'you', 'meet', 'your', 'happy.'], ['I', 'asked', 'Tom', 'to', 'ask', 'but', 'he', 'asked', 'me', 'to', 'buy', 'some', 'tea.'], ['Not', 'students', 'are', 'sore.'], ["I'm", 'very', 'sad.'], ['He', 'suggested', 'that', 'we', 'should', 'start', 'with', 'us.'], ['The', 'house', 'is', 'small,', 'but', "it's", 'small,', "it's", 'true.'], ['If', 'you', 'say,', 'he', "won't", 'understand.'], ['Maybe', 'it', 'was', 'really', 'bad.'], ['Tom', 'is', 'the', 'oldest', 'of', 'the', 'youngest'], ['Everyone', 'knows', 'that', 'your', "wasn't", 'fault.'], ["That's", 'all', 'I', 'am.'], ['The', 'leaves', 'have', 'turned', 'red.'], ['Sorry,', 'I', "didn't", 'understand', 'what', 'you', 'said.'], ['I', "don't", 'want', 'Tom', 'in', 'my', 'car.'], ['I', "don't", 'feel', 'like', 'talking.'], ['Her', 'eyes', 'ruined', 'him.'], ['Have', 'you', 'already', 'sold', 'it?'], ['The', 'elevator', 'ran', 'away', 'on', 'the', 'second', 'floor.'], ["I'd", 'like', 'to', 'talk', 'with', 'you.'], ['You', 'look', 'familiar.', 'Do', 'I', 'know', 'you.'], ['We', 'returned', 'to', 'the', 'United', 'States', 'for', 'sale.'], ["It's", 'not', 'bad.'], ['They', 'have', 'to', 'sell', 'their', 'weekend', 'after', 'their', 'meal.'], ['I', 'wish', 'I', 'could', 'speak', 'Spanish.'], ["We're", 'still', 'married.'], ['Do', 'you', 'want', 'me', 'to', 'shut', 'the', 'police?'], ['They', 'were', 'able', 'to', 'climb', 'the', 'top', 'of', 'the', 'temperature.'], ['That', 'was', 'a', 'flaw.'], ['Take', 'as', 'much', 'as', 'you', 'want.'], ['They', 'have', 'to', 'calm', 'down.'], ['When', 'did', 'you', 'go', 'to', 'school?'], ["It's", 'not', 'our', 'job.'], ['Are', 'you', 'all', 'right?'], ['It', 'was', 'an', 'urgent', 'need', 'for', 'cancer.'], ['Can', 'you', 'answer', 'that', 'question?'], ["I'm", 'not', 'nervous.'], ["It's", 'irrelevant.'], ['Would', 'you', 'like', 'a', 'spoon?'], ['Take', 'as', 'many', 'people', 'want', 'you', 'to.'], ['The', 'party', 'is', 'really', 'great.'], ["You've", 'gone', 'too', 'early.'], ['The', 'statue', 'is', 'based', 'on', 'head.'], ['I', 'often', 'have', 'dreams.'], ['She', 'wants', 'to', 'buy', 'a', 'pair', 'of', 'power.'], ['He', 'was', 'impatient', 'to', 'see', 'his', 'son.'], ['Freedom', 'is', 'not', 'enough.'], ['When', 'too', 'many', 'days', 'when', 'it', 'was', 'too', 'short.'], ['I', 'played', 'the', 'dog', 'sandwich.'], ["I'll", 'go', 'home.'], ['I', 'will', 'walk', 'on', 'the', 'way', 'he', 'left', 'rain.'], ['This', 'is', 'a', 'great', 'excuse.'], ["I'm", 'sorry', 'I', 'caused', 'you', 'to', 'wait.'], ['Is', 'an', 'urgent', 'need', 'for', 'an', 'urgent', 'need', 'for', 'a', 'ticket?'], ['This', 'hat', 'is', 'too', 'big', 'for', 'you.'], ['Is', 'it', 'wrong', 'with', 'the', 'way?'], ['Does', 'he', 'listen', 'to', 'me?'], ['I', 'just', 'want', 'a', 'little', 'fresh', 'alone.'], ['"Does', 'Tom', 'was', 'a', 'date', 'of', 'death', 'so', 'ever', 'was', 'a', 'teenager?'], ['You', "can't", 'just', 'not', 'go', 'right', 'now.'], ["Don't", 'put', 'under', 'under', 'the', 'influence.'], ['They', 'are', 'both', 'good.'], ["I'd", 'like', 'you', 'to', 'meet', 'me.'], ["I'm", 'too', 'old', 'to', 'go', 'to', 'Tokyo.'], ['Tom', "doesn't", 'have', 'anything', 'to', 'drink', 'at', 'night.'], ['Tom', 'lacks', 'sleep.'], ['Keep', 'your', 'room', 'here.'], ['Does', 'anyone', 'care?'], ['You', "didn't", 'have', 'any', 'food?'], ['Tom', 'is', 'an', 'astronaut.'], ["It's", 'not', 'cool.'], ['We', 'enjoyed', 'our', 'idea', 'our', 'idea.'], ['If', 'you', 'give', 'me', 'a', 'ticket,', 'if', 'you', "don't", 'need.'], ['I', "don't", 'wear', 'glasses.'], ['Tom', "doesn't", 'have', 'enough', 'money', 'to', 'buy', 'what', 'he', 'wants.'], ["You're", 'not', 'the', 'one', 'of', 'them,', "aren't", 'you?'], ['Eat', 'all', 'your', 'choices.'], ['This', 'is', 'working.'], ["That's", 'a', 'really', 'good', 'situation.'], ['There', 'is', 'no', 'way', 'to', 'tell', 'Tom', 'how', 'much', 'he', 'knows', 'how', 'to', 'do', 'that.'], ["It's", 'very', 'expensive.'], ['May', 'I', 'have', 'a', 'glass', 'of', 'coffee', 'please?'], ['No', 'one', 'knew', 'that.'], ['Are', 'you', 'seriously', 'thinking', 'about', 'going?'], ['He', 'missed', 'the', 'deadline.'], ["There's", 'no', 'wind', 'today.'], ['That', 'was', 'nice.'], ['Tom', 'has', 'a', 'lot', 'of', 'skill.'], ['I', 'never', 'thought', 'about', 'that', 'before.'], ['They', 'just', 'want', 'to', 'do', 'the', 'right', 'to', 'do', 'with', 'me.'], ["Let's", 'eat', 'with', 'our', 'family', 'and', 'often', 'eat', 'with', 'her', 'favorite', 'diet.'], ['Where', 'did', 'you', 'buy', 'these', 'cherries?'], ['I', 'still', "don't", 'know', 'what', "I'm", 'going', 'to', 'do.'], ["We'll", 'call', 'you.'], ['He', 'had', 'no', 'money.'], ['I', 'cut', 'the', 'lights.'], ['We', 'have', 'to', 'look', 'care', 'of', 'these', 'people.'], ['The', 'day', 'is', 'almost', 'finished.'], ['It', 'is', 'said', 'that', 'he', 'knows', 'the', 'secret.'], ["I'm", 'doing', 'well', 'right', 'now.'], ['I', "don't", 'know', 'if', 'I', 'can', 'do', 'that.'], ['This', 'only', 'is', 'very', 'cheap.'], ['A', 'week', 'is', 'hard', 'for', 'the', 'second', 'way', 'it', 'fixed', 'next', 'Sunday.'], ["I'll", 'give', 'you', 'this', 'camera.'], ['He', 'turned', 'down', 'the', 'blood.'], ['This', 'book', 'is', 'in', 'front', 'of', 'the', 'class', 'is', 'written', 'in', 'England.'], ['Do', 'you', 'have', 'a', 'cellphone?'], ['One', 'of', 'the', 'gym', 'I', 'had', 'written', 'by', 'death.'], ['Do', 'you', 'know', 'why', 'Tom', 'can', 'speak', 'French?'], ["I'm", 'not', 'your', 'father.'], ['He', 'likes', 'the', 'new', 'songs.'], ['I', 'do', 'now', 'sort', 'of', 'your', 'age.'], ['I', 'really', 'mean', 'to', 'be', 'with', 'you.'], ['Take', 'the', 'mine.'], ['Does', 'that', 'mean', 'you', 'want', 'to', 'stay?'], ["I'm", 'surprised', 'the', 'person', 'else', 'heard', 'the', 'gunshots.'], ['You', 'look', 'so', 'beautiful.'], ["Tom's", 'fun.'], ['She', 'asked', 'us', 'three', 'times.'], ['Have', 'you', 'ever', 'been', 'arrested?'], ['Tom', 'is', 'always', 'a', 'shock.'], ['He', 'went', 'to', 'the', 'top.'], ["I'm", 'not', 'a', 'doctor,', 'but', 'a', 'teacher.'], ['I', 'think', 'we', 'should', 'all', 'this.'], ['Your', 'proposal', 'is', 'going', 'to', 'have', 'a', 'knife'], ['He', 'will', 'come', 'back', 'soon.'], ['It', 'was', 'a', 'terrible', 'decision.'], ['Tom', 'and', 'I', 'are', 'in', 'the', 'same', 'way', 'in', 'the', 'same', 'one.'], ['You', "don't", 'need', 'to', 'be', 'this', 'alone.'], ['Are', 'you', 'busy?'], ['I', 'want', 'to', 'do', 'it', 'for', 'you.'], ['She', 'forced', 'him', 'to', 'sit', 'down', 'at', 'the', 'cake', 'and', 'threw', 'it', 'at', 'the', 'sofa.'], ['Tie', 'your', 'shoes.'], ['News', 'of', 'an', 'urgent', 'feel', 'like', 'two', 'boxes', 'is', 'going', 'to', 'get', 'a', 'sign', 'of', 'this', 'stone.'], ['Why', 'do', 'you', 'resist?'], ["You're", 'no', 'longer', 'a', 'baby.'], ['You', 'were', 'always', 'very', 'kind.'], ['We', 'are', 'teachers.'], ['I', 'know', 'how', 'these', 'these', 'are.'], ['I', 'share', 'a', 'house', 'with', 'my', 'friends.'], ["Don't", 'just', 'stay', 'at', 'in', 'the', 'sun', 'yesterday.'], ['She', 'ate', 'her', 'dinner.'], ['It', 'looks', 'like', 'you', 'just', 'got', 'a', 'photo', 'for', 'us.'], ['My', 'really', 'does', 'really', 'miss', 'me.'], ['I', 'want', 'to', 'hear', 'what', 'the', 'teacher', 'is', 'saying.'], ['All', 'the', 'girls', 'like', 'Tom.'], ['I', 'always', 'catch', 'it.'], ['In', 'the', 'garden', 'he', 'is', 'a', 'big', 'restaurant', 'with', 'him.'], ["I'm", 'ashamed', 'of', 'afraid.'], ["Don't", 'just', 'stand', 'there.'], ['You', "can't", 'do', 'both', 'at', 'the', 'same', 'time.'], ['Stop', 'acting', 'on.'], ['As', 'soon', 'as', 'I', 'take', 'a', 'few', 'minutes', 'around', 'the', 'world', "I'll", 'travel', 'out.'], ['Please', "don't", 'do', 'that', 'again.'], ['The', 'post', 'office', 'is', 'closed.'], ['There', 'was', 'nothing', 'about', 'it.'], ["What's", 'the', 'name', 'of', 'this', 'crime', 'to', 'do.'], ['He', 'got', 'home', 'yesterday.'], ['I', 'want', 'something', 'to', 'drink.'], ['Watch', 'out!'], ['Tom', 'stepped', 'on', "Mary's", 'forehead.'], ['Tom', 'is', 'here,', "isn't", 'he?'], ['You', 'know', 'the', 'drill.'], ['Take', 'the', 'door.'], ['We', 'should', 'have', 'written', 'this', 'by', 'now.'], ['What', 'are', 'you', 'working', 'on?'], ["It's", 'not', 'possible', 'that', 'happened', 'to', 'accident.'], ['He', 'is', 'proud', 'of', 'a', 'bit.'], ['I', 'bet', 'you', 'know', 'French.'], ['Give', 'me', 'your', 'keys?'], ['Does', 'this', 'rule', 'have', 'to', 'hire', 'us?'], ['I', 'want', 'a', 'ice.'], ['I', "don't", 'have', 'a', 'child.'], ['The', 'children', 'are', 'having', 'a', 'lot', 'of', 'sleep.'], ['I', 'just', 'want', 'to', 'talk', 'to', 'you', 'for', 'a', 'while.'], ['Some', 'people', "don't", 'understand', 'the', 'problem.'], ['I', 'was', 'invited', 'to', "Tom's", 'party?'], ["You're", 'the', 'oldest.'], ['These', 'are', 'not', 'my', 'prisoners.'], ['Is', 'time', 'on', 'time?'], ["We're", 'supposed', 'to', 'be', 'friends', 'when', 'I', 'enjoy', 'yours.'], ['I', 'had', 'nowhere', 'else', 'to', 'meet', 'me.'], ['Why', 'are', 'you', 'so', 'upset?'], ['I', 'speak', 'French', 'next', 'year.'], ['I', 'need', 'a', 'few', 'pictures.'], ['This', 'is', 'the', 'picture', 'that', 'you', 'gave', 'me.'], ['It', 'looked', 'pale.'], ['Thank', 'you', 'all', 'for', 'all', 'of', 'them.'], ['It', 'is', 'no', 'control', 'out', 'of', 'the', 'situation.'], ['You', 'need', 'to', 'check', 'your', 'hand', 'before', 'you', 'leave', 'your', 'Monday.'], ['I', "didn't", 'do', 'it.'], ["There's", 'a', 'cat.'], ['The', 'door', 'will', 'be', 'painted', 'tomorrow.'], ['I', 'had', 'dinner', 'with', 'a', 'friend', 'last', 'night.'], ['I', "don't", 'think', 'we', 'can', 'talk.'], ['You', 'have', 'to', 'run.'], ['I', 'brought', 'you', 'this.'], ['Our', 'house', 'went', 'on', 'the', 'beach.'], ['I', 'need', 'painting.'], ["I've", 'got', 'to', 'show', 'you', 'something.'], ['I', 'was', 'caught', 'in', 'New', 'York.'], ['Let', 'it', 'take', 'snow.'], ['I', "didn't", 'want', 'to', 'waste', 'of', 'time.'], ['We', 'are', 'in', 'position.'], ['Buying', 'a', 'new', 'TV', "won't", 'make', 'you', 'happy.'], ['She', 'called', 'him', 'to', 'do', 'that', 'her', 'son', 'to', 'see', 'her', 'true.'], ['Meat', 'is', 'bad.'], ['Where', 'can', 'I', 'buy', 'some', 'company?'], ["I'm", 'used', 'to', 'the', 'pain', 'now.'], ['I', 'was', 'naive.'], ['Are', 'you', 'telling', 'me', 'that', 'you', "don't", 'want', 'to', 'visit', 'me?'], ['I', 'felt', 'all', 'the', 'whole', 'day.'], ['You', "don't", 'have', 'to', 'make', 'much', 'sense', 'of', 'mistakes', 'as', 'you', 'want', 'to', 'make', 'a', 'mistake.'], ['He', 'was', 'fully', 'clothed.'], ['Would', 'it', 'be', 'much', 'more', 'important', 'in', 'jail?'], ['I', 'have', 'legs.'], ["That's", 'a', 'ridiculous.'], ['This', 'takes', 'a', 'minute.'], ['If', 'you', 'have', 'a', 'tendency', 'to', 'say,', 'is', 'busy', 'preparing', 'or', 'something?'], ['He', 'went', 'aboard', 'the', 'other', 'day.'], ['Are', 'you', 'happy', 'with', 'your', 'new', 'car?'], ['We', 'still', 'have', 'the', 'reason', 'halfway', 'to', 'get', 'the', 'mountain.', 'Are', 'you', 'already', 'tired?'], ['I', 'think', "you're", 'drunk.'], ['Try', 'to', 'be', 'more', 'punctual', 'from', 'now', 'on.'], ['I', "can't", 'sleep', 'on', 'the', 'legs.'], ["How's", 'this', 'cap', 'now?'], ['Did', 'anybody', 'see', 'anything?'], ["I'm", 'leaving', 'tonight.'], ['She', 'is', 'changing.'], ['When', 'did', 'you', 'find', 'out', 'of', 'them?'], ['Do', 'you', 'have', 'the', 'keys?'], ['Let', 'me', 'go!'], ['I', 'just', 'know', 'what', 'you', 'need.'], ['Please', 'tell', 'me', 'the', 'name', 'to', 'the', 'list.'], ['I', 'think', 'Tom', 'is', 'still', 'in', 'love', 'with', 'Mary.'], ['Everyone', 'in', 'the', 'room', 'room', 'in', 'a', 'sigh', 'of', 'relief.'], ['She', "didn't", 'want', 'to', 'eat', 'lunch.'], ['The', 'girl', 'was', 'always', 'sung', 'in', 'love', 'of', 'the', 'roof.'], ['He', 'had', 'his', 'name', 'missed', 'the', 'train.'], ['I', "can't", 'believe', 'what', 'happens.'], ['He', 'saw', 'us', 'at', 'the', 'zoo.'], ['He', 'is', 'in', 'the', 'Christmas', 'company.'], ['Thank', 'you', 'for', 'the', 'best', 'of', 'my', 'life.'], ['Do', 'you', 'need', 'the', 'keys?'], ['Tom', 'ran', 'to', 'a', 'lot', 'of', 'strangers.'], ['What', 'have', 'you', 'done', 'with', 'my', 'bag?'], ["It'll", 'take', 'some', 'time', 'to', 'write', 'to', 'you', 'as', 'soon', 'as', 'this', 'evening.'], ['Is', 'it', 'OK', 'to', 'help', 'me', 'on', 'the', 'me?'], ['Tom', "didn't", 'have', 'time', 'to', 'finish', 'the', 'time', 'to', 'himself.'], ['She', 'saw', 'the', 'window.'], ['I', 'thought', 'you', 'might', 'like', 'to', 'know', "who's", 'coming', 'over', 'for', 'dinner.'], ['The', 'school', 'is', 'a', 'big', 'word', 'for', 'the', 'problem.'], ['Can', 'you', 'walk?'], ['What', 'makes', 'you', 'think', "I'm", 'against', 'me?'], ['Since', 'it', 'happened', 'to', 'us', 'when', 'the', 'house.'], ['Call', 'me', 'anything', 'if', 'it', 'takes.'], ['I', 'really', "don't", 'know', 'where', 'to', 'begin.'], ['I', 'plan', 'to', 'come', 'and', 'Tom.'], ['Please', "don't", 'speak', 'so', 'fast.'], ["I'm", 'three', 'years', 'older', 'than', 'my', 'brother.'], ["That's", 'not', 'something', 'I', 'want', 'to', 'do.'], ['He', 'passed', 'the', 'young.'], ['You', 'seem', 'to', 'have', 'something', 'else.'], ['You', "didn't", 'steal', 'me.'], ["I'd", 'like', 'to', 'ask', 'a', 'question.'], ['The', 'house', 'is', 'mine.'], ['I', 'knew', 'Tom', "wasn't", 'a', 'farmer.'], ["What's", 'the', 'weather', 'like?'], ['I', "don't", 'believe', 'such', 'a', 'word', 'you', 'say.'], ['I', "haven't", 'met', "Tom's", 'parents', 'yet.'], ['Tom', 'has', 'a', 'gift', 'for', 'Mary.'], ["It's", 'going', 'to', 'be', 'enough.'], ['Who', 'did', 'that?'], ['Police', "don't", 'have', 'to', 'cut', 'down', 'in', 'the', 'British', 'immediately.'], ['What', 'else', 'do', 'you', 'mean?'], ['That', 'would', 'be', 'a', 'good', 'idea.'], ['I', 'made', 'them', 'myself.'], ['I', 'just', 'want', 'to', 'do', 'my', 'job.'], ['She', 'threw', 'me', 'the', 'wife.'], ["I've", 'got', 'to', 'ask', 'you', 'something.'], ['We', 'have', 'to', 'help', 'Tom.', 'Let', 'help', 'Tom.'], ['You', 'must', 'be', 'a', 'good', 'cook.'], ["That's", 'what', 'I', 'expected.']] 20000 [["Tom's", 'not', 'a', 'bad', 'guy.'], ['If', 'you', 'need', 'anything,', 'let', 'me', 'know.'], ['Tom', 'likes', 'him.'], ['Do', 'your', 'best.'], ['Are', 'you', 'unlucky?'], ['Was', 'that', 'a', 'squirrel?'], ['If', 'I', 'were', 'you,', "I'd", 'go', 'home', 'right', 'away.'], ['I', 'had', 'other', 'things', 'on', 'my', 'mind.'], ['Stop', 'lying.'], ['Be', 'kind', 'to', 'little', 'animals.'], ['The', 'river', 'which', 'flows', 'through', 'Paris', 'is', 'the', 'Seine.'], ['Tell', 'whoever', 'comes', 'that', "I'm", 'out.'], ['I', 'like', 'math', 'best.'], ["I've", 'got', 'to', 'get', 'away', 'for', 'a', 'while.'], ['Nobody', 'was', 'around.'], ['How', 'long', 'were', 'you', 'gone?'], ["Let's", 'continue', 'where', 'we', 'left', 'off', 'yesterday.'], ['My', 'cousin,', 'who', 'is', 'a', 'lawyer,', 'is', 'in', 'France', 'at', 'present.'], ['Are', 'we', 'talking', 'about', 'the', 'same', 'Tom?'], ['If', 'my', 'wife', 'calls,', 'just', 'tell', 'her', "I'm", 'in', 'an', 'important', 'meeting', 'and', 'cannot', 'be', 'disturbed.'], ["You're", 'lying!'], ['Some', 'of', 'these', 'are', 'mine.'], ["It's", 'all', 'work-related.'], ['Can', 'you', 'put', 'the', 'baby', 'in', 'the', 'car', 'seat?'], ["She's", 'a', 'bit', 'naive.'], ['We', 'pitched', 'the', 'tent', 'next', 'to', 'the', 'river.'], ['You', 'sound', 'like', 'you', "don't", 'want', 'to', 'be', 'an', 'archaeologist.'], ['The', 'goods', 'will', 'be', 'delivered', 'free', 'of', 'charge.'], ['People', 'who', 'break', 'the', 'law', 'are', 'punished.'], ['Where', 'is', 'it?'], ['I', 'ignored', 'him.'], ['Who', 'was', 'that', 'man', 'waiting', 'outside?'], ['The', 'history', 'of', 'China', 'is', 'older', 'than', 'that', 'of', 'Japan.'], ['I', 'think', 'your', 'answer', 'is', 'correct.'], ["You've", 'been', 'following', 'me,', "haven't", 'you?'], ['He', 'tried', 'getting', 'closer', 'to', 'her', 'using', 'every', 'possible', 'means.'], ['I', 'wonder', 'what', 'happened.'], ['I', "can't", 'turn', 'it', 'on,', 'because', 'the', 'switch', 'is', 'broken.'], ["They're", 'afraid', 'of', 'me.'], ["I'm", 'familiar', 'with', 'the', 'situation.'], ['She', 'slapped', 'him.'], ["I'm", 'often', 'compared', 'to', 'my', 'brothers.'], ['Be', 'polite', 'to', 'everyone.'], ['I', 'will', 'go', 'when', 'they', 'come', 'back', 'here.'], ['I', 'went', 'twice.'], ['I', "didn't", 'ask', 'you', 'to', 'do', 'that.'], ["I'm", 'thirsty.', 'Can', 'I', 'have', 'a', 'glass', 'of', 'water?'], ['You', 'must', 'stop', 'him.'], ['The', 'accident', 'happened', 'at', 'that', 'intersection.'], ['Movie', 'making', 'is', 'an', 'exciting', 'job.'], ['No', 'two', 'snowflakes', 'are', 'exactly', 'alike.'], ['What', 'do', 'you', 'have', 'to', 'add', 'to', '17', 'to', 'get', '60?'], ['I', 'owe', 'you', 'a', 'breakfast.'], ["We're", 'not', 'dead', 'yet.'], ['I', 'need', 'to', 'know', 'what', 'Tom', 'did', 'yesterday.'], ['I', 'love', 'walking', 'barefoot', 'on', 'the', 'grass.'], ["I'm", 'free.'], ['You', 'may', 'be', 'able', 'to', 'pass', 'unnoticed', 'in', 'a', 'city,', 'but', 'in', 'a', 'village', "that's", 'not', 'possible.'], ['We', 'need', 'your', 'help.'], ['Tom', 'lost', 'his', 'ticket.'], ['Our', 'class', 'is', 'a', 'small', 'one.'], ['Could', 'you', 'recommend', 'a', 'nice', 'restaurant', 'near', 'here?'], ['Tom', 'knew', 'that', 'Mary', 'was', 'in', 'Boston.'], ["We've", 'walked', 'all', 'around', 'the', 'lake.'], ['I', "didn't", 'know', 'you', 'had', 'a', 'boyfriend.'], ['I', 'came', 'here', 'to', 'learn.'], ['They', 'were', 'buying', 'time.'], ['Why', "don't", 'you', 'want', 'to', 'leave', 'Boston?'], ['He', 'lives', 'in', 'his', 'car.'], ['This', 'lid', 'is', 'so', 'tight', 'I', "can't", 'open', 'it.'], ['It', 'is', 'impossible', 'for', 'us', 'to', 'cross', 'that', 'river.'], ['The', 'buildings', 'are', 'small', 'in', 'comparison', 'with', 'the', 'skyscrapers', 'in', 'New', 'York.'], ['Tom', 'turned', 'on', 'the', 'TV.'], ["We're", 'really', 'late.'], ['I', 'looked.'], ['Why', 'are', 'we', 'moving', 'to', 'Boston?'], ['I', 'know', 'why', 'you', 'did', 'it.'], ['The', 'cyclist', 'climbed', 'the', 'hill.'], ['I', 'would', 'like', 'you', 'to', 'go', 'instead', 'of', 'me.'], ['As', 'far', 'as', 'the', 'eye', 'could', 'see,', 'there', 'was', 'nothing', 'but', 'sand.'], ["Let's", 'be', 'honest', 'with', 'each', 'other.'], ['All', 'the', 'rooms', 'are', 'taken.'], ['He', 'is', 'the', 'chosen', 'one.'], ['How', 'could', 'it', 'not', 'bother', 'you?'], ['How', 'long', 'have', 'you', 'been', 'out', 'of', 'prison?'], ['I', "don't", 'get', 'the', 'connection.'], ['I', 'love', 'butterflies.'], ['Tom', 'is', 'very', 'afraid', 'of', 'snakes.'], ["I'm", 'going', 'to', 'be', 'gone', 'soon.'], ['His', 'debt', 'came', 'to', '100', 'dollars.'], ['I', 'know', 'that', 'things', "haven't", 'been', 'easy', 'for', 'you.'], ['What', 'you', 'did', 'to', 'Tom', 'was', 'cruel.'], ['Tom', 'lied', 'about', 'a', 'lot', 'of', 'things.'], ['How', 'long', 'have', 'you', 'been', 'divorced?'], ['Since', 'you', 'did', 'the', 'cooking,', "I'll", 'do', 'the', 'dishes.'], ['Please', 'tell', 'everyone', "I'm", 'sorry.'], ['Tom', 'needs', 'you', 'here.'], ['Could', 'you', 'explain', 'it', 'more', 'simply?'], ['Some', 'of', 'them', 'were', 'wounded.'], ['She', 'closed', 'her', 'eyes.'], ['My', 'friend', 'remembered', 'which', 'way', 'to', 'go.'], ['Would', 'you', 'like', 'to', 'switch', 'seats?'], ["Don't", 'go', 'near', 'the', 'dog.'], ['You', 'need', 'to', 'be', 'careful.'], ['Is', 'there', 'anything', 'special', 'you', 'want', 'to', 'do', 'this', 'weekend?'], ['He', 'managed', 'to', 'pass', 'his', 'driving', 'test', 'even', 'though', 'he', 'was', 'a', 'poor', 'driver.'], ['I', 'hesitate', 'to', 'ask', 'Tom', 'to', 'help.'], ["I'll", 'stay', 'if', 'it', 'rains.'], ['I', "can't", 'find', 'fault', 'with', 'him.'], ['I', 'know', 'that', 'it', 'is', 'highly', 'unlikely', 'that', "you'd", 'ever', 'want', 'to', 'go', 'out', 'with', 'me,', 'but', 'I', 'still', 'need', 'to', 'ask', 'at', 'least', 'once.'], ['It', 'seems', 'that', 'the', 'store', 'is', 'closed', 'today.'], ['You', 'are', 'curious,', "aren't", 'you?'], ['Tom', 'looked', 'at', 'the', 'tall', 'man', 'suspiciously.'], ['Do', 'you', 'really', 'think', 'I', 'had', 'something', 'to', 'do', 'with', 'that?'], ['I', 'think', 'that', 'recording', 'is', 'important.'], ['Rebel', 'forces', 'prepared', 'to', 'fight.'], ['Give', 'me', 'your', 'shirt.'], ['Your', 'father', 'seems', 'very', 'nice.'], ["Don't", 'mention', 'this', 'to', 'anyone.'], ['She', 'and', 'I', 'have', 'about', 'the', 'same', 'number', 'of', 'stamps.'], ['We', "couldn't", 'find', 'out', 'her', 'whereabouts.'], ['Leave', 'this', 'to', 'me.'], ['Our', 'firm', 'is', 'on', 'the', 'verge', 'of', 'bankruptcy,', "I'm", 'ashamed', 'to', 'say.'], ['Could', 'you', 'draw', 'a', 'map', 'for', 'me?'], ['We', 'saw', 'them', 'leave.'], ["You've", 'failed.'], ['My', 'brother', 'likes', 'to', 'collect', 'stamps.'], ['I', 'want', 'to', 'play,', 'too.'], ['I', 'lost', 'my', 'wallet', 'somewhere', 'around', 'here.'], ['Can', 'you', 'believe', 'this', 'is', 'already', 'happening?'], ['This', 'is', 'yours.'], ['I', 'thought', "I'd", 'prefer', 'going', 'by', 'myself.'], ["You'll", 'like', 'this.'], ['What', 'wonderful', 'weather!'], ['His', 'sweater', 'is', 'gray.'], ['She', 'decided', 'to', 'go.'], ['She', 'lay', 'awake', 'for', 'hours', 'thinking', 'about', 'him.'], ['Organic', 'food', 'tastes', 'better.'], ['Do', 'I', 'look', 'like', 'a', 'plumber?'], ['That', 'tastes', 'terrible.'], ['He', 'refused', 'to', 'take', 'the', 'bribe.'], ["I'll", 'do', 'whatever', 'I', 'can', 'to', 'encourage', 'Tom', 'to', 'stay', 'in', 'school.'], ['I', "don't", 'have', 'time', 'for', 'you.'], ['Are', 'you', 'relaxed?'], ['That', 'was', 'very', 'good.'], ['Dig', 'faster.'], ['Who', 'knows', 'that?'], ['Please', 'show', 'me', 'your', 'notebook.'], ['It', 'looks', 'as', 'if', "you're", 'right.'], ["It's", 'a', 'lot', 'of', 'fun', 'skiing', 'in', 'fresh', 'snow.'], ["Don't", 'waste', 'your', 'time', 'trying', 'to', 'help', 'Tom.'], ['I', 'want', 'to', 'quit.'], ['She', 'has', 'a', 'large', 'room', 'all', 'to', 'herself.'], ['On', 'the', 'plate', 'was', 'a', 'piece', 'of', 'chicken,', 'a', 'potato', 'and', 'some', 'green', 'peas.'], ['She', 'will', 'soon', 'clear', 'away', 'these', 'dishes.'], ["Who's", 'that', 'cute', 'guy', 'I', 'saw', 'you', 'with', 'yesterday?'], ["I'll", 'give', 'you', 'a', 'hand.'], ['He', 'came', 'running.'], ['I', "don't", 'go', 'jogging', 'as', 'often', 'as', 'I', 'used', 'to.'], ['You', 'look', 'so', 'handsome.'], ['Did', 'you', 'foresee', 'this?'], ['What', 'you', 'have', 'said', 'applies', 'only', 'to', 'single', 'women.'], ['"Are', 'the', 'drinks', 'free?"', '"Only', 'for', 'ladies."'], ["They're", 'not', 'alone.'], ["You're", 'going', 'to', 'want', 'to', 'see', 'this.'], ['Where', 'were', 'you', 'when', 'your', 'wife', 'disappeared,', 'Tom?'], ['Tom', 'was', 'a', 'teacher', 'for', 'nearly', 'thirty', 'years.'], ["Don't", 'make', 'me', 'do', 'it', 'again.'], ["Don't", 'be', 'so', 'impatient.'], ['Put', 'on', 'your', 'pajamas', 'and', 'go', 'to', 'bed.'], ['You', "don't", 'care', 'about', 'me.'], ['I', 'need', 'a', 'Kleenex.'], ['Who', 'do', 'you', 'want', 'to', 'talk', 'to?'], ['The', 'kite', 'got', 'caught', 'in', 'the', 'tree.'], ['You', 'are', 'big.'], ['He', 'missed', 'class.'], ['Do', 'you', 'enjoy', 'losing?'], ['They', 'died', 'on', 'the', 'battlefield.'], ['I', 'know', 'Tom', 'was', 'horrified.'], ['He', 'should', 'have', 'known', 'better.'], ['Do', 'you', 'want', 'to', 'know', 'what', 'I', 'think?'], ["They're", 'all', 'tourists.'], ['Our', "company's", 'showroom', 'was', 'a', 'hit', 'with', 'the', 'ladies.'], ['My', 'new', 'shoes', 'are', 'comfortable.'], ['Hang', 'the', 'mirror', 'on', 'the', 'wall.'], ['He', 'kicked', 'the', 'ball.'], ['That', 'was', 'a', 'beautiful', 'speech.'], ['Was', 'anybody', 'with', 'you?'], ['You', 'have', 'somebody', 'you', 'can', 'talk', 'to,', "don't", 'you?'], ["She's", 'my', 'sister.'], ['I', 'have', 'a', 'friend', "who's", 'a', 'pilot.'], ["What's", 'the', 'last', 'thing', 'that', 'you', 'remember?'], ['Science', 'does', 'not', 'solve', 'all', 'the', 'problems', 'of', 'life.'], ['God', 'sent', 'a', 'sign.'], ['My', 'tooth', 'hurts.'], ['You', 'came', 'too', 'late.'], ['Tom', 'was', 'asked', 'to', 'be', 'best', 'man', 'at', "Mary's", "brother's", 'wedding.'], ['We', 'have', 'some', 'celebrating', 'to', 'do.'], ["I'm", 'willing', 'to', 'accept', 'your', 'offer.'], ["It's", 'too', 'late', 'for', 'me.'], ['Please', 'contact', 'me', 'by', 'letter.'], ['I', 'want', 'everyone', 'to', 'be', 'there.'], ['I', 'thought', 'you', 'wanted', 'a', 'divorce.'], ["Tom's", 'gone.'], ['Tom', 'has', 'dark', 'skin.'], ['It', 'was', 'a', 'crime', 'of', 'passion.'], ['That', 'restaurant', 'is', 'too', 'expensive', 'for', 'me.'], ['Which', 'beach', 'do', 'you', 'like', 'to', 'go', 'to?'], ['I', 'think', 'Tom', 'is', 'loyal.'], ["It's", 'a', 'surprise.'], ['We', 'acted', 'in', 'good', 'faith.'], ['He', 'was', 'accused', 'of', 'being', 'a', 'spy.'], ['The', 'actor', 'died', 'at', 'the', 'height', 'of', 'his', 'popularity.'], ['Did', 'the', 'trip', 'live', 'up', 'to', 'your', 'expectations?'], ['You', 'know', 'I', "don't", 'like', 'Tom.'], ['He', 'came', 'home', 'late', 'last', 'night.'], ['Her', 'dress', 'was', 'torn.'], ['I', 'suppose', "you'll", 'be', 'studying', 'all', 'day', 'tomorrow.'], ['Tom', 'teaches', 'us', 'French.'], ['Tom', 'seems', 'dangerous.'], ['Is', 'there', 'something', 'in', 'particular', 'that', "you're", 'looking', 'for?'], ['Try', 'putting', 'yourself', 'in', 'my', 'shoes.'], ['She', "didn't", 'go', 'far.'], ['It', 'looks', 'like', 'the', 'party', 'in', 'power', 'will', 'win', 'the', 'upcoming', 'election.'], ['Can', 'you', 'read', 'that', 'sign', 'ahead', 'of', 'us?'], ['The', 'cows', 'were', 'moving', 'very', 'slowly', 'through', 'the', 'long', 'green', 'grass.'], ["Don't", 'ask', 'me', 'again.'], ["Don't", 'you', 'think', 'you', 'deserve', 'that?'], ['Why', 'are', 'you', 'calling', 'Tom?'], ['Did', 'you', 'have', 'fun?'], ['Stop', 'right', 'there,', 'please.'], ['All', 'this', 'bickering', 'is', 'starting', 'to', 'fray', 'my', 'nerves.'], ['I', 'believe', 'you,', 'but', 'unfortunately', 'Tom', "doesn't."], ['She', 'closed', 'her', 'eyes.'], ['I', "don't", 'think', 'we', 'need', 'permission', 'to', 'do', 'this.'], ['It', "didn't", 'end', 'well.'], ['I', 'often', 'told', 'you', 'to', 'do', 'your', 'duty,', 'but', 'you', 'would', 'not', 'listen', 'to', 'me.'], ['Just', 'a', 'minute.'], ['I', 'think', 'we', 'can', 'do', 'this', 'without', 'any', 'extra', 'help.'], ['Take', 'whatever', 'you', 'want.'], ["I'm", 'not', 'sure', "what's", 'wrong.', 'We', 'should', 'have', 'heard', 'from', 'him', 'by', 'now.'], ["I'm", 'on', 'a', 'budget,', 'so', 'I', "don't", 'eat', 'out', 'more', 'than', 'three', 'times', 'a', 'week.'], ['We', 'should', 'not', 'put', 'restrictions', 'on', 'foreign', 'trade.'], ['I', 'hate', 'insects.'], ["You'll", 'come', 'back,', "won't", 'you?'], ['I', 'thought', 'I', 'told', 'you', 'never', 'to', 'call', 'me.'], ['This', 'cold', 'weather', "isn't", 'usual', 'for', 'June.'], ['Where', 'are', 'your', 'umbrellas?'], ['No', 'one', 'else', 'could', 'do', 'my', 'work.'], ['Tom', 'noticed', 'several', 'differences.'], ['She', 'disliked', 'him.'], ['Tom', 'built', 'an', 'igloo', 'in', 'his', 'backyard.'], ['I', 'am', 'married', 'and', 'I', 'have', 'two', 'sons.'], ["You're", 'a', 'filthy', 'liar!'], ['I', 'know', 'a', 'good', 'place', 'for', 'dinner.'], ['They', 'were', 'so', 'frightened', 'that', 'they', "couldn't", 'move', 'an', 'inch.'], ['See', 'that', 'this', 'never', 'happens', 'again.'], ["I've", 'brought', 'a', 'cup', 'of', 'coffee.'], ['The', 'couple', 'separated,', 'never', 'to', 'see', 'each', 'other', 'again.'], ['She', 'is', 'friendly', 'to', 'everybody.'], ['That', 'could', 'be', 'wrong.'], ['Does', 'it', 'offend', 'you?'], ['I', "don't", 'have', 'any', 'friends.'], ['Of', 'course', 'you', 'can', 'trust', 'me.', 'Have', 'I', 'ever', 'given', 'you', 'a', 'bum', 'steer', 'before?'], ['I', 'have', 'to', 'finish', 'this', 'first.'], ['Your', 'country', 'thanks', 'you.'], ['He', 'was', 'afraid', 'of', 'his', 'wife.'], ['I', 'made', 'a', 'fool', 'of', 'myself.'], ['He', 'served', 'his', 'king', 'faithfully.'], ['Saint', "Patrick's", 'Day', 'is', 'celebrated', 'on', 'March', '17th.'], ['Keep', 'the', 'window', 'closed.'], ['Keep', 'me', 'informed.'], ['Kids', 'can', 'be', 'so', 'mean.'], ['I', "don't", 'need', 'to', 'tell', 'you', 'anything.'], ['It', 'is', 'none', 'of', 'your', 'business.'], ['Tom', 'became', 'an', 'engineer.'], ['Studying', 'how', 'to', 'communicate', 'effectively', 'is', 'time', 'well', 'spent.'], ["You'll", 'never', 'leave', 'this', 'town.'], ["I've", 'been', 'here', 'all', 'week.'], ['What', 'was', 'I', 'saying?'], ['She', 'seems', 'to', 'understand', 'what', 'I', 'say.'], ['Cows', 'provide', 'us', 'with', 'milk.'], ['Does', 'that', 'mean', "you'll", 'stay?'], ["It's", 'an', 'old', 'picture.'], ['You', 'are,', 'hands', 'down,', 'the', 'biggest', 'idiot', "I've", 'ever', 'met.'], ['I', 'think', 'Tom', 'is', 'reliable.'], ["It's", 'the', 'cops!'], ["It's", 'hot', 'down', 'here.'], ['He', 'looks', 'pale.'], ['No', 'one', 'knows', 'her', 'name.'], ["You've", 'barely', 'said', 'a', 'word', 'all', 'night.'], ['Why', 'not', 'apply', 'for', 'that', 'job?'], ['I', 'was', 'caught', 'in', 'a', 'shower', 'on', 'my', 'way', 'home', 'from', 'school.'], ['I', 'ran', 'out', 'of', 'gas.'], ['They', 'are', 'very', 'cheerful.'], ['He', 'was', 'mistaken', 'for', 'his', 'younger', 'brother.'], ['I', 'know', 'that', 'you', 'lied', 'to', 'me', 'the', 'other', 'day.'], ['This', 'table', 'has', 'a', 'smooth', 'surface.'], ['I', 'had', 'a', 'very', 'tight', 'schedule', 'last', 'week,', 'but', 'this', 'week', "I'm", 'relatively', 'free.'], ['Tom', 'seems', 'to', 'know', 'the', 'way.'], ['This', 'is', 'your', 'fate.'], ['You', 'were', 'always', 'very', 'kind.'], ['I', 'think', 'Tom', 'needs', 'something.'], ["It'll", 'probably', 'take', 'you', 'about', 'three', 'hours', 'to', 'do', 'that.'], ['What', 'are', 'we', 'supposed', 'to', 'do?'], ['I', 'was', 'disappointed', 'by', 'the', 'news.'], ['She', 'plays', 'tennis', 'after', 'school.'], ['He', 'is', 'mentally', 'handicapped.'], ['He', 'struck', 'a', 'match.'], ['He', 'said', 'he', 'had', 'come', 'to', 'Japan', 'the', 'previous', 'week.'], ['The', 'moon', 'has', 'come', 'out.'], ['That', 'car', 'has', 'a', 'roof', 'rack.'], ['Here', 'I', 'come.'], ['I', "couldn't", 'make', 'myself', 'understood', 'in', 'French.'], ['She', 'became', 'drowsy', 'after', 'supper.'], ["You're", 'disgusting.'], ['Tom', 'tried', 'to', 'stay', 'quiet.'], ['Tom', 'tried', 'to', 'remember', 'what', 'Mary', 'had', 'told', 'him.'], ['Needless', 'to', 'say,', 'he', 'never', 'came', 'again.'], ['We', 'had', 'fun', 'with', 'it.'], ['A', 'lot', 'of', 'people', 'feel', 'the', 'same', 'way', 'you', 'do.'], ["I'd", 'like', 'to', 'give', 'this', 'to', 'somebody', 'we', 'can', 'trust.'], ['Would', 'that', 'make', 'you', 'happy?'], ['I', 'thought', "you'd", 'got', 'lost.'], ['Tom', 'has', 'postponed', 'his', 'party.'], ['You', 'need', 'to', 'work', 'together.'], ["You'll", 'always', 'be', 'welcome', 'here.'], ['I', "don't", 'see', 'it', 'that', 'way.'], ['Tom', 'and', 'Mary', 'laughed.'], ["I've", 'lost.'], ['Are', 'you', 'sure', 'he', 'can', 'do', 'this?'], ["She's", 'not', 'my', 'type.'], ['Did', 'you', 'solve', 'the', 'problem?'], ['What', 'time', 'did', 'you', 'get', 'home?'], ['That', 'hurts.'], ['You', 'should', 'spend', 'less', 'time', 'complaining', 'and', 'more', 'time', 'doing', 'something', 'productive.'], ['You', 'can', 'rely', 'on', 'him.'], ['I', "don't", 'know', 'if', 'I', 'have', 'enough', 'time.'], ['I', 'was', 'expecting', 'a', 'tougher', 'game.'], ['Fill', 'the', 'bucket', 'with', 'water.'], ['Tom', 'is', 'a', 'good', 'person.'], ['What', 'do', 'you', 'think', 'of', 'the', 'new', 'teacher?'], ['His', 'book', 'inspired', 'me.'], ['Now', "let's", 'see', 'what', 'happens.'], ['I', 'was', 'starving.'], ['No', "one's", 'judging', 'you.'], ['Tom', 'refuses', 'to', 'eat.'], ['She', 'threatened', 'to', 'set', 'our', 'house', 'on', 'fire.'], ['Settlers', 'were', 'forced', 'off', 'their', 'land.'], ["You're", 'quite', 'safe.'], ["We'll", 'fail.'], ['Where', 'did', 'they', 'get', 'all', 'this?'], ["I'd", 'like', 'to', 'come', 'along', 'if', 'you', "don't", 'mind.'], ['The', 'news', 'was', 'unbelievably', 'terrible.'], ['Why', 'are', 'you', 'blaming', 'us?'], ['I', 'gave', 'you', 'fair', 'warning.'], ['I', "can't", 'get', 'the', 'cap', 'off', 'this', 'bottle.'], ['He', 'wrote', 'a', 'letter.'], ['I', "won't", 'let', 'you', 'ruin', 'this.'], ['You', 'should', 'make', 'up', 'your', 'own', 'mind.'], ['Tom', 'has', 'enormous', 'potential.'], ['He', 'measured', 'the', 'length', 'of', 'the', 'bed.'], ['He', 'gave', 'me', 'all', 'the', 'money', 'he', 'was', 'carrying', 'with', 'him.'], ['My', 'brother', 'is', 'out.'], ['She', 'sang', 'the', 'song', 'with', 'tears', 'running', 'down', 'her', 'cheeks.'], ['Three', 'were', 'wounded.'], ['Leave', 'it', 'all', 'to', 'me.'], ['It', "isn't", 'expensive.'], ['Try', 'not', 'to', 'be', 'so', 'tense.'], ['He', "couldn't", 'hold', 'his', 'temper', 'any', 'longer.'], ['Open', 'the', 'window,', 'will', 'you?'], ['Did', 'you', 'hear', 'that', 'sound?'], ['You', "don't", 'have', 'to', 'explain.'], ['They', 'say', "he's", 'very', 'rich.'], ['Look', 'at', 'the', 'map', 'on', 'the', 'wall', 'carefully.'], ['What', 'do', 'you', 'make', 'of', 'all', 'this?'], ['Not', 'everyone', 'got', 'along.'], ["I'm", 'sorry.', 'I', "didn't", 'mean', 'to', 'make', 'you', 'cry.'], ['You', "don't", 'look', 'so', 'busy.'], ["That's", 'why', 'no', 'one', 'wants', 'to', 'work', 'with', 'you.'], ['Do', 'you', 'have', 'the', 'book?'], ['Tom', "doesn't", 'even', 'live', 'in', 'Boston.'], ['I', 'really', 'wish', 'I', 'could', 'go', 'with', 'you,', 'but', 'I', "can't."], ['We', 'need', 'to', 'get', 'out', 'of', 'here.'], ['Keep', 'your', 'hands', 'off', 'my', 'bicycle.'], ['She', 'despises', 'people', 'who', 'lie.'], ['Did', 'you', 'do', "yesterday's", 'homework?'], ['You', "don't", 'need', 'to', 'wait.'], ['It', 'is', 'true', 'that', 'the', 'earth', 'is', 'round.'], ['I', 'can', 'see', 'right', 'through', 'you.'], ["I'll", 'be', 'gone', 'until', 'Sunday.'], ["That's", 'what', 'I', 'usually', 'do.'], ["I'm", 'glad', 'you', 'decided', 'to', 'come.'], ["I'm", 'interested', 'in', 'oriental', 'pottery.'], ['Be', 'careful,', 'there', 'are', 'cougars', 'in', 'this', 'area.'], ['The', 'policeman', 'aimed', 'his', 'gun', 'at', 'the', 'man.'], ['I', "can't", 'find', 'the', 'right', 'man', 'for', 'me.'], ['Who', 'can', 'prevent', 'it?'], ['Let', 'me', 'repair', 'it.'], ["I'll", 'take', 'responsibility.'], ['The', "Queen's", 'crown', 'was', 'made', 'of', 'gold.'], ["What's", 'your', 'name?'], ['Who', 'were', 'you', 'talking', 'to?'], ['Why', "didn't", 'Tom', 'get', 'on', 'the', 'bus?'], ['Be', 'proud', 'of', 'yourself.'], ['A', 'bird', 'in', 'the', 'hand', 'is', 'better', 'than', 'two', 'in', 'the', 'bush.'], ['There', 'was', 'a', 'large', 'audience', 'at', "yesterday's", 'concert.'], ['If', 'you', 'get', 'your', 'right', 'ear', 'pierced,', 'that', 'means', "you're", 'gay.'], ['I', 'have', 'to', 'finish', 'the', 'work', 'by', 'four', "o'clock."], ['It', 'never', 'occurred', 'to', 'me', 'that', 'he', 'loved', 'me.'], ['Just', 'one', 'moment,', 'please.'], ['Tom', 'loves', 'his', 'work.'], ["Let's", 'proceed.'], ['I', 'am', 'in', 'no', 'mood', 'for', 'joking.'], ['My', 'daughter', 'is', 'looking', 'forward', 'to', 'Christmas.'], ['He', "didn't", 'want', 'to', 'antagonize', 'her.'], ['He', 'remembers', 'writing', 'to', 'her', 'every', 'week.'], ['I', "wasn't", 'hired.'], ['Can', 'you', 'pay', 'me', 'in', 'advance?'], ['Tom', 'forgot', 'to', 'tell', 'Mary', 'what', 'needed', 'to', 'be', 'done.'], ['I', 'can', 'verify', 'that', "that's", 'the', 'truth', 'myself.'], ['Let', 'me', 'take', 'a', 'gander.'], ['Take', 'one', 'of', 'these.'], ['Did', 'you', 'volunteer', 'us?'], ['She', 'was', 'very', 'rude', 'to', 'him.'], ['I', 'have', 'no', 'idea', 'to', 'what', 'extent', 'I', 'can', 'trust', 'them.'], ['Do', 'you', 'know', "what's", 'going', 'on', 'there?'], ['I', 'grew', 'up', 'on', 'a', 'farm.'], ['What', 'kind', 'of', 'mistakes', 'did', 'you', 'make?'], ['Why', "don't", 'you', 'sit', 'here?'], ['We', 'are', 'Australian.'], ['She', 'reproached', 'me', 'for', 'being', 'lazy.'], ['I', "can't", 'figure', 'out', 'why', 'nobody', 'comes', 'here', 'anymore.'], ['Keep', 'the', 'money.'], ['There', 'is', 'more', 'water', 'than', 'is', 'needed.'], ['Luck', 'turned', 'in', 'my', 'favor.'], ["I'll", 'never', 'leave', 'you', 'alone', 'again.'], ['I', 'thought', 'you', 'might', 'want', 'to', 'know.'], ['When', 'are', 'you', 'planning', 'to', 'tie', 'the', 'knot?'], ['Doctors', 'removed', 'the', 'bullet.'], ['A', 'dog', 'is', 'barking.'], ['I', 'know', 'that', 'Tom', "can't", 'speak', 'French.'], ['There', 'is', 'plenty', 'of', 'water.'], ['Tsunamis', 'swept', 'through', 'rice', 'fields', 'and', 'flooded', 'the', 'towns.'], ["How's", 'school?'], ["Let's", 'hurry', 'up.'], ['Words', 'failed', 'him.'], ['How', 'can', 'I', 'pay?'], ["How's", 'your', 'old', 'lady', 'doing?'], ['My', 'father', 'can', 'speak', 'French,', 'but', 'my', 'mother', "can't."], ['I', 'was', 'eating', 'lunch', 'when', 'the', 'phone', 'rang.'], ['I', 'will', 'deal', 'with', 'him', 'myself.'], ['He', 'will', 'be', 'ready.'], ['If', 'your', 'answer', 'is', 'correct,', 'it', 'follows', 'that', 'mine', 'is', 'wrong.'], ['I', "don't", 'believe', 'a', 'word', 'of', 'what', 'people', 'have', 'been', 'saying', 'about', 'her.'], ['How', 'could', 'it', 'be?'], ['Hurry', 'up,', 'girls.'], ['It', 'is', 'no', 'use', 'blaming', 'him', 'for', 'the', 'accident', 'now.'], ['How', 'long', 'is', 'it?'], ['We', 'need', 'your', 'help.'], ['We', "weren't", 'talking', 'about', 'you.'], ['I', 'would', 'like', 'to', 'talk', 'to', 'him', 'face', 'to', 'face.'], ['This', 'may', 'take', 'a', 'while.'], ["I'm", 'supposed', 'to', 'be', 'the', 'one', 'helping', 'you.'], ["We've", 'got', 'to', 'find', 'Tom.'], ['It', 'seems', 'that', "he's", 'happy.'], ['I', 'really', 'do', 'have', 'to', 'get', 'back', 'to', 'work.'], ['Are', 'you', 'interested?'], ['A', 'nap', 'would', 'be', 'good.'], ['I', "don't", 'expect', 'anything', 'from', 'you.'], ['There', 'they', 'go', 'again.'], ['I', "don't", 'want', 'to', 'see', 'you.'], ['Keep', 'out', 'of', 'sight.'], ['Tom', 'burned', 'all', 'of', 'the', 'letters', 'that', 'Mary', 'had', 'sent', 'him.'], ["That's", 'not', 'exactly', 'true.'], ['Tom', 'travels', 'a', 'lot.'], ["I'm", 'unhappy.'], ['I', 'chose', 'last', 'time.', 'You', 'choose', 'this', 'time.'], ['My', 'parents', "wouldn't", 'allow', 'me', 'to', 'do', 'that', 'when', 'I', 'was', 'younger.'], ['It', 'would', 'be', 'better', 'to', 'stay', 'home', 'today.'], ['You', 'must', 'keep', 'your', 'hands', 'clean.'], ['Get', 'me', 'out', 'of', 'here.'], ['Do', 'you', 'want', 'to', 'leave', 'it', 'like', 'that?'], ["I'm", 'sorry,', 'I', "didn't", 'catch', 'that.'], ['I', 'want', 'to', 'have', 'a', 'word', 'with', 'Tom.'], ['What', 'kind', 'of', 'clothes', 'do', 'you', 'usually', 'wear', 'to', 'school?'], ['It', 'was', 'a', 'pleasant', 'day,', 'but', 'there', 'were', 'few', 'people', 'in', 'the', 'park.'], ['I', 'opened', 'the', 'window.'], ['I', "can't", 'believe', "I'm", 'doing', 'this.'], ["Let's", 'party.'], ['Close', 'the', 'window.'], ['Tom', 'knew', 'that', 'Mary', "wasn't", 'likely', 'to', 'be', 'busy.'], ['We', 'have', 'lunch', 'at', 'noon', 'every', 'day.'], ['I', 'want', 'you', 'back.'], ['I', 'know', 'that', 'Tom', 'likes', 'basketball.'], ['Are', 'you', 'enjoying', 'it?'], ["We've", 'got', 'to', 'get', 'you', 'to', 'a', 'hospital.'], ['I', 'would', 'like', 'to', 'check', "yesterday's", 'stock', 'prices...'], ["Don't", 'tell', 'me', 'you', "can't", 'swim.'], ['Tom', 'prepared', 'dinner', 'by', 'himself.'], ['Tom', 'said', 'that', 'Mary', 'died', 'in', 'her', 'sleep.'], ['He', 'is', 'said', 'to', 'have', 'died.'], ['Tom', 'was', 'fairly', 'nervous.'], ['My', 'mother', 'tells', 'me', 'not', 'to', 'study', 'so', 'hard.'], ['I', 'make', 'the', 'rules.'], ["It's", 'just', 'a', 'matter', 'of', 'time', 'before', 'someone', 'is', 'injured', 'or', 'killed.'], ['I', "don't", 'have', 'time', 'to', 'waste.'], ['Tell', 'Tom', "what's", 'going', 'on', 'here.'], ['I', "wasn't", 'able', 'to', 'remember', 'the', 'title', 'of', 'that', 'song.'], ['She', 'hung', 'the', 'calendar', 'on', 'the', 'wall.'], ['I', 'have', 'a', 'friend', 'who', 'cuts', 'his', 'own', 'hair.'], ["Don't", 'forget', 'to', 'include', 'me', 'in', 'the', 'count.'], ["I'm", 'going', 'to', 'need', 'you.'], ['He', "wouldn't", 'look', 'at', 'my', 'proposal.'], ['She', 'explained', 'to', 'him', 'why', 'she', 'was', 'late.'], ['At', 'last,', 'she', 'was', 'able', 'to', 'contact', 'her', 'old', 'friend.'], ['Rinse', 'with', 'warm', 'water.'], ['She', 'achieved', 'her', 'goal.'], ['The', 'door', 'squeaked.'], ['You', 'knew', 'that', 'already,', "didn't", 'you?'], ['They', 'want', 'us', 'to', 'come', 'in', 'right', 'away.'], ['Tom', 'turned', 'on', 'the', 'lamp.'], ['I', 'have', 'a', 'friend', 'coming', 'over', 'to', 'visit', 'tomorrow.'], ['I', 'see', 'your', 'point.'], ["I'd", 'like', 'to', 'talk', 'to', 'you', 'in', 'my', 'office.'], ['I', 'am', 'going', 'to', 'study.'], ['Do', 'you', 'think', "I'm", 'healthy?'], ['You', 'have', 'a', 'decision', 'to', 'make.'], ['The', 'lawyers', 'argued', 'the', 'case', 'for', 'hours.'], ['He', 'presented', 'her', 'with', 'a', 'doll.'], ["Everyone's", 'been', 'contacted.'], ['I', 'would', 'never', 'question', 'his', 'honesty.'], ['If', 'you', 'want,', 'you', 'can', 'phone', 'me.'], ["I've", 'done', 'that', 'a', 'lot', 'lately.'], ['We', 'saw', 'it', 'on', 'the', 'news.'], ["I've", 'tried', 'everything.'], ['I', 'think', "it's", 'very', 'likely', 'that', "they'll", 'arrive', 'next', 'week.'], ["I'm", 'not', 'leaving', 'without', 'you.'], ["We're", 'leaving', 'now.'], ['I', 'saw', 'you', 'at', 'the', 'flower', 'shop.'], ['What', 'would', 'I', 'do', 'if', 'they', 'really', 'came?'], ['When', 'we', 'entered', 'the', 'shack,', 'we', 'saw', 'a', 'half-eaten', 'pie', 'on', 'the', 'table.'], ['You', "aren't", 'as', 'short', 'as', 'I', 'am.'], ['He', 'ran', 'a', 'great', 'risk', 'in', 'the', 'jungle.'], ["I'm", 'not', 'scared', 'of', 'spiders.'], ['Stop', 'being', 'so', 'nice.'], ['I', 'have', 'an', 'exam', 'tomorrow.'], ['He', 'managed', 'to', 'escape', 'through', 'a', 'window.'], ['We', "don't", 'have', 'a', 'moment', 'to', 'lose.'], ['After', 'I', 'watched', 'TV,', 'I', 'went', 'to', 'bed.'], ['I', "don't", 'think', 'that', 'Tom', 'lied', 'to', 'us.'], ['They', 'arrived', 'too', 'soon.'], ["I'm", 'not', 'free', 'to', 'go', 'this', 'afternoon.'], ['He', 'swallowed', 'his', 'pride.'], ["You're", 'grumpy.'], ['The', 'man', 'robbed', 'her', 'bag.'], ['He', 'set', 'a', 'trap', 'to', 'catch', 'the', 'animal.'], ['We', 'must', 'do', 'it', 'again.'], ["Where's", 'all', 'that', 'money', 'going?'], ['This', 'doll', 'costs', 'only', 'sixty', 'cents.'], ["I'm", 'sure', 'Tom', "doesn't", 'do', 'that', 'anymore.'], ['Anybody', 'can', 'solve', 'that', 'problem.'], ['They', 'concluded', 'he', 'was', 'lying.'], ['Not', 'everyone', 'was', 'celebrating.'], ['His', 'novel', 'is', 'beyond', 'my', 'comprehension.'], ['We', "won't", 'let', 'that', 'happen.'], ['Their', 'son', 'grew', 'bigger.'], ['Shut', 'the', 'door.'], ['I', 'got', 'lost', 'in', 'the', 'woods.'], ['I', 'have', 'no', 'time', 'to', 'write', 'to', 'her.'], ['Why', 'are', 'you', 'still', 'here?'], ['I', 'know', 'the', 'real', 'reason', 'for', 'his', 'absence.'], ['Did', 'you', 'talk', 'to', 'your', 'wife?'], ['How', 'can', 'you', 'be', 'sure', 'of', 'that?'], ['Osaka', 'is', 'the', 'center', 'of', 'commerce', 'in', 'Japan.'], ['If', 'you', 'are', 'to', 'realize', 'your', 'dream,', 'you', 'must', 'work', 'harder.'], ['I', 'have', 'no', 'choice', 'but', 'to', 'eat', 'what', 'they', 'serve', 'me.'], ['I', 'wanted', 'to', 'discuss', 'this', 'with', 'you', 'yesterday,', 'but', 'you', "didn't", 'seem', 'to', 'want', 'to', 'listen.'], ['I', 'was', 'happy', 'to', 'hear', 'the', 'news.'], ['How', 'certain', 'are', 'you', 'that', "he's", 'a', 'criminal?'], ['I', 'was', 'trying', 'to', 'prove', 'something.'], ['Do', 'you', 'know', 'if', 'she', 'can', 'speak', 'English?'], ['I', 'am', 'badly', 'in', 'need', 'of', 'your', 'help.'], ["We're", 'out', 'of', 'money.'], ['We', "could've", 'made', 'a', 'fortune.'], ['They', 'were', 'buying', 'time.'], ['I', 'would', 'like', 'to', 'go', 'to', 'the', 'USA.'], ['If', 'you', 'could', 'do', 'that', 'for', 'me,', "I'd", 'appreciate', 'it.'], ['Take', 'out', 'your', 'notebooks.'], ["I'll", 'take', 'care', 'of', 'this.'], ['Tom', 'was', 'mauled', 'by', 'a', 'dog', 'when', 'he', 'was', 'a', 'kid.'], ['I', "don't", 'have', 'them', 'yet.'], ['I', 'want', 'a', 'third', 'alternative.'], ['My', 'brother', 'is', 'now', 'in', 'Australia.'], ['Am', 'I', 'cleared', 'for', 'duty?'], ["I'm", 'volunteering.'], ['Let', 'me', 'stop', 'here.'], ["You're", 'thirty', 'thousand', 'dollars', 'in', 'debt.'], ['Today', 'I', "don't", 'want', 'to', 'hear', 'any', 'complaints.'], ['He', "didn't", 'know', 'how', 'to', 'express', 'himself.'], ['I', 'think', 'we', 'need', 'more', 'time.'], ['I', 'expect', 'everyone', 'to', 'work', 'hard.'], ['She', 'married', 'him', 'even', 'though', 'she', "didn't", 'like', 'him.'], ['I', 'folded', 'all', 'the', 'towels.'], ['Tom', "doesn't", 'know', 'anything', 'about', 'computers.'], ['I', 'thought', "I'd", 'prefer', 'going', 'by', 'myself.'], ['She', 'met', 'her', 'uncle', 'at', 'the', 'shop.'], ['What', 'a', 'cute', 'baby!'], ['Crying', 'is', 'normal.'], ["I'd", 'prefer', 'a', 'brown', 'one.'], ['I', 'like', 'disco', 'music.'], ["Let's", 'go', 'for', 'a', 'ride', 'in', 'my', 'car.'], ['I', 'need', 'some', 'alone', 'time.'], ['I', 'have', 'to', 'get', 'away', 'from', 'this', 'place.'], ["Don't", 'say', 'a', 'word', 'to', 'anyone.'], ['You', "don't", 'have', 'a', 'lot', 'to', 'say,', 'do', 'you?'], ['We', "can't", 'just', 'leave', 'Tom', 'here', 'by', 'himself.'], ['The', "king's", 'son', 'was', 'kidnapped.'], ['I', 'had', 'some', 'things', 'to', 'take', 'care', 'of.'], ['Mary', 'is', "Tom's", 'daughter-in-law.'], ['Are', 'you', 'afraid', 'of', 'that?'], ['Germany', 'did', 'not', 'want', 'war', 'with', 'the', 'United', 'States.'], ['He', 'looks', 'after', 'us.'], ['This', 'is', 'pretty', 'bad.'], ["I'm", 'not', 'the', 'only', 'person', 'who', "couldn't", 'do', 'that.'], ['At', 'least', 'they', 'listened', 'to', 'me.'], ['This', 'is', 'a', 'painting.'], ['I', 'have', 'three', 'dogs.'], ['He', 'does', 'not', 'even', 'know', 'how', 'to', 'sign', 'his', 'name.'], ['They', 'were', 'busy.'], ['We', 'can', 'talk.'], ['I', 'come', 'in', 'peace.'], ['I', 'just', "don't", 'want', 'to', 'see', 'you', 'get', 'disappointed.'], ['I', 'remember', 'it', 'well.'], ['I', 'knew', "I'd", 'find', 'you', 'here.'], ['The', "tree's", 'roots', 'extend', 'deep', 'into', 'the', 'earth.'], ['There', 'was', 'a', 'lot', 'of', 'food', 'in', 'the', 'house.'], ['What', 'makes', 'you', 'happy?'], ['Several', 'people', 'are', 'sleeping', 'in', 'the', 'next', 'room.'], ["Don't", 'be', 'so', 'hard', 'on', 'her.', 'She', 'meant', 'well.'], ['Two', 'beers,', 'please.'], ['I', 'need', 'a', 'Kleenex.'], ['I', 'want', 'to', 'hear', 'you', 'play', 'the', 'piano.'], ['What', 'you', 'are', 'saying', 'does', 'not', 'make', 'sense.'], ['The', 'date', 'of', 'manufacture', 'is', 'shown', 'on', 'the', 'lid.'], ['I', 'got', 'fined.'], ["I'm", 'a', 'farmer.'], ['Tom', 'asked', 'Mary', 'to', 'wait', 'for', 'him', 'in', 'front', 'of', 'the', 'library.'], ['I', 'said', 'that', 'I', "didn't", 'understand', 'French.'], ['I', 'hate', 'that', 'you', 'have', 'to', 'be', 'here.'], ['Tom', 'would', 'never', 'agree', 'to', 'that.'], ['You', 'look', 'beautiful', 'to', 'me.'], ['Do', 'you', 'need', 'a', 'ride?'], ['I', 'saw', 'that.'], ['You', 'are', 'too', 'young', 'to', 'travel', 'alone.'], ["I'm", 'not', 'the', 'one', 'who', 'should', 'be', 'doing', 'this.'], ['Can', 'we', 'afford', 'a', 'new', 'car?'], ['He', 'thinks', 'he', 'knows', 'everything.'], ['At', 'last,', 'we', 'arrived', 'at', 'the', 'village.'], ['I', "can't", 'make', 'that', 'decision', 'for', 'you.'], ['I', "don't", 'think', 'that', 'anybody', 'really', 'understands', 'me.'], ['I', 'studied', 'French', 'for', 'three', 'hours', 'last', 'night.'], ['No', 'one', 'knew', 'it.'], ['Instead', 'of', 'complaining,', 'maybe', 'you', 'should', 'help.'], ['They', 'never', 'found', 'out', 'the', 'truth.'], ['You', 'may', 'stay', 'here', 'if', 'you', 'like,', 'as', 'long', 'as', 'you', 'keep', 'quiet.'], ['Tom', 'lived', 'in', 'Australia', 'until', 'a', 'few', 'years', 'ago.'], ["I'm", 'breaking', 'up', 'with', 'my', 'girlfriend', 'tonight.'], ['I', 'do', 'not', 'want', 'any', 'money.'], ["You're", 'not', 'supposed', 'to', 'be', 'in', 'here.'], ['That', 'should', 'have', 'never', 'happened.'], ['We', 'have', 'a', 'deal.'], ['Go', 'wash', 'the', 'dishes.'], ["I'm", 'glad', 'to', 'be', 'here.'], ['He', "can't", 'be', 'older', 'than', 'I', 'am.'], ['Why', "don't", 'I', 'drive', 'you?'], ['Are', 'you', 'ready', 'to', 'order?'], ['Come', 'what', 'may,', 'I', "won't", 'change', 'my', 'opinion.'], ['Nobody', 'answered', 'the', 'door.'], ['He', 'is', 'in', 'the', 'habit', 'of', 'reading', 'the', 'newspaper', 'while', 'eating.'], ['Tom', 'went', 'into', 'the', 'room', 'first.'], ['Most', 'boys', 'like', 'computer', 'games.'], ['Do', 'you', 'know', 'what', 'day', 'it', 'is?'], ["I'll", 'call', 'you', 'at', 'seven.'], ["Tom's", 'house', 'is', 'near', 'the', 'beach.'], ["They're", 'not', 'home', 'yet.'], ["I'm", 'naked.'], ['Tom', 'left', 'his', 'dog', 'at', 'home.'], ['The', 'government', 'made', 'no', 'move', 'to', 'solve', 'the', 'housing', 'problem.'], ['My', 'father', 'never', 'gave', 'me', 'much', 'advice.'], ['I', "don't", 'think', 'Tom', 'would', 'try', 'to', 'do', 'that', 'without', 'our', 'help.'], ['You', 'gotta', 'get', 'more', 'organized.'], ['Those', 'two', 'are', 'exactly', 'alike.'], ['Why', 'did', 'you', 'come', 'here?'], ['Give', 'me', 'half', 'of', 'it.'], ['He', "can't", 'take', 'care', 'of', 'himself.'], ["You're", 'a', 'true', 'friend.'], ["It's", 'worth', 'a', 'trip.'], ['Leave', 'a', 'message.'], ['It', 'is', 'no', 'good', 'to', 'you.'], ['The', 'actress', 'said', 'that', 'she', 'was', 'engaged', 'to', 'a', 'banker.'], ["That's", 'the', 'danger.'], ['Have', 'you', 'ever', 'shot', 'anybody?'], ['I', 'know', 'how', 'this', 'looks', 'to', 'you.'], ['If', 'I', 'had', 'known', 'your', 'email', 'address,', 'I', "would've", 'written.'], ['I', 'knew', "you'd", 'come', 'back', 'to', 'me.'], ["Let's", 'end', 'this', 'fast.'], ['Need', 'I', 'go', 'on?'], ['Yesterday,', 'I', 'ate', 'an', 'apple.'], ['What', 'can', 'I', 'tell', 'you?'], ['She', 'expected', 'him', 'to', 'solve', 'the', 'problem.'], ["It's", 'my', 'duty', 'to', 'protect', 'you', 'from', 'danger.'], ['Her', 'new', 'hairstyle', 'covers', 'her', 'ears.'], ["I'm", 'breaking', 'up', 'with', 'my', 'girlfriend', 'tonight.'], ['You', "can't", 'sit', 'there.'], ['I', "won't", 'always', 'be', 'around', 'to', 'help', 'you.'], ['We', "can't", 'have', 'all', 'those', 'people', 'over', 'for', 'dinner.'], ["I'd", 'like', 'to', 'have', 'a', 'room', 'with', 'a', 'nice', 'view.'], ['What', 'are', 'you', 'cooking?'], ['I', "didn't", 'take', 'part', 'in', 'the', 'conversation.'], ['I', 'think', "I'll", 'take', 'a', 'bath', 'tonight.'], ['Our', 'teacher', 'often', 'overlooked', 'his', 'name', 'on', 'the', 'list.'], ['I', 'became', 'rich.'], ["We're", 'in', 'the', 'process', 'of', 'remodelling', 'our', 'kitchen.'], ['If', 'your', 'feelings', 'are', 'still', 'what', 'they', 'were', 'last', 'April,', 'tell', 'me', 'so', 'at', 'once.'], ['How', 'did', 'you', 'come', 'by', 'this', 'painting?'], ['Maybe', 'Tom', 'forgot.'], ['She', 'is', 'accustomed', 'to', 'doing', 'her', 'homework', 'before', 'dinner.'], ["It's", 'more', 'dangerous', 'than', 'I', 'thought.'], ['Who', 'did', 'you', 'think', 'I', 'was?'], ['What', 'time', 'did', 'you', 'wake', 'up', 'this', 'morning?'], ['We', 'have', 'a', 'problem.'], ['I', 'put', 'it', 'on', 'your', 'desk.'], ['Which', 'is', 'it', 'going', 'to', 'be?'], ["You're", 'my', 'boss.'], ['He', 'looked', 'up', 'at', 'the', 'sky.'], ['You', 'can', 'watch', 'television', 'after', 'dinner.'], ['We', 'were', 'in', 'the', 'living', 'room', 'when', 'we', 'heard', 'the', 'gunshot.'], ['He', 'asked', 'me', 'if', 'I', 'were', 'happy.'], ['This', 'is', 'no', 'place', 'for', 'children.'], ['Tom', 'said', 'he', 'would', 'try.'], ['We', 'need', 'to', 'eat.'], ['She', 'became', 'pregnant.'], ['I', "can't", 'just', 'leave', 'you', 'here.'], ["Who's", 'going', 'to', 'pay', 'for', 'this?'], ['Tom', "didn't", 'seem', 'impressed.'], ["I'd", 'never', 'do', 'what', 'Tom', 'did.'], ['Is', 'there', 'somebody', 'else', 'here?'], ['This', 'is', 'complicated.'], ['It', 'would', 'mean', 'a', 'great', 'deal', 'to', 'me', 'if', 'you', 'would', 'stay.'], ['Do', 'you', 'weigh', 'more', 'than', 'Tom?'], ['Pay', 'attention', 'to', 'what', "you're", 'doing.'], ['I', 'have', 'money', 'enough', 'to', 'buy', 'it.'], ['When', 'did', 'all', 'this', 'happen?'], ['She', 'was', 'lying', 'face', 'down', 'on', 'the', 'bed.'], ['How', 'may', 'I', 'help', 'you?'], ['There', 'is', 'a', 'bookstore', 'across', 'from', 'my', 'house.'], ['The', 'choice', 'is', 'yours.'], ['How', 'long', 'will', 'it', 'take?'], ['I', "can't", 'see', 'what', 'you', 'mean.'], ['You', 'were', 'bluffing,', "weren't", 'you?'], ['Someone', 'knocked', 'on', 'the', 'door.'], ['Have', 'a', 'good', 'Christmas.'], ['They', 'haven’t', 'slept', 'for', 'forty-eight', 'hours.'], ['I', 'have', 'a', 'lot', 'of', 'homework.'], ['I', 'imagine', 'Tom', 'will', 'be', 'a', 'finalist.'], ['All', 'we', 'need', 'is', 'water.'], ['He', 'ordered', 'me', 'to', 'sweep', 'the', 'room.'], ['Can', 'we', 'talk', 'about', 'this', 'for', 'a', 'minute?'], ['He', 'took', 'advantage', 'of', 'me.'], ['How', 'about', 'wearing', 'contact', 'lenses?'], ['You', 'have', 'a', 'lot', 'of', 'nerve!'], ['Do', 'you', 'really', 'like', 'that?'], ['Where', 'are', 'my', 'children?'], ["He's", 'old', 'and', 'crazy.'], ["I'm", 'just', 'not', 'very', 'busy.'], ['She', 'walked', 'around', 'looking', 'for', 'him.'], ['You', 'should', 'stay', 'here', 'a', 'few', 'days.'], ['The', 'atomic', 'number', 'for', 'hydrogen', 'is', '1.'], ['There', 'were', 'no', 'problems.'], ['I', 'figured', 'something', 'was', 'up.'], ["I'm", 'the', 'only', 'one', 'who', 'survived.'], ['I', 'knew', 'Tom', 'was', 'a', 'busy', 'man.'], ['What', 'if', 'Tom', 'finds', 'out?'], ['They', 'are', 'a', 'peace-loving', 'people.'], ['Today', 'is', 'September', '1st.'], ['How', 'can', 'we', 'do', 'that?'], ['I', "don't", 'know', 'if', "we're", 'going', 'to', 'be', 'able', 'to', 'make', 'it', 'to', 'Boston', 'for', 'Christmas.'], ['It', 'worked', 'for', 'me.'], ['Would', 'you', 'wait', 'a', 'second?'], ["I'm", 'trying', 'to', 'find', 'the', 'person', 'who', 'owns', 'this', 'guitar.'], ["It's", 'extremely', 'cold', 'today.'], ['Tom', 'flinched', 'involuntarily.'], ['Give', 'me', 'the', 'sword.'], ['Things', 'change', 'from', 'time', 'to', 'time,', 'and', 'one', 'should', 'change', 'with', 'them.'], ["I'm", 'the', 'one', 'who', 'ought', 'to', 'apologize.'], ['He', "didn't", 'have', 'time', 'to', 'read.'], ["Don't", 'put', 'all', 'your', 'eggs', 'in', 'one', 'basket.'], ['Bring', 'him', 'to', 'me.'], ["I'll", 'tell', 'you', 'why', 'I', "don't", 'like', 'Tom.'], ["It's", 'happening', 'all', 'over', 'again.'], ['One', 'of', 'the', 'girls', 'was', 'left', 'behind.'], ['Watch', 'out', 'for', 'rowdy', 'or', 'drunk', 'customers.'], ['I', "didn't", 'realize', 'you', 'were', 'hungry.'], ['I', 'want', 'my', 'dinner', 'brought', 'to', 'my', 'room.'], ['She', 'wants', 'to', 'keep', 'him', 'at', 'a', 'distance.'], ['I', 'wrote', 'that', 'book.'], ["It's", 'against', 'the', 'law.'], ['I', 'think', "that's", 'highly', 'unlikely.'], ["I'll", 'start', 'with', 'a', 'beer.'], ['I', 'have', 'to', 'admit', 'that', "you're", 'right.'], ["You're", 'no', 'fun.'], ['Stop', 'yelling', 'at', 'me.'], ['There', 'are', 'many', 'people', 'trying', 'to', 'buy', 'houses.'], ['Tom', "won't", 'come,', 'and', 'Mary', "won't", 'either.'], ['Do', 'you', 'really', 'think', "it's", 'bad?'], ['Nothing', 'would', 'make', 'me', 'happier', 'than', 'to', 'see', 'you', 'happy.'], ['I', 'telephoned', 'to', 'say', 'that', 'I', 'wanted', 'to', 'see', 'him.'], ["I'd", 'like', 'to', 'have', 'a', 'little', 'talk', 'with', 'you.'], ["I'll", 'sleep', 'on', 'it.'], ['Did', 'you', 'have', 'fun', 'last', 'night?'], ['Tom', "didn't", 'know', 'anyone.'], ["I'd", 'like', 'to', 'say', 'a', 'few', 'words.'], ['I', 'am', 'free', 'from', 'care.'], ['Some', 'people', 'think', 'the', 'president', 'spends', 'too', 'much', 'time', 'traveling.'], ['You', 'should', 'take', 'the', 'number', '5', 'bus.'], ['She', 'has', 'a', 'tattoo', 'of', 'a', 'lizard', 'on', 'her', 'thigh.'], ['Who', 'is', 'that', 'person?'], ['I', "can't", 'do', 'it', 'in', 'this', 'heat.'], ['She', 'dressed', 'like', 'a', 'boy.'], ["There's", 'nothing', 'else', 'I', 'need', 'to', 'buy.'], ['She', 'taught', 'music', 'for', 'thirty', 'years.'], ['He', 'went', 'away', 'in', 'a', 'hurry.'], ['She', 'spends', 'way', 'too', 'much', 'time', 'surfing', 'the', 'web.'], ['I', "couldn't", 'stand', 'it', 'any', 'longer.'], ['Now', 'drink', 'up.'], ['Guess', 'what', "I'm", 'holding', 'in', 'my', 'hand.'], ['You', "won't", 'believe', 'who', 'sat', 'down', 'next', 'to', 'me.'], ['Neither', 'of', 'his', 'students', 'passed', 'the', 'exam.'], ['Tom', 'is', 'laughing.'], ['Your', 'plan', 'sounds', 'great.'], ['No', 'one', 'cares', 'about', 'us.'], ['I', 'think', 'you', 'ought', 'to', 'pay', 'more', 'attention', 'in', 'class.'], ['I', "don't", 'know', 'what', "I've", 'been', 'so', 'afraid', 'of.'], ['I', 'remember', 'it', 'now.'], ['I', 'agree', 'completely', 'with', 'you', 'on', 'this', 'point.'], ['Tom', 'turned', 'off', 'the', 'faucet.'], ['Tom', 'and', 'I', 'usually', 'talked', 'to', 'each', 'other', 'in', 'French.'], ['Are', 'they', 'really', 'serious?'], ['They', "didn't", 'want', 'me', 'to', 'examine', 'it.'], ["I've", 'been', 'hoping', 'to', 'meet', 'you.'], ['Tom', 'told', 'us', 'about', 'his', 'last', 'trip', 'to', 'Boston.'], ['Did', 'you', 'enjoy', 'the', 'movie', 'you', 'saw', 'last', 'night?'], ['The', 'sky', 'is', 'covered', 'with', 'clouds.'], ['I', 'believe', 'you', 'have', 'my', 'umbrella.'], ['We', 'met', 'last', 'Thursday.'], ['Look', 'at', 'the', 'cat.'], ['She', 'likes', 'short', 'skirts.'], ["Wouldn't", 'you', 'rather', 'spend', 'your', 'time', 'doing', 'something', 'you', 'enjoy?'], ['She', 'is', 'two', 'years', 'older', 'than', 'you.'], ["That's", 'the', 'strangest', 'thing', "I've", 'ever', 'seen.'], ["It's", 'made', 'of', 'leather.'], ["You're", 'still', 'growing.'], ['Our', 'mother', 'had', 'no', 'choice', 'but', 'to', 'make', 'dinner', 'with', 'leftovers.'], ['The', 'sun', 'rises', 'in', 'the', 'east', 'and', 'sets', 'in', 'the', 'west.'], ["It's", 'just', 'a', 'fad.'], ['You', 'should', 'have', 'done', 'so.'], ['I', "don't", 'recommend', 'this', 'technique.'], ['This', 'is', 'useless.'], ['Are', 'you', 'in', 'a', 'lot', 'of', 'pain?'], ['Tom', 'is', 'schizophrenic.'], ["It's", 'worth', 'a', 'try.'], ['I', 'saw', 'the', 'two', 'together', 'on', 'several', 'occasions.'], ['I', 'know', 'your', 'brother', 'very', 'well.'], ['I', 'can', 'wait', 'a', 'few', 'hours.'], ['They', 'made', 'fun', 'of', 'Mary.'], ["We'll", 'put', 'you', 'on', 'the', 'list.'], ["I'm", 'not', 'sure', 'I', 'can', 'trust', 'him.'], ['She', 'asked', 'him', 'to', 'read', 'it', 'for', 'her', 'because', 'she', 'had', 'lost', 'her', 'glasses.'], ['I', "don't", 'often', 'tell', 'jokes.'], ['She', 'wished', 'she', 'had', 'been', 'born', 'twenty', 'years', 'earlier.'], ["I'm", 'committed.'], ['I', 'realized', 'I', "wasn't", 'ready.'], ['Take', 'a', 'look', 'at', 'these.'], ['I', 'need', 'a', 'drink.'], ['I', 'saw', 'Tom', 'enter', 'that', 'restaurant.'], ["I'll", 'come', 'with', 'you.'], ['Do', 'you', 'know', 'the', 'name', 'of', 'this', 'flower?'], ['I', 'knew', 'Tom', 'was', 'in', 'Boston.'], ['Tom', "doesn't", 'eat', 'between', 'meals.'], ['I', 'think', "you're", 'nuts.'], ['The', 'king', 'reigned', 'over', 'his', 'people', 'for', 'forty', 'years.'], ['Nowadays', 'nobody', 'believes', 'in', 'ghosts.'], ['Tom', "doesn't", 'like', 'pizza.'], ['I', 'want', 'to', 'see', 'the', 'scene', 'in', 'slow', 'motion.'], ["I've", 'been', 'making', 'too', 'many', 'mistakes.'], ["I'm", 'not', 'a', 'disbeliever.'], ['Do', 'you', 'have', 'a', 'license', 'to', 'fly', 'a', 'plane?'], ['I', 'am', 'fat.'], ['That', 'almost', 'made', 'me', 'laugh.'], ['How', 'many', 'books', 'does', 'he', 'have?'], ['What', 'time', 'does', 'your', 'plane', 'depart?'], ['The', 'equations', 'are', 'very', 'complicated.'], ["They'll", 'tell', 'you', 'the', 'truth.'], ["Don't", 'push', 'your', 'luck.'], ['My', 'mother', 'looks', 'young', 'for', 'her', 'age.'], ['Everybody', 'likes', 'polite', 'people.'], ['She', 'is', 'more', 'pretty', 'than', 'beautiful.'], ['I', 'climbed', 'over', 'the', 'fence.'], ['I', 'felt', 'a', 'drop', 'of', 'rain', 'on', 'my', 'head.'], ['If', "he'd", 'been', 'there,', "he'd", 'have', 'told', 'you', 'to', 'mind', 'your', 'manners.'], ['You', 'have', 'to', 'go.'], ['You', 'should', 'say', 'what', 'you', 'think.'], ["I'm", 'not', 'so', 'sure.'], ['You', 'are', 'watching', 'TV', 'all', 'the', 'time.'], ['Do', 'you', 'have', 'a', 'points', 'card?'], ['You', 'should', 'be', 'real', 'proud', 'of', 'yourself.'], ['Does', 'the', 'soup', 'taste', 'good?'], ['My', 'children', "won't", 'listen', 'to', 'me.'], ["It's", 'a', 'proven', 'fact.'], ['Would', 'you', 'be', 'willing', 'to', 'share', 'your', 'code', 'with', 'me?'], ['He', 'went', 'to', 'see', 'her', 'while', 'she', 'stayed', 'in', 'London.'], ['I', 'had', 'him', 'write', 'the', 'letter', 'for', 'me.'], ['Tom', 'bolted', 'the', 'door.'], ['I', 'can', 'walk', 'no', 'farther.'], ["I'd", 'rather', 'go', 'out', 'than', 'stay', 'indoors.'], ["Shouldn't", 'we', 'ask', 'Tom?'], ['Tom', 'looks', 'very', 'sick.'], ['They', 'do', 'that', 'sometimes.'], ['Will', 'you', 'try', 'this', 'on', 'for', 'me?'], ["Don't", 'be', 'upset.'], ['Is', 'your', 'homework', 'done?'], ["We're", 'not', 'gonna', 'make', 'it.'], ['Christmas', 'is', 'fast', 'approaching.'], ['Do', 'you', 'work', 'on', 'Mondays?'], ['This', 'feels', 'right.'], ['Can', 'you', 'give', 'me', 'a', 'discount?'], ['I', 'stayed', 'up', 'till', 'late', 'at', 'night.'], ['He', 'used', 'to', 'get', 'up', 'early.'], ['I', 'guess', 'I', "didn't", 'want', 'to', 'disappoint', 'you.'], ["Don't", 'your', 'neighbors', 'ever', 'complain?'], ["It's", 'not', 'weird.'], ["It's", 'not', 'my', 'style.'], ['I', 'need', 'to', 'keep', 'my', 'eyes', 'open.'], ['Take', 'a', 'seat.'], ["I'm", 'hungry', 'because', 'I', "haven't", 'had', 'lunch.'], ['Tom', 'is', 'on', 'the', 'swim', 'team', 'at', 'school.'], ["Didn't", 'anyone', 'question', 'you?'], ['The', 'fight', 'lasted', 'three', 'seconds.'], ['Put', 'your', 'pajamas', 'on', 'and', 'go', 'to', 'bed.'], ['An', 'image', 'is', 'worth', 'a', 'thousand', 'words.'], ['Tom', 'sat', 'down', 'and', 'waited.'], ['I', 'had', 'difficulty', 'convincing', 'her', 'of', 'the', 'dangers', 'of', 'smoking.'], ['They', 'stopped', 'talking.'], ['The', 'audience', 'were', 'all', 'foreigners.'], ['Tom', 'had', 'a', 'gun.'], ['How', 'much', 'did', 'you', 'have', 'to', 'pay', 'for', 'the', 'tickets?'], ["We'll", 'dine', 'together', 'and', 'then', 'go', 'to', 'the', 'theater.'], ["You're", 'right,', 'I', 'think.'], ['You', 'are', 'the', 'most', 'important', 'person', 'in', 'my', 'life.'], ['I', "don't", 'have', 'any', 'money', 'on', 'me.'], ["I'm", 'a', 'geologist.'], ['Please', 'keep', 'this', 'door', 'locked.'], ['When', 'you', 'surf', 'the', 'web,', 'you', 'may', 'be', 'tracked', 'by', 'websites.'], ['Mary', 'looks', 'cute', 'no', 'matter', 'what', 'she', 'wears.'], ['I', 'was', 'invited.'], ['We', 'hope', 'this', 'never', 'happens', 'again.'], ["I'm", 'rarely', 'invited', 'to', 'parties.'], ['They', 'teased', 'the', 'new', 'student.'], ['What', 'did', 'you', 'come', 'here', 'so', 'early', 'for?'], ['Why', "don't", 'you', 'sing', 'something', 'for', 'me?'], ['I', 'wanted', 'to', 'run', 'away', 'with', 'Tom.'], ['I', 'have', 'the', 'same', 'number', 'of', 'books', 'as', 'Tom', 'has.'], ['No', 'one', 'will', 'give', 'me', 'any', 'money.'], ['I', 'was', 'forced', 'to', 'do', 'it.'], ['The', 'classroom', 'is', 'clean.'], ['It', 'was', 'night.'], ['He', 'will', 'make', 'a', 'business', 'trip', 'to', 'London', 'next', 'week.'], ['I', 'am', 'a', 'stranger', 'here.'], ["There's", 'a', 'pyramid', 'in', 'Mexico', 'bigger', 'than', 'any', 'of', 'those', 'in', 'Egypt.'], ['We', 'respect', 'Tom', 'a', 'lot.'], ["I'm", 'the', 'teacher.'], ['Why', 'do', 'people', 'go', 'to', 'the', 'movies?'], ['They', 'have', 'no', 'natural', 'predators.'], ['I', 'held', 'the', 'knife', 'in', 'my', 'left', 'hand.'], ['I', 'let', 'my', 'sister', 'use', 'my', 'new', 'computer.'], ['Why', "don't", 'you', 'have', 'a', 'boyfriend?'], ['Why', "don't", 'you', 'slow', 'down', 'a', 'little', 'bit?'], ['The', 'tree', 'fell', 'down.'], ['The', "plane's", 'doors', 'were', 'already', 'closed', 'when', 'Tom', 'got', 'to', 'the', 'gate.'], ['I', 'want', 'to', 'talk', 'to', 'you', 'about', 'this', 'report.'], ["Let's", 'go', 'to', 'the', 'vegan', 'restaurant.'], ['I', 'like', 'both', 'science', 'and', 'math.'], ['Where', 'do', 'you', 'get', 'your', 'ideas', 'from?'], ["Don't", 'talk', 'back', 'to', 'me', 'like', 'that.'], ['Have', 'you', 'ever', 'seen', 'a', 'monkey?'], ['I', 'no', 'longer', 'live', 'in', 'Boston.'], ["Don't", 'forget', 'to', 'turn', 'off', 'the', 'gas', 'before', 'you', 'leave', 'the', 'house.'], ['Tom', 'is', 'hiding', 'in', 'the', 'attic.'], ['Sorry,', 'I', 'was', 'busy.'], ['I', 'will', 'translate.'], ['The', 'horse', 'is', 'mine.'], ['We', "can't", 'give', 'up', 'now.'], ['He', 'writes', 'scripts.'], ["We're", 'just', 'students.'], ["There's", 'no', 'need', 'to', 'speak', 'so', 'loud.'], ['Stand', 'up', 'and', 'introduce', 'yourself,', 'please.'], ['Tom', 'has', 'a', 'really', 'good', 'sense', 'of', 'direction.'], ['Is', 'Tom', 'well?'], ['Tom', "doesn't", 'know', 'anything.'], ['Dreams', 'sometimes', 'come', 'true.'], ['Are', 'you', 'sure', 'that', 'you', "haven't", 'forgotten', 'anything?'], ["What's", 'your', 'greatest', 'fear?'], ["I'd", 'like', 'one', 'more', 'blanket.'], ['Please', 'stop', 'playing', 'with', 'your', 'hat.'], ['You', 'need', 'to', 'be', 'more', 'careful', 'from', 'now', 'on.'], ['She', 'gave', 'me', 'a', 'meaningful', 'look.'], ['What', 'do', 'you', 'need?'], ['How', 'much', 'longer', 'do', 'we', 'have', 'to', 'stay', 'here?'], ['Tom', 'rolled', 'up', 'his', 'sleeves.'], ['Promise', 'me', "you'll", 'never', 'do', 'that', 'again.'], ['I', 'used', 'to', 'take', 'a', 'walk', 'in', 'the', 'morning.'], ['Is', 'Tom', 'from', 'Boston?'], ["She's", 'worrying', 'about', 'her', 'exams.'], ['She', 'forgot', 'that', 'she', 'had', 'promised', 'to', 'call', 'him', 'last', 'night.'], ['Tom', 'had', 'no', 'choice', 'but', 'to', 'do', 'what', 'the', 'boss', 'told', 'him', 'to', 'do.'], ["What's", 'the', 'problem', 'with', 'your', 'computer?'], ['My', 'boss', 'made', 'me', 'work', 'overtime.'], ['Tom', 'is', 'in', 'great', 'danger.'], ["You've", 'often', 'said', 'so', 'yourself.'], ['Are', 'you', 'getting', 'tired?'], ['Who', 'did', 'you', 'write', 'a', 'letter', 'to?'], ['During', 'the', 'war,', 'people', 'went', 'through', 'many', 'hardships.'], ['Why', 'would', 'you', 'want', 'to', 'leave?'], ["We're", 'still', 'alive.'], ['What', 'was', 'it?'], ['There', 'are', 'only', 'three', 'girls', 'in', 'the', 'class.'], ['She', 'threatened', 'him.'], ['A', 'successful', 'business', 'is', 'built', 'on', 'careful', 'financial', 'management.'], ['Tom', 'forgot', 'the', 'key', 'in', 'the', 'lock.'], ['I', 'heard', 'the', 'door', 'open.'], ['I', 'just', "didn't", 'know', 'how.'], ['He', 'is', 'my', 'best', 'friend.'], ['I', 'made', 'him', 'cry.'], ['It', 'really', "doesn't", 'affect', 'you,', 'does', 'it?'], ['Are', 'you', 'upset?'], ['Are', 'you', 'going', 'to', 'be', 'OK?'], ['I', "can't", 'go', 'to', 'the', 'police.'], ['Tom', 'wanted', 'to', 'play', 'chess.'], ['I', 'think', "they're", 'ready.'], ['Let', 'me', 'think', 'this', 'over.'], ['Why', 'are', 'you', 'always', 'so', 'happy?'], ['She', 'went', 'to', 'Italy', 'for', 'the', 'purpose', 'of', 'studying', 'music.'], ['Have', 'you', 'asked', 'if', 'they', 'want', 'one?'], ['Novels', "aren't", 'being', 'read', 'as', 'much', 'as', 'they', 'used', 'to', 'be.'], ['I', 'bet', "you're", 'talking', 'about', 'Tom.'], ['I', 'feel', 'really', 'stupid.'], ['Watch', 'the', 'rear.'], ["I've", 'known', 'Tom', 'for', 'quite', 'some', 'time.'], ['He', 'was', 'too', 'busy', 'to', 'notice', 'it.'], ['I', 'can', 'walk.'], ['I', 'forgot', 'his', 'phone', 'number.'], ["I'm", 'sorry,', 'but', "you're", 'wrong.'], ["I've", 'got', '30', 'dollars', 'in', 'my', 'wallet.'], ['The', 'earthworm', 'wriggled', 'when', 'I', 'touched', 'it.'], ["She's", 'loved', 'by', 'her', 'friends.'], ["I've", 'known', 'about', 'this', 'for', 'years.'], ['I', 'took', 'this', 'picture', 'a', 'week', 'ago.'], ['I', 'know', 'you', "don't", 'want', 'to', 'talk', 'about', 'what', 'happened.'], ['Have', 'you', 'made', 'a', 'list', 'yet?'], ["I've", 'been', 'working.'], ['We', 'all', 'want', 'prices', 'to', 'fall.'], ['This', 'conversation', 'is', 'a', 'masterpiece.'], ['I', 'want', 'them', 'alive.'], ['I', 'feel', 'quite', 'at', 'ease', 'among', 'strangers.'], ['I', 'have', 'no', 'idea', 'how', 'it', 'works.'], ['You', "shouldn't", 'eat', 'this.'], ['It', 'was', 'much', 'more', 'difficult', 'than', 'we', 'initially', 'thought.'], ["Where's", 'the', 'library?'], ['Tom', "doesn't", 'think', "he'll", 'be', 'able', 'come', 'tomorrow.'], ['Was', 'there', 'an', 'autopsy?'], ['They', 'stayed', 'at', 'a', 'five-star', 'hotel.'], ['I', 'made', 'a', 'promise.'], ['If', "you've", 'been', 'drinking,', 'perhaps', 'your', 'spouse', 'can', 'drive', 'you', 'home.'], ["You're", 'talkative.'], ['The', 'dog', 'barks', 'at', 'all', 'strangers.'], ['She', 'took', 'my', 'hand.'], ['We', 'helped', 'them', 'out', 'when', 'we', 'could.'], ['The', 'intersection', 'where', 'the', 'accident', 'happened', 'is', 'near', 'here.'], ['Where', 'did', 'he', 'do', 'it?'], ['I', 'will', 'stop', 'him', 'from', 'going.'], ['They', 'demanded', 'that', 'the', 'mayor', 'should', 'resign.'], ['I', 'got', 'injured', 'doing', 'that.'], ['Would', 'you', 'like', 'another', 'glass', 'of', 'ice', 'tea?'], ["I'm", 'sick', 'of', 'English.'], ['You', 'should', 'see', "Tom's", 'picture.'], ['May', 'I', 'sit', 'next', 'to', 'you?'], ['They', 'had', 'once', 'helped', 'each', 'other.'], ['Why', 'are', 'you', 'so', 'happy?'], ["You're", 'very', 'astute.'], ['This', 'is', 'the', "lover's", 'lane.'], ['I', 'told', 'Mary', 'that', 'I', 'loved', 'her.'], ["They're", 'two', 'very', 'different', 'things.'], ['I', 'want', 'you', 'to', 'tell', 'me', 'everything', 'you', 'know', 'about', 'that.'], ['From', 'the', 'position', 'of', 'the', 'wounds', 'on', 'the', 'body,', 'the', 'police', 'could', 'tell', 'that', 'the', 'attacker', 'was', 'left-handed.'], ['I', 'think', "that's", 'the', 'point.'], ['Last', 'night,', 'I', 'heard', 'dogs', 'howling.'], ["You're", 'taller', 'than', 'me.'], ['A', 'smart', 'dog', 'never', 'barks', 'for', 'no', 'reason.'], ['Where', 'are', 'they', 'meeting?'], ['He', 'did', 'not', 'understand', 'her', 'joke.'], ['Something', "weird's", 'going', 'on', 'here.'], ['Now', 'give', 'me', 'the', 'list.'], ['Can', 'you', 'verify', 'that?'], ['From', 'personal', 'experience,', 'I', 'know', 'that', 'any', 'encounter', 'with', 'him', 'will', 'leave', 'a', 'bad', 'taste', 'in', 'your', 'mouth.'], ['I', "didn't", 'mean', 'to', 'interrupt', 'your', 'conversation.'], ['No', 'one', 'laughed.'], ['My', 'father', 'used', 'to', 'read', 'to', 'me', 'at', 'bedtime.'], ['He', 'wanted', 'to', 'know', 'more', 'about', 'the', 'trees,', 'too.'], ['May', 'I', 'borrow', 'your', 'lawnmower?'], ['He', 'kept', 'his', 'promise.'], ["Let's", 'go', 'to', 'a', 'Japanese', 'restaurant.'], ['He', 'was', 'my', 'best', 'friend.'], ['This', 'is', 'really', 'brilliant.'], ['We', 'still', 'have', 'enough', 'time', 'to', 'discuss', 'it.'], ["Let's", 'wait', 'here', 'until', 'it', 'stops', 'raining.'], ['The', 'boss', 'outlined', 'a', 'three-pronged', 'approach', 'to', 'turn', 'the', 'fortune', 'of', 'the', 'company', 'around.'], ['Have', 'you', 'finished', 'it?'], ['Can', 'you', 'keep', 'a', 'secret?'], ['Count', 'from', 'one', 'to', 'ten.'], ['They', "don't", 'want', 'you', 'to', 'know.'], ['Please', "don't", 'die.'], ["He's", 'after', 'me.'], ['He', 'stayed', 'out', 'of', 'public', 'life.'], ['That', 'house', 'is', 'for', 'rent.'], ['We', 'made', 'a', 'deal.'], ["I'll", 'be', 'raising', 'my', 'prices', 'by', 'three', 'percent', 'next', 'month.'], ['Hurry', 'up', 'and', 'you', 'can', 'still', 'catch', 'your', 'train.'], ['I', 'have', 'to', 'stop.'], ['I', 'really', 'appreciate', 'the', 'fact', 'that', 'you', 'like', 'me', 'just', 'the', 'way', 'I', 'am.'], ['I', "didn't", 'know', 'what', 'I', 'was', 'getting', 'into.'], ['What', 'a', 'pain!'], ["We're", 'not', 'desperate', 'yet.'], ['Did', 'you', 'find', 'that', 'helpful?'], ["I'm", 'sorry', 'about', 'the', 'way', 'I', 'acted', 'last', 'night.'], ['What', 'do', 'you', 'think', 'of', 'this', 'red', 'hat?'], ['Has', 'anyone', 'ever', 'told', 'you', "you've", 'got', 'serious', 'trust', 'issues?'], ['They', 'stayed', 'in', 'the', 'room', 'with', 'me', 'for', 'the', 'whole', 'night.'], ['The', 'doctor', 'told', 'me', 'not', 'to', 'eat', 'too', 'much.'], ['Your', 'car', 'has', 'a', 'broken', 'taillight.'], ['I', 'had', 'to', 'lend', 'to', 'him', 'money.'], ['This', 'is', 'yours,', "isn't", 'it?'], ['He', 'is', 'working', 'as', 'a', 'security', 'guard', 'at', 'a', 'warehouse.'], ['Can', 'you', 'tell', 'me', 'a', 'little', 'about', 'yourself?'], ['The', 'State', 'of', 'Texas', 'is', 'almost', 'the', 'same', 'size', 'as', 'France.'], ['He', 'was', 'delighted', 'at', 'the', 'result.'], ['Tom', 'is', 'deeply', 'in', 'love', 'with', 'Mary.'], ["I'd", 'be', 'grateful', 'if', 'you', 'could', 'take', 'a', 'look', 'when', "you've", 'got', 'time', 'sometime.'], ['He', 'was', 'too', 'drunk', 'to', 'drive', 'home.'], ['Are', 'you', 'going', 'to', "Tom's", 'farewell', 'party?'], ['I', 'need', 'to', 'know', 'who', 'I', 'have', 'to', 'give', 'this', 'to.'], ['I', 'wrote', 'down', 'his', 'phone', 'number', 'on', 'a', 'scrap', 'of', 'paper.'], ['I', 'have', 'heard', 'nothing', 'from', 'him', 'for', 'five', 'years.'], ['You', 'are', 'big.'], ['I', 'want', 'to', 'keep', 'doing', 'this', 'for', 'as', 'long', 'as', 'possible.'], ["I'm", 'not', 'at', 'all', 'tired.'], ['Tom', 'will', 'be', 'back', 'home', 'soon.'], ['She', 'was', 'about', 'to', 'call', 'him', 'up', 'when', 'he', 'walked', 'in', 'the', 'door.'], ["They'll", 'go', 'shopping.'], ['I', 'let', 'the', 'cat', 'out', 'of', 'the', 'house.'], ["I'd", 'like', 'to', 'determine', 'the', 'value', 'of', 'this', 'painting.'], ['I', 'cried', 'when', 'my', 'dog', 'died.'], ["Don't", 'breathe', 'a', 'word', 'of', 'this', 'to', 'my', 'girlfriend.'], ['Tom', 'grew', 'up', 'in', 'a', 'small', 'fishing', 'village.'], ['The', 'President', 'is', 'usually', 'accompanied', 'by', 'his', 'wife', 'when', 'he', 'goes', 'abroad.'], ["I'll", 'be', 'happy', 'to', 'help', 'you.'], ['Tell', 'Tom', 'what', 'you', 'want', 'to', 'do.'], ["You've", 'got', 'the', 'wrong', 'person.'], ['I', 'want', 'to', 'see', 'a', 'show.'], ['Are', 'you', 'speaking', 'metaphorically?'], ['Why', 'is', 'love', 'so', 'difficult?'], ['Wash', 'your', 'hands', 'before', 'you', 'handle', 'the', 'food.'], ['I', 'first', 'met', 'him', 'three', 'years', 'ago.'], ['Almost', 'everyone', 'arrived', 'on', 'time.'], ['Would', 'you', 'be', 'willing', 'to', 'share', 'your', 'code', 'with', 'me?'], ['He', 'was', 'afraid', 'of', 'the', 'dark.'], ["Don't", 'count', 'on', 'it.'], ['Whatever', 'you', 'do,', "don't", 'forget', 'this.'], ["You're", 'the', 'only', 'one', 'who', 'can', 'do', 'this.'], ['Has', 'Tom', 'become', 'crazy?'], ['Where', 'can', 'I', 'buy', 'a', 'live', 'tiger?'], ['You', "don't", 'know', 'that.'], ['I', 'felt', 'cheated.'], ["I'm", 'going', 'to', 'need', 'some', 'more', 'money.'], ['I', 'had', 'to', 'push', 'my', 'bicycle', 'because', 'I', 'had', 'a', 'flat', 'tire.'], ['No', 'matter', 'how', 'much', 'you', 'try', 'to', 'convince', 'people', 'that', 'chocolate', 'is', 'vanilla,', "it'll", 'still', 'be', 'chocolate,', 'even', 'though', 'you', 'may', 'manage', 'to', 'convince', 'yourself', 'and', 'a', 'few', 'others', 'that', "it's", 'vanilla.'], ["I've", 'never', 'told', 'anyone', 'that', 'my', 'father', 'is', 'in', 'prison.'], ['He', 'was', 'nearly', 'drowned.'], ['Do', 'you', 'want', 'to', 'know', 'why', 'Tom', 'left?'], ['Everyone', 'jumped', 'into', 'the', 'pool.'], ['If', 'you', 'could', 'do', 'it,', 'would', 'you?'], ['I', "can't", 'remember', 'the', 'last', 'time', "I've", 'seen', 'you', 'so', 'excited', 'about', 'something.'], ['I', "don't", 'know', 'your', 'name.'], ['We', 'need', 'help', 'here.'], ["What're", 'you', 'doing', 'here?'], ["There's", 'going', 'to', 'be', 'a', 'downpour.'], ['They', 'gave', 'it', 'to', 'me.'], ['I', 'need', 'some', 'medicine', 'to', 'kill', 'the', 'pain.'], ['I', 'was', 'late', 'for', 'school', 'yesterday.'], ['He', 'had', 'to', 'take', 'care', 'of', 'his', 'dog', 'himself.'], ["I'm", 'not', 'used', 'to', 'losing.'], ["I'm", 'leaving', 'you', 'tomorrow.'], ["Don't", 'put', 'the', 'wallet', 'on', 'the', 'top', 'of', 'the', 'heater.'], ['Go', 'put', 'some', 'clean', 'clothes', 'on.'], ['How', 'can', 'you', 'be', 'so', 'sure', 'of', 'that?'], ['Do', 'you', 'want', 'to', 'see', 'her', 'very', 'much?'], ['I', 'ate', 'a', 'slice', 'of', 'watermelon.'], ['We', 'should', 'organize', 'a', 'party.'], ['The', 'black', 'cat', 'purred,', 'as', 'if', 'he', 'was', 'being', 'petted.'], ['Give', 'me', 'a', 'break.'], ['In', 'the', 'summer,', 'the', 'temperature', 'ranges', 'from', 'thirty', 'to', 'forty', 'degrees', 'Celsius.'], ['She', 'is', 'an', 'efficient', 'and', 'reliable', 'assistant.'], ['We', 'should', 'use', 'the', 'fireplace', 'tonight.'], ['What', 'did', 'you', 'eat', 'for', 'lunch', 'today?'], ['What', 'exactly', 'are', 'you', 'proposing?'], ['Do', 'you', 'need', 'a', 'ride?'], ['In', 'that', 'case,', 'you', 'are', 'right.'], ['You', 'look', 'a', 'lot', 'like', 'your', 'brother.'], ['Tom', "didn't", 'even', 'know', 'who', 'that', 'was.'], ['I', 'must', 'offer', 'you', 'an', 'apology', 'for', 'coming', 'late.'], ['Would', 'you', 'look', 'after', 'my', 'children', 'while', 'I', 'am', 'away', 'on', 'vacation?'], ['Maybe', 'you', 'should', 'do', 'this', 'together.'], ['My', 'brother', 'is', 'out', 'of', 'work.'], ['Do', 'you', 'think', 'my', 'cat', 'and', 'your', 'pet', 'rat', 'will', 'get', 'along', 'well', 'together?'], ["Someone's", 'talking.'], ['I', 'really', 'appreciate', 'your', 'coming.'], ['What', 'are', 'you', 'smiling', 'at?'], ['I', 'tried', 'to', 'solve', 'the', 'problem,', 'but', 'I', "couldn't."], ['Are', 'you', 'telling', 'me', "you've", 'never', 'studied', 'French?'], ['Who', 'forced', 'you', 'to', 'do', 'that?'], ['The', 'gamble', 'paid', 'off.'], ['She', 'advised', 'him', 'on', 'how', 'to', 'stay', 'healthy.'], ['I', 'hate', 'to', 'see', 'you', 'so', 'miserable.'], ['She', "can't", 'do', 'that.'], ["Let's", 'come', 'back', 'here', 'someday.'], ['Let', 'me', 'know', 'what', 'you', 'find', 'out.'], ['I', 'forgot', 'your', 'number.'], ['I', 'thought', 'I', 'was', 'alone.'], ['I', "can't", 'believe', "I'm", 'here.'], ['Five', "minutes'", 'walk', 'brought', 'us', 'to', 'the', 'park.'], ['Her', 'son', 'is', 'a', 'genius.'], ['Can', 'I', 'have', 'a', 'word', 'with', 'you', 'alone?'], ['Tom', 'did', 'his', 'best,', 'but', 'he', 'failed.'], ['I', "don't", 'know', 'what', 'that', 'meant.'], ['We', 'suggest', 'you', 'come', 'early', 'tonight.'], ['This', "isn't", 'the', 'time', 'for', 'stupid', 'jokes.'], ["They'll", 'kill', 'you.'], ['Heaven', 'knows', 'why.'], ['Did', 'we', 'win?'], ['He', "doesn't", 'live', 'in', 'my', 'neighborhood.'], ['A', 'few', 'firefighters', 'suffered', 'minor', 'injuries.'], ['I', 'feel', 'the', 'same', 'way.'], ['Our', 'patient', 'is', 'regaining', 'consciousness.'], ['Is', 'there', 'any', 'butter', 'in', 'the', 'refrigerator?'], ['His', 'skill', 'qualifies', 'him', 'for', 'the', 'job.'], ['What', 'is', 'over', 'there?'], ['You', 'were', 'alone', 'at', 'that', 'time,', "weren't", 'you?'], ['I', 'had', 'to', 'catch', 'the', 'first', 'train', 'this', 'morning', 'to', 'get', 'here', 'in', 'time.'], ['Earth', 'is', 'a', 'beautiful', 'planet.'], ['The', 'dog', 'looks', 'sick.'], ['You', "won't", 'find', 'anything', 'here.'], ["You're", 'very', 'clever.'], ['Can', 'you', 'show', 'me', 'where', 'I', 'am', 'on', 'this', 'map?'], ['Are', 'you', 'doing', 'something', 'special', 'on', 'your', 'birthday?'], ["I'll", 'call.'], ['It', 'matters.'], ['I', 'feel', 'funny', 'today.'], ["That's", 'a', 'cheap', 'store.'], ['I', "don't", 'have', 'any', 'books', 'to', 'read.'], ['My', 'best', 'friend', 'is', 'in', 'Rome', 'now.'], ['Are', 'you', 'happy', 'right', 'now?'], ['Do', 'you', 'need', 'money?'], ['You', 'can', 'rely', 'on', 'him.'], ['He', 'is', 'present', 'at', 'the', 'meeting.'], ['I', "don't", 'know', 'how', 'else', 'to', 'explain', 'it.'], ['I', 'never', 'wanted', 'to', 'hurt', 'you.'], ['Tom', 'walks', 'slowly.'], ['I', 'just', 'wanted', 'to', 'ask', 'you', 'a', 'few', 'questions.'], ['I', "can't", 'change', 'what', 'happened', 'yesterday.'], ["I'll", 'give', 'you', 'something', 'for', 'the', 'pain.'], ['You', "don't", 'look', 'like', 'a', 'millionaire.'], ['What', 'should', 'I', 'feed', 'my', 'dog?'], ['He', 'did', 'well', 'for', 'a', 'beginner.'], ['He', 'denies', 'having', 'done', 'it.'], ['Have', 'they', 'spotted', 'you?'], ['I', "can't", 'help', 'you', 'do', 'that.'], ['Did', 'he', 'ask', 'you', 'to', 'spy', 'on', 'me?'], ['Tom', 'and', 'Mary', 'entered', 'the', 'church', 'together.'], ['I', 'helped', 'them', 'yesterday.'], ['He', 'walks', 'fast.'], ['Does', 'anyone', 'have', 'an', 'antidote?'], ["I'll", 'take', 'care', 'of', 'the', 'bill.'], ["Don't", 'you', 'think', "it's", 'time', 'you', 'left?'], ['The', 'police', 'fished', 'a', 'dead', 'body', 'out', 'of', 'the', 'river', 'this', 'morning.'], ['I', 'felt', 'the', 'same', 'way.'], ["Let's", 'try', 'this.'], ['Tom', "didn't", 'have', 'a', 'good', 'time', 'at', 'the', 'party.'], ['I', 'remember', 'seeing', 'you', 'before.'], ['I', 'want', 'you', 'back', 'today.'], ['I', 'sat', 'down', 'and', 'opened', 'my', 'notebook.'], ['Did', 'I', 'break', 'it?'], ['I', 'pay', 'my', 'own', 'way.'], ['I', 'can', 'solve', 'the', 'problem', 'by', 'myself.'], ['I', 'think', 'it', "must've", 'been', 'Tom', 'who', 'broke', 'the', 'window.'], ['Do', 'you', 'want', 'us', 'to', 'call', 'you?'], ["It's", 'been', 'almost', 'ten', 'years,', 'but', "you're", 'as', 'beautiful', 'as', 'ever.'], ['Can', 'you', 'pronounce', 'these', 'words?'], ['We', 'have', 'to', 'take', 'the', 'stairs.'], ['Stop', 'where', 'you', 'are.'], ['Tom', 'started', 'shaking', 'uncontrollably.'], ['How', 'long', 'has', 'it', 'been', 'since', 'you', 'received', 'a', 'letter', 'from', 'him?'], ['I', 'hate', 'coffee.'], ['You', "don't", 'have', 'to', 'blame', 'yourself', 'for', 'that.'], ['Tom', 'asked', 'me', 'which', 'way', 'to', 'go.'], ['I', 'thought', "you'd", 'be', 'grateful.'], ["We've", 'been', 'friends', 'for', 'a', 'long', 'time.'], ['Are', 'you', 'sure?'], ['What', 'would', 'the', 'world', 'be', 'without', 'women?'], ["Don't", 'tell', 'your', 'dad.'], ['We', 'really', 'enjoyed', 'ourselves.'], ['They', 'ate', 'and', 'drank', 'wine.'], ['I', "don't", 'know', 'what', 'you', 'mean.'], ['Let', 'the', 'pigs', 'eat', 'that.'], ['I', 'seem', 'to', 'have', 'a', 'temperature.'], ['He', 'thought', 'of', 'a', 'good', 'solution.'], ['Whose', 'handbag', 'is', 'this?'], ['Since', 'it', 'was', 'raining,', 'we', 'had', 'to', 'eat', 'our', 'picnic', 'lunch', 'indoors.'], ["I've", 'failed.'], ['The', 'noise', 'kept', 'me', 'awake', 'all', 'night.'], ["I'm", '100%', 'sure', 'of', 'my', 'decision.'], ['Genes', 'consist', 'of', 'a', 'specific', 'sequence', 'of', 'DNA.'], ["It's", 'not', 'up', 'for', 'discussion.'], ['You', 'all', 'did', 'good', 'work.'], ['Scary', 'movies', 'will', 'frighten', 'the', 'children.'], ['You', 'all', 'look', 'so', 'happy.'], ["I'm", 'not', 'qualified', 'to', 'do', 'this', 'job.'], ['The', 'scars', 'are', 'barely', 'visible.'], ["I'm", 'not', 'quite', 'sure.'], ['Tom', 'found', 'out', 'Mary', 'was', 'stealing', 'from', 'the', 'cash', 'register.'], ['This', 'is', 'our', 'main', 'goal.'], ['You', 'know', 'what', 'might', 'happen,', "don't", 'you?'], ["We're", 'not', 'the', 'only', 'ones', 'doing', 'it.'], ['I', 'was', 'just', 'going', 'to', 'call', 'a', 'cab.'], ['Whose', 'office', 'is', 'this?'], ['Where', 'does', 'this', 'doodad', 'go?'], ['Tom', 'talks', 'too', 'fast.'], ["It's", 'quite', 'large.'], ['Are', 'you', 'almost', 'ready?'], ['This', 'book', 'costs', '3,000', 'yen.'], ["We're", 'very', 'different,', 'you', 'and', 'I.'], ['It', 'is', 'wise', 'of', 'you', 'to', 'ask', 'me', 'for', 'advice.'], ['Have', 'you', 'decided', 'where', "you're", 'going', 'to', 'celebrate', 'Christmas', 'Eve?'], ['Nobody', 'likes', 'you.'], ['Let', 'me', 'stop', 'here.'], ['He', 'is', 'a', 'diplomat', 'at', 'the', 'American', 'Embassy.'], ['She', 'was', 'in', 'the', 'mood', 'for', 'a', 'walk.'], ['Accidents', 'happen.'], ["Don't", 'tell', 'me', 'what', 'I', 'already', 'know.'], ['Be', 'careful!'], ['I', "don't", 'really', 'recall.'], ["You're", 'wasting', 'your', 'time', 'trying', 'to', 'convince', 'Tom.'], ['We', 'were', 'there.'], ['I', "didn't", 'understand', 'a', 'single', 'word.'], ['He', 'loves', 'me.'], ['Is', 'there', 'a', 'student', 'discount?'], ["We'll", 'paint', 'it.'], ["You're", 'too', 'polite.'], ['I', 'want', 'to', 'go', 'out.'], ['We', "weren't", 'able', 'to', 'buy', 'tickets,', 'so', 'we', "didn't", 'go', 'to', 'the', 'concert.'], ['By', 'the', 'time', 'she', 'gets', 'there,', 'it', 'will', 'be', 'nearly', 'dark.'], ["I'd", 'like', 'to', 'buy', 'a', 'washing', 'machine.'], ['Look', 'at', 'it.'], ['She', 'was', 'superstitious,', 'as', 'the', 'people', 'of', 'that', 'period', 'usually', 'were.'], ['That', 'is', 'the', 'house', 'where', 'I', 'was', 'born.'], ['One', 'of', 'my', 'neighbors', 'called', 'and', 'said', 'I', 'left', 'one', 'of', 'my', 'windows', 'open.'], ['I', "don't", 'negotiate.'], ['I', 'am', 'not', 'about', 'to', 'pay', 'ten', 'dollars.'], ['Tom', 'is', 'watching', 'the', 'news.'], ['His', 'music', 'is', 'too', 'noisy.'], ['What', 'part', 'of', 'Australia', 'are', 'you', 'from?'], ['He', 'finally', 'found', 'out', 'how', 'to', 'make', 'it.'], ['Tom', 'will', 'be', 'in', 'Boston', 'next', 'year.'], ['He', 'is', 'getting', 'better', 'bit', 'by', 'bit.'], ['I', 'have', 'information.'], ['He', 'stayed', 'at', 'home', 'all', 'day', 'instead', 'of', 'going', 'out.'], ['Think', 'globally,', 'act', 'locally.'], ['His', 'ideas', 'sound', 'crazy.'], ["It's", 'supposed', 'to', 'snow', 'tomorrow.'], ['I', 'got', 'the', 'pears', 'for', 'nothing.'], ["We're", 'not', 'dead', 'yet.'], ['None', 'of', 'them', 'wanted', 'to', 'talk.'], ['He', 'lived', 'an', 'unhappy', 'life.'], ["You're", 'in', 'luck.'], ['I', 'do', 'not', 'mince', 'words.'], ['We', 'eat', 'fish', 'raw.'], ['This', 'is', 'how', 'you', 'get', 'results.'], ['Do', 'you', 'think', 'Tom', 'will', 'like', 'the', 'concert?'], ['Winter', 'is', 'coming.'], ['I', 'need', 'more.'], ['His', 'cottage', 'is', 'on', 'the', 'coast.'], ["You're", 'very', 'brave.'], ['I', 'need', 'your', 'help.'], ['We', "can't", 'leave', 'Tom', 'here.', 'He', "won't", 'survive', 'on', 'his', 'own.'], ['Did', 'Tom', 'tell', 'you', 'the', 'good', 'news?'], ['She', 'is', 'a', 'most', 'beautiful', 'lady.'], ['What', 'part', 'of', 'Australia', 'do', 'you', 'come', 'from?'], ['I', 'just', 'got', 'a', 'raise.'], ['His', 'hair', 'was', 'brown.'], ['We', "don't", 'want', 'any', 'freeloaders', 'around', 'here.'], ['My', 'sister', 'was', 'a', 'beautiful', 'woman.'], ['Your', "sister's", 'as', 'beautiful', 'as', 'ever.'], ['Are', 'we', 'still', 'on', 'for', 'tomorrow', 'night?'], ["You'll", 'be', 'all', 'right', 'again', 'in', 'a', 'couple', 'of', 'days.'], ['I', "can't", 'walk', 'any', 'farther.'], ["I'm", 'sorry', 'that', 'I', "didn't", 'reply', 'sooner.'], ['I', 'saw', 'the', 'figure', 'of', 'a', 'man.'], ['A', 'parallelogram', 'is', 'a', 'quadrilateral', 'formed', 'from', 'two', 'sets', 'of', 'parallel', 'lines.'], ["What's", 'the', "world's", 'highest', 'mountain?'], ['I', 'knew', 'you', 'were', 'there.'], ['I', 'thought', 'that', 'went', 'exceedingly', 'well.'], ['She', 'left', 'her', 'son', 'alone', 'in', 'the', 'car.'], ['I', 'want', 'to', 'eat', 'Chinese', 'noodles.'], ['Just', 'do', 'what', 'I', 'did.'], ["Let's", 'take', 'a', 'tea', 'break.'], ['If', 'by', 'some', 'chance', 'it', 'rains,', 'the', 'garden', 'party', "won't", 'take', 'place.'], ['I', 'want', 'to', 'go', 'there', 'once', 'again.'], ["I've", 'had', 'a', 'tough', 'year.'], ['Fish', 'can', 'be', 'dry', 'and', 'tasteless', 'if', "it's", 'overcooked.'], ['I', 'doubt', 'we', 'can', 'prove', 'that.'], ["That's", 'not', 'good', 'enough', 'for', 'Tom.'], ['He', 'rarely', 'stays', 'home', 'on', 'Sunday.'], ['No', 'more,', 'thank', 'you.', "I'm", 'full.'], ['Go', 'to', 'school.'], ['That', 'man', 'is', 'strong.'], ['Is', 'Tom', 'actually', 'in', 'danger?'], ['If', 'you', 'know', "what's", 'good', 'for', 'you,', "you'll", 'quit', 'doing', 'that.'], ['Do', 'you', 'think', "I'm", 'qualified', 'for', 'that', 'job?'], ['Were', 'you', 'awake', 'at', '2:30', 'last', 'night?'], ['I', 'bet', 'five', 'dollars', 'that', 'he', 'will', 'not', 'come.'], ['How', 'long', 'did', 'you', 'stay', 'at', 'the', 'party?'], ['I', "can't", 'believe', 'that', 'you', 'really', 'sold', 'that', 'junk', 'for', 'such', 'a', 'high', 'price.'], ['The', 'tubes', 'are', 'clogged.'], ["You're", 'on', 'the', 'wrong', 'ship.'], ['Pickpockets', 'target', 'tourists.'], ['Tom', 'is', 'lying', 'on', 'the', 'sofa', 'watching', 'TV.'], ["I'm", 'trying', 'to', 'figure', 'out', 'what', 'you', 'do', 'for', 'fun.'], ['I', 'was', 'threatened.'], ['He', 'is', 'a', 'very', 'thoughtful', 'person.'], ["Let's", 'do', 'this', 'before', 'I', 'change', 'my', 'mind.'], ["I'm", 'going', 'to', 'take', 'a', 'bath', 'as', 'soon', 'as', 'I', 'get', 'home.'], ['They', 'dragged', 'their', 'boat', 'onto', 'the', 'beach.'], ['I', 'thought', 'it', 'was', 'unnecessary', 'for', 'us', 'to', 'do', 'anything', 'about', 'that', 'today.'], ["I'm", 'surprised.'], ["We're", 'all', 'very', 'worried', 'about', 'you.'], ['We', 'talked', 'for', 'thirty', 'minutes.'], ['It', "wasn't", 'relevant.'], ['Would', 'you', 'mind', 'if', 'I', 'took', 'a', 'break?'], ['Go', 'away!'], ['You', "didn't", 'cause', 'it', 'to', 'happen.'], ['The', 'more', 'chocolate', 'you', 'eat,', 'the', 'fatter', "you'll", 'get.'], ['I', 'was', 'involved', 'in', 'a', 'traffic', 'accident.'], ["That's", 'really', 'important.'], ['What', 'are', 'you', 'all', 'doing?'], ['We', 'had', 'no', 'alternative', 'but', 'to', 'fight.'], ['He', 'says', 'that', 'he', 'wants', 'to', 'settle', 'down.'], ['The', 'problem', 'was', 'under', 'discussion.'], ['Avoid', 'it', 'at', 'all', 'cost.'], ['Texas', 'is', 'nearly', 'twice', 'as', 'large', 'as', 'Japan.'], ['Were', 'there', 'any', 'survivors?'], ['Is', 'Tom', 'a', 'common', 'name', 'in', 'your', 'country?'], ['She', 'changed', 'her', 'schedule', 'to', 'match', 'his.'], ['I', 'have', 'a', 'lot', 'to', 'learn.'], ['It', 'was', 'his', 'best', 'time.'], ['That', 'movie', 'star', 'has', 'many', 'fans.'], ['Night', 'is', 'when', 'most', 'people', 'sleep.'], ['We', 'just', 'want', 'you', 'to', 'think', 'about', 'it.'], ['He', 'married', 'a', 'local', 'girl.'], ['Can', 'you', 'elaborate', 'on', 'this', 'a', 'little', 'more?'], ['Give', 'me', 'a', 'little', 'time', 'to', 'think.'], ["I'm", 'pretty', 'sure', 'that', 'it', "won't", 'snow', 'today.'], ['I', "don't", 'wash', 'my', 'hair', 'in', 'the', 'morning.'], ['The', 'situation', 'is', 'growing', 'serious.'], ['He', 'acted', 'like', 'a', 'madman.'], ["Don't", 'expose', 'it', 'to', 'the', 'rain.'], ['What', 'do', 'you', 'want', 'then?'], ["I've", 'been', 'very', 'impressed.'], ['Step', 'forward', 'and', 'make', 'room', 'for', 'others.'], ['I', "don't", 'want', 'to', 'run', 'such', 'a', 'risk.'], ['Does', 'anybody', 'here', 'have', 'a', 'bottle', 'opener?'], ['Do', 'you', 'feel', 'like', 'having', 'a', 'drink?'], ['I', 'need', 'a', 'new', 'bicycle.'], ['What', 'you', 'were', 'taught', 'is', 'wrong.'], ['Do', 'you', 'know', 'whose', 'handwriting', 'this', 'is?'], ['I', 'must', 'remember', 'to', 'see', 'her.'], ['She', 'startled', 'him.'], ['I', 'think', 'Tom', 'wants', 'something', 'to', 'eat.'], ["I'll", 'try', 'and', 'reason', 'with', 'Tom.'], ["It's", 'part', 'of', 'the', 'system.'], ['I', 'go', 'to', 'the', 'movies', 'once', 'a', 'month.'], ['He', 'looked', 'up', 'at', 'the', 'ceiling.'], ['This', 'place', 'is', 'all', 'right.'], ['Hand', 'me', 'that', 'magazine.'], ['You', "don't", 'need', 'to', 'get', 'a', 'haircut', 'this', 'week.'], ["I'm", 'not', 'surprised', 'you', "don't", 'remember.'], ['There', 'is', 'a', 'problem.'], ['Tom', 'seems', 'to', 'be', 'unable', 'to', 'interact', 'normally', 'with', 'other', 'people.'], ['Is', 'this', 'all', 'they', 'do?'], ['Do', 'you', 'really', 'want', 'this', 'information', 'to', 'be', 'made', 'public?'], ['Well,', 'what', 'does', 'that', 'tell', 'you?'], ["Don't", 'kill', 'the', 'messenger.'], ['I', "don't", 'even', 'know', 'where.'], ['Whether', 'you', 'like', 'it', 'or', 'not,', "you'll", 'have', 'to', 'do', 'it.'], ['I', "can't", 'believe', 'I', 'let', 'you', 'talk', 'me', 'into', 'this.'], ['Maybe', "I'll", 'go', 'swimming', 'after', 'school.'], ['I', 'miss', 'my', 'family', 'and', 'my', 'friends.'], ['What', 'does', 'it', 'contain?'], ['I', 'brought', 'these', 'flowers', 'for', 'you.'], ['I', 'prefer', 'plain', 'materials.'], ["It's", 'a', 'very', 'serious', 'crime.'], ['I', "don't", 'believe', 'that', 'either.'], ['Tom', 'might', 'come', 'back', 'tomorrow.'], ['I', 'baked', 'it', 'for', 'you.'], ['The', 'store', 'is', 'not', 'open', 'today.'], ['We', 'had', 'a', 'good', 'time', 'last', 'night.'], ['Chinese', 'characters', 'are', 'difficult', 'to', 'read.'], ['He', 'knows', 'too', 'much.'], ["Tom's", 'French', 'is', 'much', 'better', 'than', "Mary's."], ['Reading', 'books', 'is', 'important.'], ['"Who', 'is', 'in', 'the', 'car?"', '"Tom', 'is."'], ['You', "don't", 'deserve', 'to', 'live.'], ['Could', 'you', 'please', 'tell', 'me', 'again', 'what', 'school', 'you', 'graduated', 'from?'], ['I', 'almost', 'got', 'a', 'perfect', 'score.'], ['Is', 'there', 'anything', 'I', 'must', 'do?'], ['Tom', "isn't", 'playing', 'by', 'the', 'rules.'], ["I'm", 'at', 'a', 'truck', 'stop.'], ["We're", 'tired.'], ["I'm", 'teasing.'], ["I'm", 'glad', 'you', 'brought', 'that', 'up.'], ["You're", 'such', 'a', 'mean', 'man.'], ['Tom', 'is', 'short', 'and', 'fat.'], ['Along', 'with', 'thousands', 'of', 'others,', 'he', 'fled', 'the', 'country.'], ['I', 'think', "it's", 'time', 'for', 'me', 'to', 'abandon', 'that', 'idea.'], ["I'll", 'try', 'to', 'help', 'you.'], ['You', 'had', 'plenty', 'of', 'opportunity.'], ["That's", 'almost', 'impossible', 'to', 'believe.'], ["I'm", 'beginning', 'to', 'get', 'curious.'], ['What', 'does', 'your', 'father', 'do?'], ['Mary', 'had', 'a', "girls'", 'night', 'out.'], ['Start', 'reading', 'where', 'you', 'left', 'off.'], ['I', 'like', 'it', 'when', "it's", 'cold.'], ["You're", 'so', 'beautiful', 'in', 'that', 'dress.'], ['He', 'was', 'punished', 'for', 'lying.'], ['Tom', 'and', 'Mary', 'have', 'two', 'cats.'], ['Tom', 'likes', 'animals.'], ['Tom', 'enjoys', 'telling', 'jokes.'], ['Tom', "doesn't", 'believe', 'what', 'Mary', 'says.'], ['All', 'my', 'plants', 'died.'], ['Do', 'you', 'think', "I'm", 'crazy?'], ['I', 'just', "don't", 'want', 'you', 'to', 'get', 'upset.'], ['I', "don't", 'know', 'which', 'of', 'you', 'is', 'older.'], ['I', 'have', 'an', 'ever', 'growing', 'list', 'of', 'to-do', 'items.'], ["We're", 'safe', 'in', 'here,', "aren't", 'we?'], ['There', 'is', 'nothing', 'for', 'you', 'to', 'be', 'afraid', 'of.'], ['I', 'have', 'many', 'visas', 'in', 'my', 'passport', 'because', 'I', 'travel', 'a', 'lot', 'for', 'my', 'job.'], ['After', 'the', 'trial,', 'they', 'freed', 'the', 'prisoners.'], ['If', "there's", 'anything', 'I', 'can', 'do', 'for', 'you,', 'please', 'let', 'me', 'know.'], ["I'm", 'looking', 'forward', 'to', 'the', 'return', 'of', 'spring.'], ['Out', 'of', 'the', 'two,', 'I', 'choose', 'the', 'less', 'expensive', 'one.'], ['The', 'lake', 'is', 'big.'], ['When', 'did', 'you', 'two', 'start', 'dating?'], ['I', "couldn't", 'have', 'prevented', 'this.'], ['He', 'screamed', 'for', 'help.'], ['He', 'played', 'the', 'piano', 'and', 'she', 'sang.'], ['I', "can't", 'wait', 'for', 'you.'], ['I', "can't", 'imagine', 'living', 'like', 'that.'], ['I', 'never', 'doubted', 'the', 'outcome.'], ['Will', 'you', 'help', 'me', 'for', 'a', 'minute?'], ["It's", 'worth', 'every', 'penny.'], ['Tom', 'knows', 'exactly', 'how', 'Mary', 'feels.'], ['I', 'have', 'to', 'complete', 'a', 'paper', 'on', 'the', 'Japanese', 'economy.'], ['She', 'waited', 'for', 'you', 'for', 'two', 'hours.'], ["He's", 'in', 'big', 'trouble.'], ['I', 'hope', 'we', "didn't", 'wake', 'you.'], ['Did', 'you', 'do', 'this', 'all', 'yourself?'], ['Wash', 'your', 'hands', 'before', 'meals.'], ['This', 'is', 'going', 'to', 'happen', 'a', 'lot', 'from', 'now', 'on.'], ['He', 'left', 'his', 'keys', 'in', 'the', 'car.'], ['Please', 'let', 'me', 'try', 'the', 'game.'], ['I', 'want', 'to', 'be', 'left', 'alone.'], ['You', 'made', 'a', 'fool', 'of', 'yourself.'], ['My', 'mom', 'walked', 'into', 'my', 'room.'], ['Tom', 'stole', 'it.'], ['Why', 'do', 'you', 'always', 'want', 'to', 'do', 'things', 'the', 'hard', 'way?'], ['I', 'have', 'back', 'problems.'], ['Can', 'you', 'watch', 'my', 'stuff', 'for', 'a', 'minute?'], ['Was', 'I', 'really', 'boring?'], ['The', 'workers', 'came', 'to', 'ask', 'about', 'their', 'pay', 'raises.'], ['She', 'closed', 'her', 'eyes.'], ['You', "don't", 'sound', 'so', 'sure.'], ['How', 'was', 'your', 'holiday?'], ['We', 'are', 'playing', 'tennis', 'this', 'weekend.'], ['She', 'had', 'gone', 'to', 'bed.'], ["I've", 'been', 'looking', 'for', 'a', 'place', 'to', 'live.'], ['These', 'are', 'the', 'shoes', 'that', 'I', 'bought', 'last', 'week.'], ['Is', 'that', 'all', 'we', 'need?'], ['When', 'will', 'you', 'be', 'free?'], ['I', 'hope', "you're", 'not', 'alone.'], ['I', 'feel', 'like', "I'm", 'thirty', 'years', 'old.'], ['Their', 'rude', 'behavior', 'makes', 'me', 'angry.'], ['Tom', 'is', 'not', 'yet', 'able', 'to', 'swim.'], ['I', 'study', 'French.'], ['Do', 'you', 'have', 'brothers', 'and', 'sisters?'], ['It', 'is', 'a', 'luxury', 'cruise.'], ['This', 'camera', 'is', 'the', 'one', 'that', 'Tom', 'bought', 'last', 'Thursday.'], ['Careless', 'driving', 'causes', 'accidents.'], ['Are', 'you', 'here', 'alone?'], ['Three', 'people', 'are', 'still', 'missing.'], ['She', 'has', 'had', 'the', 'same', 'boyfriend', 'since', 'she', 'was', 'eighteen.'], ['I', "don't", 'know', 'where', 'that', 'came', 'from.'], ['We', 'work', 'every', 'day', 'but', 'Sunday.'], ['The', 'article', 'was', 'written', 'in', 'Russian.'], ['Grab', 'the', 'bottom.'], ['Tom', 'is', 'someone', 'who', "can't", 'be', 'trusted.'], ['Am', 'I', 'a', 'bad', 'person?'], ['Tom', 'put', 'a', 'flea', 'collar', 'on', 'his', 'dog.'], ['Ask', 'around.'], ['My', 'mother', 'almost', 'never', 'complains.'], ['He', 'thought', 'up', 'an', 'excuse.'], ["I'll", 'leave', 'no', 'stone', 'unturned', 'to', 'find', 'out', 'who', 'did', 'this.'], ['I', 'forgot', 'to', 'tell', 'them.'], ['This', 'is', 'the', 'village', 'where', 'he', 'was', 'born.'], ["I'm", 'going', 'to', 'be', 'ready', 'for', 'that.'], ['Whenever', 'I', 'go', 'to', 'a', 'Japanese', 'restaurant,', 'I', 'take', 'the', 'disposable', 'chopsticks', 'home', 'with', 'me.'], ['I', 'usually', 'wash', 'my', 'clothes', 'at', 'a', 'launderette.'], ['Play', 'it', 'cool.'], ['Do', 'you', 'understand', 'what', 'I', 'mean?'], ['I', "haven't", 'had', 'a', 'barbecue', 'for', 'a', 'long', 'time.'], ['I', "don't", 'need', 'to', 'be', 'lectured', 'by', 'you.'], ['Do', 'you', 'want', 'me', 'to', 'repeat', 'the', 'question?'], ['Tom', 'fell', 'in', 'love', 'with', 'a', 'pretty', 'girl.'], ['A', 'coin', 'dropped', 'out', 'of', 'his', 'pocket.'], ['Do', 'you', 'want', 'to', 'do', 'this?'], ['They', 'were', 'punished', 'for', 'their', 'crimes.'], ['Do', 'you', 'have', 'any', 'brothers?'], ['Did', 'you', 'get', 'your', 'receipt?'], ['Have', 'you', 'ever', 'traveled', 'in', 'a', 'plane?'], ['Tom', 'and', 'Mary', 'are', 'the', 'only', 'survivors.'], ["I'll", 'wait', 'in', 'the', 'car.'], ['Tom', 'plays', 'the', 'drum.'], ['They', 'hunted', 'foxes.'], ['I', 'feel', 'tired', 'all', 'the', 'time.'], ['You', "can't", 'do', 'two', 'things', 'at', 'once.'], ['We', 'waste', 'a', 'lot', 'of', 'time.'], ["Don't", 'be', 'scared', 'to', 'meet', 'new', 'people.'], ['I', "don't", 'like', 'it', 'either.'], ['This', 'is', 'not', 'a', 'sentence.'], ['I', "don't", 'believe', 'this', 'is', 'happening', 'to', 'me.'], ['After', 'getting', 'through', 'customs,', 'I', 'was', 'free', 'to', 'go', 'wherever', 'I', 'wanted.'], ['This', 'vase', 'is', 'made', 'of', 'iron.'], ['He', 'is', 'angry', 'with', 'you.'], ["You're", 'taller', 'than', 'me.'], ["Here's", 'my', 'chance.'], ['What', 'was', 'I', 'thinking?'], ['They', 'are', 'willing', 'to', 'talk', 'about', 'the', 'problem.'], ["It's", 'expensive', 'to', 'rent', 'an', 'office', 'in', 'downtown', 'Boston.'], ['The', 'girls', 'fainted.'], ['This', 'word', 'has', 'two', 'meanings.'], ['These', 'two', 'are', 'very', 'different', 'from', 'each', 'other.'], ['I', 'want', 'you', 'to', 'die.'], ["You've", 'changed', 'since', 'I', 'saw', 'you', 'last', 'year.'], ['My', 'dream', 'went', 'up', 'in', 'smoke.'], ['It', 'was', 'very', 'sensible', 'of', 'him', 'to', 'reject', 'the', 'bribe.'], ['Guys', 'are', 'supposed', 'to', 'respect', 'girls.'], ['I', 'am', 'yours', 'and', 'you', 'are', 'mine.'], ['The', 'prophecy', 'came', 'true.'], ['I', 'want', 'to', 'be', 'certain', 'you', 'are', 'who', 'you', 'say', 'you', 'are.'], ['Tom', 'is', 'recovering', 'from', 'his', 'injuries.'], ['Tom', 'is', 'single,', "isn't", 'he?'], ['Nobody', 'wants', 'to', 'be', 'the', 'first', 'one', 'to', 'jump', 'into', 'the', 'pool.'], ['I', 'had', 'no', 'time', 'to', 'eat.'], ['Some', 'factories', 'pollute', 'the', 'environment.'], ['Can', 'you', 'still', 'remember', 'where', 'we', 'first', 'met?'], ['You', 'heard', 'your', 'mother.'], ["It's", 'all', 'or', 'nothing.'], ['Right', 'now', 'I', "can't", 'think', 'of', 'anything', 'else.'], ["I've", 'never', 'had', 'a', 'friend', 'quite', 'like', 'you.'], ['I', 'would', 'rather', 'feed', 'my', 'dog', 'before', 'we', 'eat.'], ['She', 'suggested', 'that', 'he', 'try', 'it.'], ['Are', 'you', 'sure', 'you', "don't", 'know', 'Tom?'], ['You', "haven't", 'seen', 'Tom', 'today,', 'have', 'you?'], ['Tom', 'had', 'to', 'make', 'a', 'fire.'], ["I'd", 'like', 'you', 'to', 'come', 'work', 'for', 'me.'], ['Are', 'you', 'saying', 'you', "don't", 'want', 'to', 'be', 'a', 'teacher', 'anymore?'], ['May', 'I', 'do', 'it', 'right', 'now?'], ["I'd", 'like', 'to', 'forget', 'the', 'whole', 'thing', 'ever', 'happened.'], ['I', 'saw', 'tears', 'in', 'his', 'eyes.'], ["I'm", 'one', 'of', 'you.'], ['Tom', 'asked', 'a', 'few', 'questions', 'that', 'Mary', "didn't", 'want', 'to', 'answer.'], ['Tom', 'can', 'speak', 'neither', 'French', 'nor', 'English.'], ['The', 'national', 'debt', 'has', 'trebled', 'in', 'the', 'last', 'ten', 'years.'], ['I', 'hope', 'everyone', 'is', 'happy.'], ['Never', 'have', 'I', 'seen', 'such', 'a', 'thing.'], ['Tom', 'died', 'in', 'Australia', 'in', '2013.'], ['I', 'got', 'fined.'], ['She', 'looked', 'at', 'me', 'and', 'laughed.'], ['Tom', 'needs', 'to', 'do', 'something.'], ["Don't", 'tell', 'anyone.'], ['I', 'want', 'you', 'to', 'leave', 'me', 'alone.'], ["That's", 'a', 'good', 'guess.'], ['That', 'sounds', 'interesting.'], ['They', 'had', 'a', 'spat', 'yesterday.'], ['Do', 'you', 'have', 'any', 'idea', 'who', 'would', 'do', 'this', 'kind', 'of', 'thing?'], ['I', 'have', 'as', 'many', 'books', 'as', 'he', 'does.'], ['He', 'was', 'jailed', 'on', 'trumped-up', 'charges.'], ['She', 'is', 'kind', 'to', 'old', 'people.'], ['A', 'new', 'student', 'came', 'into', 'the', 'class.'], ["Shouldn't", 'Tom', 'be', 'in', 'jail?'], ['They', "don't", 'know', 'yet.'], ["We're", 'not', 'going', 'to', 'make', 'a', 'decision', 'overnight.'], ['Do', 'you', 'love', 'your', 'mother?'], ['He', 'was', 'brave.'], ['We', "didn't", 'need', 'to', 'hurry.'], ['Are', 'you', 'ready?'], ['Stop', 'crying', 'like', 'a', 'girl.'], ['They', 'knew', 'exactly', 'how', 'much', 'of', 'a', 'risk', "they'd", 'be', 'taking.'], ['You', 'make', 'it', 'look', 'easy.'], ['You', 'look', 'just', 'like', 'him.'], ['Have', 'you', 'ever', 'had', 'any', 'serious', 'illness?'], ['What', 'do', 'you', 'think', 'about', 'it?'], ['How', 'could', 'I', 'resist?'], ['My', 'family', 'had', 'many', 'debts.'], ['Call', 'me', 'if', 'something', 'happens.'], ['I', "didn't", 'have', 'enough', 'space', 'to', 'fit', 'my', 'lunch', 'in', 'the', 'bag.'], ['He', 'stopped', 'smoking', 'last', 'year.'], ['Tom', 'said', 'you', 'were', 'meeting', 'him', 'for', 'lunch.'], ['Do', 'you', 'remember', 'anything', 'else?'], ['Everybody', 'knew', 'she', 'could', 'speak', 'English', 'well.'], ["I'm", 'your', 'best', 'friend.'], ['How', 'good', 'are', 'you?'], ["I'd", 'like', 'to', 'see', 'you', 'in', 'my', 'office.'], ['I', 'just', 'wanted', 'to', 'clarify', 'that.'], ['Are', 'you', 'a', 'criminal?'], ['The', 'plane', 'is', 'approaching', 'New', 'York.'], ['I', 'knew', 'Tom', 'used', 'to', 'live', 'in', 'Boston.'], ['I', 'was', 'afraid', 'of', 'that.'], ["I've", 'started', 'bleeding.'], ['In', 'my', 'opinion,', 'a', 'well-designed', 'website', "shouldn't", 'require', 'horizontal', 'scrolling.'], ['I', 'am', 'looking', 'forward', 'to', 'seeing', 'you', 'again.'], ["I'll", 'go', 'with', 'you.'], ["Don't", 'throw', 'away', 'this', 'magazine.'], ['When', "you've", 'finished', 'reading', 'that', 'book,', "I'd", 'like', 'to', 'read', 'it.'], ['The', 'age', 'of', 'nuclear', 'power', 'is', 'not', 'yet', 'over.'], ['You', "can't", 'tell', 'anyone', 'about', 'this.'], ['Her', 'eyes', 'filled', 'with', 'tears.'], ['I', 'think', 'Tom', 'is', 'likely', 'to', 'go', 'to', 'Boston', 'in', 'the', 'near', 'future.'], ['I', 'once', 'saw', 'a', 'man', 'walk', 'barefoot', 'over', 'hot', 'coals.'], ['Look', 'at', 'the', 'next', 'page.'], ["Don't", 'push', 'your', 'luck.'], ['How', 'do', 'you', 'know', 'what', 'I', 'said?'], ['Do', 'ghosts', 'really', 'exist?'], ['I', "don't", 'know', 'how', 'I', 'know.'], ['I', 'live', 'near', 'the', 'sea', 'so', 'I', 'often', 'go', 'to', 'the', 'beach.'], ['He', 'is', 'playing', 'in', 'his', 'room.'], ['She', 'behaved', 'quite', 'abominably.'], ['Tom', 'walked', 'across', 'the', 'street.'], ['How', 'old', 'were', 'you', 'when', 'you', 'started', 'studying', 'French?'], ["I'll", 'keep', 'my', 'mouth', 'shut.'], ['Tom', 'explained', 'why', 'he', 'was', 'there.'], ['I', 'hope', 'you', 'have', 'a', 'good', 'lawyer.'], ['They', 'used', 'truth', 'serum.'], ['I', 'promise', "I'll", 'call.'], ['This', 'sweater', 'is', 'made', 'by', 'hand.'], ['Can', 'you', 'move', 'this', 'desk', 'by', 'yourself?'], ['You', 'should', 'choose', 'a', 'job', 'in', 'relation', 'to', 'your', 'talents', 'and', 'interests.'], ['Everybody', 'speaks', 'well', 'of', 'him.'], ['Do', 'you', 'want', 'to', 'know', 'where', 'you', 'made', 'your', 'mistake?'], ["I'd", 'like', 'to', 'go', 'somewhere', 'else', 'now.'], ['Come', 'on.'], ["Don't", 'do', 'anything', "you'll", 'regret.'], ['I', 'want', 'to', 'talk', 'to', 'you', 'about', 'this', 'report.'], ['I', "won't", 'tell', 'you', 'why', 'I', 'did', 'that.'], ['Are', 'you', 'busy', 'Friday', 'night?'], ['We', 'should', 'try', 'that.'], ['We', 'stayed', 'with', 'them', 'all', 'through', 'the', 'summer.'], ['I', 'want', 'to', 'know', 'how', 'this', 'happened', 'and', 'why.'], ["I'm", 'not', 'interested', 'in', 'what', 'you', 'think.'], ['What', 'did', 'you', 'just', 'say?'], ['You', 'should', 'mind', 'your', 'own', 'business.'], ['Iceland', 'belonged', 'to', 'Denmark.'], ['You', 'should', 'use', 'deodorant.'], ['How', 'can', 'you', 'be', 'so', 'cruel?'], ["It's", 'enough', 'for', 'five', 'days.'], ['Tom', 'is', 'obviously', 'very', 'good', 'at', 'what', 'he', 'does.'], ['We', 'will', 'go,', 'but', 'without', 'you.'], ['Few', 'people', 'understood', 'his', 'comment.'], ["Let's", 'not', 'do', 'that', 'anymore.'], ['Our', 'success', 'was', 'due', 'in', 'part', 'to', 'good', 'luck.'], ['Go', 'to', 'the', 'park.'], ["That's", 'the', 'safest', 'way,', "isn't", 'it?'], ['If', 'you', 'want', 'me', 'to', 'help', 'you,', 'all', 'you', 'have', 'to', 'do', 'is', 'ask.'], ['Is', 'there', 'another', 'solution?'], ['I', 'want', 'to', 'kiss', 'you.'], ['A', 'little', 'walk', 'will', 'give', 'you', 'a', 'good', 'appetite', 'for', 'breakfast.'], ['She', 'is', 'his', 'present', 'wife.'], ['We', 'slept', 'in', 'the', 'same', 'bed.'], ['Our', 'team', 'did', 'very', 'well.'], ['Stand', 'aside.'], ['The', 'roof', 'of', 'my', 'house', 'is', 'red.'], ['Can', 'you', 'give', 'me', 'a', 'ride', 'to', 'the', 'office', 'on', 'Wednesday?'], ["I've", 'never', 'stopped', 'loving', 'you.'], ["He's", 'playing', 'with', 'my', 'cat.'], ["I'd", 'like', 'to', 'discuss', 'the', 'possibility', 'of', 'you', 'coming', 'to', 'work', 'for', 'our', 'company.'], ['Tom', 'looks', 'dazed.'], ['I', "don't", 'like', 'feeling', 'helpless.'], ['Please', 'wait', 'until', 'we', 'get', 'the', 'results', 'of', 'the', 'examination.'], ['He', 'can', 'swim', 'on', 'his', 'back.'], ['I', "don't", 'want', 'Tom', 'to', 'help', 'me.'], ['Tom', 'stopped', 'the', 'engine.'], ['Have', 'another', 'drink.'], ['I', 'envy', 'your', 'good', 'health.'], ['Wait!', "I'm", 'coming!'], ['I', 'have', 'a', 'very', 'sore', 'arm', 'where', 'you', 'hit', 'me.'], ["I'm", 'going', 'to', 'take', 'my', 'car.'], ['I', 'will', 'do', 'my', 'best.'], ['He', 'asked', 'my', 'mother.'], ['Do', 'you', 'want', 'to', 'do', 'it', 'again?'], ['She', 'cried', 'and', 'cried,', 'but', 'nobody', 'came', 'to', 'comfort', 'her.'], ['My', 'husband', 'is', 'the', 'jealous', 'type.'], ['Tom', 'was', 'annoyed', 'by', "Mary's", 'silence.'], ['The', 'training', 'was', 'hard.'], ['Do', 'you', 'think', 'I', 'want', 'to', 'die?'], ['What', 'a', 'big', 'eater!'], ['Do', 'you', 'come', 'here', 'often?'], ['I', 'tried', 'to', 'fulfill', 'my', 'duty.'], ['We', 'have', 'a', 'good', 'group', 'of', 'volunteers.'], ['Do', 'you', 'want', 'to', 'get', 'us', 'both', 'killed?'], ['Did', 'you', 'do', 'your', 'work?'], ['We', 'really', 'had', 'nothing', 'to', 'lose.'], ['I', "don't", 'want', 'you', 'to', 'be', 'upset.'], ['This', 'is', 'too', 'hard.'], ['Adobe', 'and', 'Apple', 'both', 'have', 'top-notch', 'video', 'editing', 'programs.'], ['That', "isn't", 'exactly', 'what', 'I', 'said.'], ["I'll", 'always', 'remember', 'you.'], ['Will', 'you', 'pick', 'me', 'up', 'at', 'seven', 'tomorrow', 'morning?'], ['You', 'need', 'to', 'leave', 'here', 'at', 'once.'], ['The', 'best', 'is', 'yet', 'to', 'come.'], ['I', 'think', "that's", 'an', 'exaggeration.'], ['Does', 'that', 'seem', 'wise?'], ['I', "don't", 'plan', 'on', 'being', 'here', 'that', 'long.'], ['Tom', "didn't", 'see', 'it.'], ['The', 'bank', 'had', 'the', 'gall', 'to', 'charge', 'a', 'late', 'fee', 'for', 'a', 'payment', 'held', 'up', 'when', 'their', 'online', 'services', 'crashed.'], ['I', 'share', 'this', 'room', 'with', 'my', 'sister.'], ["I'll", 'tell', 'you', "what's", 'wrong.'], ['Tom', 'called', 'his', 'wife', 'to', 'say', "he'd", 'be', 'late.'], ['Hunger', 'is', 'the', 'best', 'sauce.'], ['I', "can't", 'do', 'it', 'today.'], ['I', "didn't", 'want', 'to', 'tell', 'Tom', 'about', 'what', 'we', 'did.'], ["You're", 'considerate.'], ['It', 'is', 'our', 'duty', 'to', 'obey', 'the', 'law.'], ['The', 'apple', 'is', 'red.'], ['I', "haven't", 'tried', 'doing', 'it', 'that', 'way.'], ['I', 'know', "you're", 'in', 'love', 'with', 'me.'], ["It's", 'not', 'that', 'nice.'], ['Nothing', 'is', 'happening.'], ['His', 'older', 'sister', 'is', 'older', 'than', 'my', 'oldest', 'brother.'], ['Are', 'you', 'sure', 'you', 'want', 'to', 'throw', 'that', 'away?'], ["I'm", 'glad', 'to', 'be', 'of', 'some', 'help', 'to', 'you.'], ["We're", 'all', 'single.'], ['Who', 'are', 'we', 'working', 'for?'], ['She', 'took', 'the', 'book', 'back', 'to', 'the', 'library.'], ["I'm", 'going', 'to', 'bed', 'now.'], ['We', 'did', 'not', 'move', 'for', 'fear', 'we', 'should', 'wake', 'him', 'up.'], ['Tom', 'smelled', 'funny.'], ["I'd", 'like', 'to', 'kiss', 'you.'], ['I', 'got', 'up', 'earlier', 'than', 'usual', 'in', 'order', 'to', 'catch', 'the', 'first', 'train.'], ['I', 'never', 'thought', 'you', 'really', 'did', 'that.'], ["Where's", 'the', 'bakery?'], ['A', 'flu', 'shot', 'contains', 'antibodies', 'that', 'fight', 'the', 'H1N1', 'virus.'], ['Tom', 'is', 'playing', 'catch', 'with', 'his', 'son.'], ['He', 'writes', 'Arabic.'], ['I', 'feel', 'a', 'little', 'awkward.'], ['Policemen', "aren't", 'permitted', 'to', 'drink', 'on', 'duty.'], ["It's", 'impossible', 'to', 'find', 'parking', 'around', 'here.'], ['I', 'was', 'taken', 'advantage', 'of.'], ['We', "don't", 'have', 'enough', 'beer.'], ['Do', 'you', 'think', "I'm", 'crazy?'], ['I', 'just', 'banged', 'my', 'head', 'on', 'something.'], ['We', 'have', 'two', 'kids.'], ['He', 'slipped', 'on', 'a', 'banana', 'peel.'], ['In', 'spite', 'of', 'the', 'bad', 'weather,', 'they', 'decided', 'to', 'go', 'by', 'car.'], ['Kyoto', 'gets', 'lots', 'of', 'visitors', 'from', 'all', 'over', 'the', 'world.'], ["I'm", 'the', 'tallest', 'one', 'in', 'the', 'class.'], ['Close', 'the', 'box.'], ['Soon', 'your', 'efforts', 'will', 'be', 'rewarded.'], ['I', 'think', "it's", 'cruel', 'to', 'keep', 'a', 'cat', 'inside.'], ["I'm", 'already', 'a', 'father.'], ['He', 'replied', 'that', 'he', 'knew', 'nothing', 'about', 'it.'], ['Tom', 'is', 'in', 'an', 'angry', 'mood.'], ['It', 'is', 'a', 'sheer', 'waste', 'of', 'time.'], ["It's", 'just', 'an', 'expression.'], ["There's", 'no', 'class', 'today.'], ['Do', 'they', 'know', 'that', 'we', 'know?'], ['Did', 'you', 'do', 'what', 'I', 'asked?'], ['You', "can't", 'keep', 'this', 'a', 'secret.'], ['Tom', 'told', 'me', 'he', 'was', 'unlucky.'], ['We', 'got', 'a', 'little', 'bored', 'with', 'each', 'other.'], ['Even', 'the', 'cleverest', 'students', 'can', 'make', 'silly', 'mistakes.'], ['Is', 'a', 'thousand', 'yen', 'enough?'], ["I'll", 'tell', 'you', 'afterwards.'], ["You're", 'doing', 'it', 'right.'], ['He', 'never', 'breaks', 'promises.'], ['I', 'was', 'young', 'at', 'the', 'time.'], ['Do', 'you', 'have', 'any', 'other', 'questions', 'about', 'the', 'matter?'], ['When', 'I', 'was', 'a', 'boy,', 'I', 'always', 'got', 'up', 'early.'], ['I', 'know', 'Tom', "isn't", 'guilty.'], ['She', 'put', 'on', 'her', 'new', 'dress', 'for', 'the', 'party.'], ['Tom', 'is', 'very', 'likely', 'to', 'succeed.'], ['He', 'asked', 'me', 'for', 'help.'], ["Don't", 'drink', 'too', 'much,', 'okay?'], ['Tom', 'is', 'outside.'], ['You', 'guys', 'are', 'dangerous.'], ["You're", 'very', 'brave.'], ["That'll", 'be', 'a', 'lot', 'of', 'fun.'], ["We're", 'conscientious.'], ["I'm", 'going', 'to', 'have', 'to', 'think', 'about', 'that', 'one.'], ['I', 'think', 'Tom', 'did', 'well.'], ['Fruits', 'have', 'seeds', 'in', 'them.'], ['He', 'asked', 'me', 'what', 'I', 'expected.'], ['Can', 'I', 'ask', 'you', 'a', 'quick', 'question?'], ['This', 'is', 'funny.'], ['Smoking', 'is', 'harmful', 'to', 'the', 'health.'], ["I'd", 'like', 'to', 'be', 'alone', 'now.'], ['Why', 'should', 'Tom', 'sing', 'that', 'song?'], ['Were', 'you', 'awake', 'at', '2:30', 'last', 'night?'], ['Did', 'Tom', 'call', 'while', 'I', 'was', 'out?'], ['Is', 'Tom', 'cleaning', 'his', 'room', 'now?'], ['Search', 'the', 'house.'], ['Have', 'you', 'looked', 'at', 'these', 'brochures?'], ['The', 'air', 'feels', 'somewhat', 'cold', 'this', 'morning.'], ['Why', 'is', 'he', 'staring', 'at', 'me?'], ['Are', 'you', 'planning', 'to', 'talk', 'to', 'Tom?'], ['He', 'took', 'part', 'in', 'the', 'race.'], ['They', 'seem', 'to', 'have', 'had', 'a', 'good', 'time', 'in', 'Rome.'], ['Did', 'you', 'pay', 'somebody', 'to', 'write', 'this', 'for', 'you?'], ['He', 'has', 'no', 'intention', 'to', 'interfere', 'with', 'your', 'business.'], ['I', 'figured', 'you', "weren't", 'coming.'], ['Who', 'was', 'here?'], ['I', 'told', 'you', 'that', 'my', 'dad', 'died', 'when', 'I', 'was', 'thirteen.'], ['Is', 'it', 'clear', 'now?'], ['He', "can't", 'be', 'older', 'than', 'me.'], ['My', 'husband', 'earns', '$100,000', 'a', 'year.'], ['They', 'argue', 'that', 'the', 'distribution', 'of', 'wealth', 'should', 'be', 'equitable.'], ["That's", 'my', 'problem,', 'not', 'yours.'], ['The', 'door', 'opened', 'and', 'a', 'man', 'walked', 'in.'], ['I', 'use', 'it', 'every', 'day.'], ['Where', 'did', 'you', 'find', 'it,', 'at', 'school', 'or', 'at', 'home?'], ['I', 'saw', 'a', 'movie', 'for', 'the', 'first', 'time', 'in', 'two', 'years.'], ['Can', 'you', 'prove', 'it?'], ['He', 'pushed', 'the', 'emergency', 'button.'], ['Crime', 'does', 'not', 'pay.'], ['Do', 'you', 'know', 'anyone', 'who', 'was', 'on', 'that', 'ship', 'that', 'sunk?'], ['They', "didn't", 'want', 'me', 'to', 'examine', 'it.'], ["We're", 'both', 'writers.'], ['It', 'might', 'not', 'even', 'work.'], ['Is', 'it', 'all', 'there?'], ['Can', 'I', 'see', 'you', 'at', 'ten', 'tomorrow?'], ['I', "didn't", 'do', 'that', 'on', 'Monday.'], ['It', 'was', 'a', 'heartbreaking', 'story.'], ['The', 'room', 'is', 'being', 'painted', 'by', 'him.'], ["It's", 'worth', 'a', 'try,', 'right?'], ['I', 'think', "you're", 'being', 'a', 'little', 'too', 'careful.'], ['You', 'seem', 'depressed.'], ['He', 'got', 'into', 'the', 'habit', 'of', 'smoking', 'in', 'his', 'youth.'], ['I', 'wonder', 'how', 'many', 'people', 'saw', 'Tom', 'doing', 'that.'], ["You're", 'safe', 'with', 'us.'], ['She', 'wants', 'to', 'be', 'a', 'designer.'], ['They', 'left.'], ["I'm", 'feeling', 'stressed.'], ['Thanks', 'for', 'your', 'comments.'], ["Isn't", 'it', 'a', 'beautiful', 'day?'], ['She', 'has', 'the', 'large', 'house', 'to', 'herself.'], ['He', 'ate', 'the', 'whole', 'apple.'], ['Can', 'you', 'please', 'write', 'that', 'down?'], ['I', 'will', 'fight', 'to', 'the', 'death.'], ['I', 'hate', 'to', 'waste', 'my', 'time.'], ['I', 'have', 'to', 'paint', 'it.'], ['No', 'one', 'knows', 'yet.'], ['She', 'is', 'a', 'good', 'English', 'speaker.'], ["It's", 'cheaper', 'if', 'you', 'order', 'these', 'by', 'the', 'dozen.'], ["Don't", 'make', 'me', 'go', 'back', 'there.'], ['Tom', 'rarely', 'hugs', 'Mary', 'anymore.'], ['The', 'bird', 'is', 'dead.'], ['I', 'was', 'a', 'teacher', 'for', 'fifteen', 'years.'], ["Don't", 'make', 'fun', 'of', 'other', 'people.'], ['She', 'had', 'to', 'take', 'care', 'of', 'her', 'sister.'], ['I', 'think', 'Tom', 'has', 'gone.'], ['I', 'eat', 'a', 'lot', 'of', 'meat.'], ['My', 'TV', 'has', 'quit', 'working.'], ['A', 'father', 'provides', 'for', 'his', 'family.'], ['How', 'much', 'do', 'you', 'remember?'], ['Have', 'we', 'ever', 'met', 'before?'], ['Did', 'you', 'go', 'straight', 'home', 'after', 'school', 'yesterday?'], ['That', 'book', 'costs', '3,000', 'yen.'], ['Would', 'you', 'like', 'another', 'cup', 'of', 'tea?'], ['He', 'took', 'a', 'deep', 'breath', 'before', 'entering', 'his', "boss's", 'office.'], ['Dating', 'is', 'exhausting.'], ['Are', 'you', 'sure', "you're", 'not', 'imagining', 'things?'], ['Hundreds', 'of', 'animals', 'were', 'killed.'], ['I', "didn't", 'know', 'what', 'it', 'meant.'], ["It's", 'a', 'town', 'in', 'the', 'middle', 'of', 'nowhere.'], ['It', 'has', 'been', 'a', 'long', 'time', 'since', 'I', 'saw', 'him.'], ['Are', 'you', 'really', 'not', 'going?'], ["I'd", 'rather', 'do', 'this', 'by', 'myself.'], ['Can', 'you', 'crank', 'up', 'the', 'heat?'], ['The', 'train', 'arrived', 'on', 'time.'], ['I', 'was', 'impressed.'], ['We', 'were', 'living', 'in', 'Osaka', 'for', 'ten', 'years', 'before', 'we', 'came', 'to', 'Tokyo.'], ['Modern', 'technology', 'gives', 'us', 'many', 'things.'], ['She', 'asked', 'me', 'a', 'question.'], ['How', 'do', 'you', 'plan', 'to', 'handle', 'this?'], ['I', 'hate', 'sand.'], ['That', 'house', 'is', 'famous.'], ['I', 'was', 'disappointed', 'by', 'the', 'news.'], ['Hold', 'the', 'handrail.'], ["I'll", 'try', 'to', 'find', 'them', 'for', 'you.'], ['Are', 'you', 'sure', 'you', 'want', 'to', 'put', 'your', 'life', 'in', 'her', 'hands?'], ['How', 'do', 'you', 'get', 'to', 'school?'], ["It's", "Tom's", 'turn', 'to', 'wash', 'the', 'dishes.'], ['Do', 'you', 'know', 'what', 'this', 'is?'], ['She', 'realized', 'that', 'she', 'had', 'better', 'tell', 'the', 'truth.'], ['Above', 'all,', 'logic', 'requires', 'precise', 'definitions.'], ['What', "I'm", 'telling', 'you', 'is', 'true.'], ['Tom', 'put', 'on', 'a', 'pair', 'of', 'latex', 'gloves.'], ['He', 'is', 'said', 'to', 'have', 'been', 'very', 'poor', 'when', 'he', 'was', 'young.'], ['We', 'had', 'a', 'mild', 'winter', 'last', 'year.'], ['I', 'remember', 'that', 'feeling.'], ["He's", 'attracted', 'to', 'Asian', 'women.'], ['Even', 'the', 'hard-hearted', 'can', 'be', 'moved', 'to', 'tears.'], ['Just', 'follow', 'your', 'heart.'], ['How', 'long', 'have', 'you', 'known', 'about', 'this?'], ['We', 'chopped', 'our', 'way', 'through', 'the', 'jungle.'], ['Wearing', 'glasses', 'should', 'correct', 'your', 'vision.'], ['She', 'suggested', 'that', 'I', 'write', 'to', 'him', 'at', 'once.'], ['What', 'should', 'I', 'do', 'to', 'find', 'a', 'suitable', 'job', 'for', 'myself?'], ["Aren't", 'you', 'annoyed', 'by', 'that?'], ["Aren't", 'you', 'and', 'I', 'friends?'], ["I'm", 'proud', 'of', 'my', 'children.'], ['This', 'tool', 'is', 'completely', 'useless.'], ['With', 'the', 'way', 'my', 'luck', 'has', 'be', 'running,', "it'll", 'probably', 'rain', 'tomorrow.'], ['Look,', "I've", 'had', 'a', 'long', 'day', 'and', 'I', 'want', 'to', 'go', 'to', 'bed', 'right', 'now.'], ['I', 'got', 'tired', 'of', 'lying', 'in', 'bed', 'all', 'day.'], ['You', 'can', 'go', 'to', 'the', 'station', 'by', 'bus.'], ['Did', 'I', 'give', 'you', 'enough', 'time?'], ['I', 'just', 'love', 'that.'], ['This', 'is', 'a', 'bit', 'embarrassing.'], ['I', 'had', 'trouble', 'finding', 'my', 'way', 'back', 'to', 'my', 'hotel', 'last', 'night.'], ["They're", 'traitors.'], ['Can', 'you', 'remember', 'his', 'name?'], ["We're", 'going', 'back.'], ['Tom', 'passed', 'most', 'of', 'the', 'time', 'fishing.'], ["We're", 'doing', 'everything', 'we', 'can', 'for', 'Tom.'], ['I', 'prefer', 'to', 'travel', 'alone.'], ['Things', "didn't", 'go', 'as', 'planned.'], ["I'm", 'saving', 'up', 'for', 'my', 'old', 'age.'], ['I', 'can', 'recommend', 'a', 'good', 'lawyer.'], ['My', "parent's", 'house', 'is', 'comfortable.'], ['I', 'was', 'raised', 'right.'], ['Look', 'back!'], ['The', 'pasture', 'is', 'full', 'of', 'weeds.'], ["I'm", 'at', "Tom's", 'house.'], ['Have', 'you', 'seen', 'Tom', 'lately?'], ['Arabic', 'is', 'written', 'from', 'right', 'to', 'left.'], ['You', 'never', 'know', 'what', 'life', 'may', 'throw', 'your', 'way.'], ['I', "don't", 'have', 'a', 'lot', 'of', 'time', 'right', 'now.'], ['He', 'is', 'the', 'son', 'of', 'a', 'wealthy', 'family.'], ['The', 'bucket', 'is', 'full', 'of', 'water.'], ['Jeans', 'are', 'now', 'in', 'fashion', 'among', 'girls.'], ['Do', 'you', 'eat', 'rice', 'every', 'day?'], ['When', 'are', 'you', 'going', 'to', 'move?'], ['This', 'picture', 'must', 'have', 'been', 'taken', 'in', '1964.'], ['He', 'is', 'influential.'], ['Do', 'you', 'feel', 'lucky?'], ['I', 'was', 'supposed', 'to', 'do', 'that', 'yesterday.'], ['He', 'walked', 'away.'], ['I', 'booked', 'a', 'seat.'], ['They', 'swam.'], ["Where's", 'the', 'nearest', 'drugstore?'], ['Look', 'both', 'ways', 'before', 'you', 'cross', 'the', 'street.'], ['He', 'sat', 'next', 'to', 'her.'], ['I', 'think', "it's", 'perfect.'], ["We're", 'getting', 'closer.'], ['I', 'owe', 'two', "months'", 'rent', 'for', 'my', 'room.'], ['Tom', 'had', 'never', 'been', 'late', 'for', 'work', 'before.'], ['Is', 'this', 'ethical?'], ['Tom', 'does', 'volunteer', 'work.'], ['I', 'have', 'wonderful', 'memories', 'of', 'Boston.'], ['This', 'is', 'my', 'bicycle.'], ['I', "don't", 'want', 'your', 'apologies.'], ['Do', 'you', 'know', 'how', 'to', 'pronounce', 'this', 'word?'], ['You', 'said', 'you', 'were', 'happy.'], ["I'm", 'glad', 'he', 'liked', 'it.'], ["I'm", 'sorry', 'I', 'dragged', 'you', 'into', 'this.'], ['I', 'want', 'to', 'confess.'], ['Can', 'this', 'be', 'just', 'between', 'you', 'and', 'me?'], ['May', 'I', 'be', 'of', 'service?'], ['There', 'are', 'two', 'cats', 'sleeping', 'on', 'the', 'bed.'], ['He', 'threw', 'a', 'rock', 'into', 'the', 'pond.'], ['I', 'only', 'wish', 'it', "wasn't", 'so', 'hot', 'today.'], ['I', 'love', 'soul', 'food.'], ["I'm", 'surprised.'], ['I', "don't", 'think', 'any', 'of', 'us', 'are', 'happy', 'about', 'what', 'happened.'], ['It', "must've", 'slipped', 'my', 'mind.'], ['I', 'would', 'like', 'to', 'have', 'this', 'car', 'repaired', 'as', 'soon', 'as', 'possible.'], ['It', 'was', 'pitch', 'black', 'outside.'], ['Who', 'did', 'this', 'to', 'you?'], ['Give', 'me', 'your', 'money.'], ['Why', "didn't", 'you', 'tell', 'me', 'about', 'this', 'sooner?'], ['Dance', 'with', 'me.'], ['Please', 'stop.'], ['I', 'want', 'to', 'know', "what's", 'going', 'on', 'out', 'there.'], ['Sorry,', "what's", 'your', 'name?'], ['Tom', 'ran', 'towards', 'the', 'bushes.'], ["He's", 'away', 'on', 'vacation.'], ["I've", 'seen', 'it', 'a', 'million', 'times.'], ['The', 'house', 'was', 'in', 'flames.'], ['Do', 'you', 'want', 'me', 'to', 'explain', 'it', 'again?'], ['Mary', 'is', "Tom's", 'sister.'], ["You're", 'not', 'tired,', 'are', 'you?'], ['I', 'never', 'bet.'], ["I'm", 'looking', 'for', 'a', 'part-time', 'job.'], ['We', 'learned', 'at', 'school', 'that', 'the', 'square', 'root', 'of', 'nine', 'is', 'three.'], ['I', 'think', 'this', 'is', 'yours.'], ["I'm", 'your', 'biggest', 'fan.'], ['I', "wasn't", 'very', 'worried.'], ["It's", 'not', 'the', 'end', 'of', 'the', 'world.'], ['What', 'are', 'the', 'origins', 'of', 'the', 'Olympics?'], ['I', "don't", 'mind.'], ['She', "couldn't", 'convince', 'him', 'to', 'go', 'home.'], ["It's", 'almost', 'six.'], ['Would', 'you', 'please', 'allow', 'me', 'to', 'treat', 'you', 'to', 'dinner', 'next', 'week?'], ["You'd", 'better', 'tell', 'the', 'truth.'], ['The', 'light', 'faded', 'out.'], ['What', 'a', 'wonderful', 'invention!'], ['We', 'all', 'consider', 'your', 'idea', 'to', 'be', 'impractical.'], ['If', 'I', 'were', 'you,', 'I', 'would', 'paint', 'it', 'blue.'], ['Tom', 'has', 'begun', 'to', 'look', 'for', 'a', 'job.'], ["He's", 'such', 'a', 'great', 'guy.'], ['I', 'got', 'dressed', 'in', 'a', 'hurry.'], ['They', 'invited', 'them', 'to', 'dinner.'], ["Don't", 'tell', 'me', 'what', 'I', "can't", 'do.'], ['I', 'take', 'pride', 'in', 'what', 'I', 'do.'], ['How', 'could', 'you', 'say', 'such', 'a', 'thing?'], ["You're", 'very', 'forward.'], ['I', 'had', 'some', 'things', 'to', 'do.'], ['I', 'would', 'like', 'to', 'leave', 'this', 'town', 'and', 'never', 'come', 'back.'], ['I', 'wear', 'glasses.'], ['My', 'wife', 'is', 'away', 'for', 'the', 'weekend.'], ['He', 'had', 'a', 'queer', 'expression', 'on', 'his', 'face.'], ['Will', 'you', 'join', 'us?'], ["It's", 'dangerous', 'for', 'a', 'beginner', 'to', 'swim', 'here.'], ["What's", 'the', 'weirdest', 'thing', "you've", 'ever', 'eaten?'], ['Without', 'advice,', 'you', 'would', 'have', 'failed.'], ['Everyone', 'mistakes', 'me', 'for', 'my', 'brother.'], ['Be', 'careful', 'about', 'what', 'you', 'eat.'], ['I', 'got', 'it', 'for', 'free.'], ['I', 'caught', 'a', 'glimpse', 'of', 'him', 'as', 'he', 'turned', 'the', 'corner.'], ['Can', 'you', 'just', 'give', 'me', 'a', 'minute?'], ['I', "can't", 'stay', 'for', 'dinner.'], ['Wake', 'up.'], ['My', 'left', 'hand', 'is', 'numb.'], ['I', 'feel', 'lucky', 'to', 'have', 'been', 'chosen.'], ['These', 'cars', 'are', 'ours.'], ['Tom', 'got', 'special', 'treatment.'], ['What', 'is', 'the', 'total', 'amount', 'of', 'money', 'you', 'spent?'], ['I', 'did', 'all', 'the', 'work.'], ['I', 'put', 'it', 'in', 'your', 'room.'], ['She', 'was', 'ashamed', 'of', 'her', "children's", 'behavior.'], ["You'd", 'be', 'amazed', 'how', 'many', 'times', "I've", 'told', 'Tom', 'not', 'to', 'do', 'that.'], ['I', 'promise', 'that', 'you', "won't", 'be', 'disappointed.'], ['I', 'thought', 'that', 'my', 'father', 'was', 'going', 'to', 'kill', 'me.'], ['I', 'think', "it's", 'OK.'], ['I', 'think', 'you', 'should', 'go.'], ['I', 'need', 'them.'], ['I', 'thought', "you'd", 'enjoy', 'this.'], ['She', 'refused', 'my', 'invitation.'], ['What', 'if', 'someone', 'sees', 'us?'], ["I'm", 'in', 'a', 'desperate', 'situation.'], ['I', "didn't", 'know', 'you', 'were', 'so', 'ambitious.'], ['His', 'mother', 'made', 'him', 'clean', 'the', 'bathroom.'], ['When', 'did', 'that', 'happen?'], ['What', 'would', 'you', 'like', 'for', 'dessert?'], ['This', 'is', 'such', 'a', 'sad', 'story.'], ['Tom', 'thinks', 'that', 'the', 'answer', 'is', 'no.'], ["Tom's", 'sorry.'], ['I', 'think', 'we', 'should', 'break', 'up.'], ["I'll", 'arrange', 'for', 'someone', 'to', 'pick', 'you', 'up', 'at', 'your', 'home.'], ['Tell', 'them', 'that', "they're", 'wrong.'], ['Tom', 'is', 'taking', 'care', 'of', 'that.'], ['Why', 'are', 'you', 'helping', 'me?'], ['She', 'demanded', 'to', 'see', 'the', 'manager.'], ['I', "don't", 'even', 'want', 'you', 'there.'], ['I', 'asked', 'him', 'where', 'I', 'could', 'park', 'my', 'car.'], ['What', 'if', 'someone', 'killed', 'Tom?', 'What', 'would', 'you', 'do?'], ['You', 'are', 'the', 'last', 'person', 'that', 'I', 'expected', 'to', 'meet.'], ['How', 'often', 'do', 'you', 'shower?'], ['I', 'seem', 'to', 'have', 'a', 'temperature.'], ["I'll", 'send', 'you', 'a', 'picture.'], ['Please', 'ask', 'someone', 'else.'], ['That', 'house', 'is', 'very', 'small.'], ['I', 'remember', 'reading', 'about', 'it.'], ['What', 'a', 'big', 'boy', 'Tom', 'is!'], ["You're", 'on', 'the', 'wrong', 'train.'], ['I', 'hate', 'this', 'music.'], ["We'll", 'need', 'a', 'head', 'hunting', 'agency', 'to', 'find', 'the', 'right', 'man', 'for', 'this', 'executive', 'position.'], ["That's", 'why', 'Tom', 'won.'], ['I', "don't", 'know', 'how', 'to', 'explain', 'it.'], ["I'll", 'never', 'forget.'], ['I', "don't", 'really', 'have', 'a', 'cold.'], ['It', 'was', 'nice', 'and', 'warm', 'inside', 'the', 'house.'], ['You', 'ought', 'to', 'have', 'seen', 'it.'], ['If', "you're", 'tired,', 'rest.'], ['The', 'whole', 'world', 'was', 'involved', 'in', 'the', 'war.'], ['Do', 'you', 'really', 'think', 'Tom', 'will', 'do', 'that?'], ["We'll", 'put', 'you', 'on', 'the', 'list.'], ['How', 'much', 'longer', 'is', 'this', 'storm', 'going', 'to', 'last?'], ['I', 'wish', 'my', 'dream', 'would', 'come', 'true.'], ["I'm", 'lazy.'], ['I', 'eat', 'alone.'], ["That's", 'absolutely', 'right.'], ['Do', 'you', 'have', 'any', 'Japanese', 'newspapers?'], ["I'm", 'pretty', 'sure', 'Tom', "wasn't", 'there.'], ['I', 'borrowed', 'this', 'book', 'from', 'Tom.'], ['You', "shouldn't", 'break', 'promises.'], ["I'm", 'reading', 'The', 'New', 'York', 'Times.'], ["I'm", 'dreading', 'the', 'exam.'], ['What', 'gave', 'it', 'away?'], ['Can', 'you', 'understand', 'the', 'meaning', 'of', 'this', 'paragraph?'], ['My', 'tie', 'is', 'orange.'], ['I', 'love', 'you.'], ["Let's", 'hope', "he's", 'all', 'right.'], ["We're", 'strong.'], ['I', 'was', 'young', 'and', 'innocent.'], ['It', 'takes', 'about', 'ten', 'minutes', 'to', 'boil', 'an', 'egg.'], ['How', 'can', 'you', 'fix', 'it?'], ['It', "can't", 'be', 'done.'], ['They', 'were', 'very', 'confused.'], ['China', 'is', 'rich', 'in', 'natural', 'resources.'], ['I', 'know', "you've", 'been', 'through', 'a', 'lot.'], ['I', 'saw', 'you', 'outside.'], ['We', 'forgot.'], ['I', "can't", 'sleep', 'well.'], ["Let's", 'discuss', 'the', 'matter', 'right', 'now.'], ['They', 'can', 'manage.'], ['She', 'is', 'as', 'beautiful', 'as', 'Snow', 'White.'], ['This', 'is', 'a', 'fork.'], ["You're", 'one', 'of', 'my', 'best', 'friends.'], ["You're", 'my', "kid's", 'teacher.'], ['How', 'often', 'do', 'you', 'go', 'abroad?'], ['My', "name's", 'Tom.', "What's", 'yours?'], ['My', 'wife', 'is', 'a', 'good', 'manager.'], ["That's", 'all', 'I', 'do.'], ["It's", 'difficult', 'to', 'understand', 'his', 'theory.'], ['Can', 'I', 'come', 'to', 'your', 'office', 'tomorrow?'], ['She', 'was', 'not', 'interested', 'in', 'boys', 'at', 'all.'], ['When', 'you', 'leave,', "I'll", 'miss', 'you.'], ['Thanks', 'for', 'your', 'quick', 'answer.'], ["I'd", 'like', 'you', 'to', 'drive.'], ['Thank', 'you', 'for', 'making', 'it', 'so', 'easy.'], ["Let's", 'hope', 'she', 'comes.'], ['Look,', 'I', "don't", 'want', 'to', 'lose', 'my', 'job.'], ['Tom', 'wanted', 'to', 'be', 'a', 'writer.'], ['I', "didn't", 'say', 'I', 'liked', 'Tom.'], ['This', 'is', 'the', 'lady', 'who', 'wants', 'to', 'see', 'you.'], ['I', "can't", 'help', 'you,', 'Tom.'], ['I', "can't", 'eat', 'all', 'of', 'this.'], ["Don't", 'eat', 'between', 'meals.'], ['We', 'should', 'use', 'the', 'electric', 'blankets', 'tonight.'], ["It's", 'a', 'matter', 'of', 'the', 'utmost', 'importance.'], ["I'm", 'cured.'], ["It's", 'very', 'cold', 'this', 'evening.'], ["I'm", 'in', 'Boston', 'all', 'this', 'week.'], ['I', 'like', 'crossword', 'puzzles.'], ['I', 'need', 'to', 'know', 'your', 'answer', 'by', 'Friday.'], ['Could', 'you', 'tell', 'me', 'how', 'to', 'get', 'to', 'the', 'nearest', 'station?'], ['The', 'nurse', 'checked', "Tom's", 'pulse.'], ['I', "didn't", 'know', 'that', 'Tom', "didn't", 'know', 'how', 'to', 'do', 'that.'], ['Are', 'you', 'mentally', 'ill?'], ['If', 'the', 'phone', 'rings', 'again,', 'I', 'plan', 'to', 'ignore', 'it.'], ['He', 'lost', 'his', 'eyesight', 'in', 'that', 'accident.'], ['Why', "don't", 'you', 'run', 'for', 'president?'], ['Tom', 'was', 'just', 'great.'], ['Tom', 'likes', 'the', 'ocean.'], ['I', "can't", 'even', 'remember', 'my', 'own', 'name.'], ['I', "haven't", 'done', 'that', 'very', 'many', 'times', 'yet.'], ['He', 'tries.'], ['I', 'have', 'to', 'choose', 'between', 'the', 'two.'], ["I'd", 'love', 'to', 'talk', 'to', 'you.'], ['Congratulations!'], ['He', 'won', 'the', 'third', 'prize.'], ['Tom', 'sang', 'better', 'than', 'Mary', 'did.'], ['Do', 'you', 'want', 'to', 'be', 'rich?'], ['She', 'came', 'out', 'of', 'there.'], ['Are', 'you', 'guys', 'free?'], ["You're", 'not', 'totally', 'blameless.'], ['We', "haven't", 'seen', 'Tom', 'in', 'a', 'while.'], ['We', 'know', 'all', 'about', 'you.'], ['I', "don't", 'know', 'where', 'he', 'went.'], ['I', "don't", 'know', 'what', "I'm", 'going', 'to', 'do', 'with', 'you.'], ['They', 'will', 'get', 'married', 'next', 'month.'], ['He', 'has', 'a', 'hard', 'time', 'remembering', 'names.'], ['I', 'admire', 'your', 'bravery.'], ["Aren't", 'you', 'dressed', 'yet?'], ['We', 'had', 'a', 'party', 'outside.'], ['We', 'sometimes', 'lack', 'patience', 'with', 'old', 'people.'], ['She', 'has', 'improved', 'her', 'skill', 'in', 'cooking', 'recently.'], ['Just', 'as', 'there', 'are', 'few', 'fat', '"old', 'maids,"', 'there', 'are', 'few', 'fat', 'bachelors.'], ['To', 'tell', 'the', 'truth,', 'I', 'drove', 'my', "father's", 'car', 'without', 'his', 'permission.'], ['He', 'filled', 'the', 'glass', 'with', 'wine.'], ['She', 'accused', 'me', 'of', 'being', 'a', 'liar.'], ['How', 'long', 'do', 'you', 'have', 'to', 'eat', 'lunch?'], ['Are', 'you', 'real', 'sure', 'about', 'that?'], ['I', 'hope', 'you', "don't", 'mind', 'if', 'I', 'leave', 'early.'], ['The', 'streets', 'were', 'empty.'], ["Let's", 'start', 'with', 'the', 'easy', 'stuff.'], ['Can', 'you', 'count', 'to', 'ten', 'in', 'Chinese?'], ['He', 'acted', 'as', 'a', 'guide', 'while', 'I', 'was', 'staying', 'in', 'Kyoto.'], ['Ten', 'prisoners', 'broke', 'out', 'of', 'jail.'], ['That', "doesn't", 'bother', 'me.'], ['I', 'eat', 'lunch', 'here', 'two', 'or', 'three', 'times', 'a', 'week.'], ['I', 'suggest', 'you', 'do', 'that', 'in', 'October.'], ['Was', 'your', 'high', "school's", 'basketball', 'team', 'a', 'good', 'team?'], ['I', "can't", 'live', 'without', 'him.'], ["There's", 'no', 'table', 'in', 'the', 'room.'], ['It', "won't", 'be', 'necessary', 'for', 'us', 'to', 'come', 'back', 'here', 'tomorrow.'], ['He', 'gave', 'a', 'tip', 'as', 'a', 'sign', 'of', 'gratitude.'], ['I', "can't", 'agree', 'with', 'you', 'on', 'that', 'point.'], ["Don't", 'you', 'miss', 'your', 'father?'], ['What', 'can', 'I', 'tell', 'Tom?'], ['Do', 'you', 'mean', "you're", 'giving', 'up?'], ['Tom', 'is', 'a', 'very', 'creative', 'person.'], ["It's", 'no', 'good', 'making', 'the', 'same', 'old', 'products', 'year', 'after', 'year.'], ['I', "can't", 'blame', 'him.'], ['Tom', 'became', 'a', 'minister.'], ['Tom', 'knew', 'who', "Mary's", 'boyfriend', 'was.'], ['I', "don't", 'want', 'to', 'go', 'to', 'school.'], ['He', 'wanted', 'to', 'see', 'his', 'boss', 'in', 'Tokyo', 'before', 'leaving', 'for', 'America.'], ['None', 'of', 'the', 'girls', 'are', 'students.'], ['They', 'are', 'my', 'friends.'], ['We', 'ought', 'to', 'be', 'ready', 'for', 'whatever', 'comes.'], ['Would', 'you', 'lend', 'me', 'a', 'pencil?'], ['He', 'painted', 'a', 'dog.'], ['I', 'was', 'a', 'little', 'surprised.'], ["I'll", 'show', 'you', 'that', 'I', 'am', 'right.'], ['I', 'want', 'you', 'to', 'talk.'], ['I', 'wanted', 'to', 'do', 'that', 'with', 'you.'], ['Take', 'the', 'wheel.'], ['How', 'old', 'were', 'you', 'when', 'you', 'did', 'that?'], ['I', "don't", 'want', 'to', 'be', 'the', 'person', 'who', 'tells', 'Tom', 'that.'], ['If', "you're", 'happy,', "I'm", 'glad.'], ['How', 'many', 'beers', 'have', 'you', 'had?'], ['They', 'are', 'considered', 'the', 'greatest', 'rock', 'band', 'in', 'history.'], ['I', 'have', 'a', 'red', 'car.'], ['Tom', 'is', 'more', 'famous', 'than', 'I', 'am.'], ['My', 'sister', 'and', 'I', 'went', 'to', 'the', 'castle.'], ['You', 'may', 'use', 'my', 'dictionary.'], ['The', 'most', 'essential', 'thing', 'in', 'the', 'world', 'to', 'any', 'individual', 'is', 'to', 'understand', 'himself.'], ['You', "can't", 'know', 'that', 'for', 'sure.'], ['I', "don't", 'really', 'know.'], ['It', "wasn't", 'much', 'of', 'an', 'earthquake.'], ['I', 'know', 'how', 'to', 'fly.'], ['I', 'almost', 'forgot', 'to', 'buy', 'milk.'], ['That', "can't", 'be', 'true.'], ['Since', 'it', 'was', 'already', 'late,', 'I', 'went', 'to', 'sleep.'], ['The', 'best', 'thing', 'about', 'working', 'in', 'a', 'team', 'is', 'that,', 'when', 'something', 'goes', 'wrong,', 'you', 'can', 'always', 'blame', 'someone', 'else.'], ['Thanks', 'for', 'joining', 'us.'], ['I', 'asked', 'Tom', 'if', 'he', 'needed', 'more', 'money.'], ['Whose', 'house', 'is', 'this?'], ['More', 'is', 'not', 'always', 'better.'], ['The', 'room', 'was', 'quiet.'], ["It's", 'time', 'for', 'me', 'to', 'go,', 'kids.'], ['I', 'did', 'that', 'which', 'she', 'asked', 'me', 'to', 'do.'], ['Do', 'you', 'like', 'going', 'to', 'school?'], ['Are', 'you', 'afraid', 'of', 'the', 'dark?'], ['I', 'bought', 'this', 'yesterday.'], ['Tell', 'me', 'what', 'Tom', 'said.'], ['At', 'our', 'company,', 'the', 'retirement', 'age', 'is', '60.'], ['They', 'furnished', 'the', 'library', 'with', 'many', 'books.'], ['She', "didn't", 'want', 'him', 'to', 'die.'], ['My', 'suit', 'is', 'gray.'], ['We', 'were', 'all', 'shocked.'], ['He', 'disguised', 'himself', 'as', 'a', 'woman.'], ['He', 'told', 'me', 'when', 'to', 'say', 'yes.'], ['Tom', 'looks', 'a', 'little', 'uncomfortable.'], ['Everybody', 'in', 'the', 'park', 'looked', 'up', 'at', 'the', 'hot', 'air', 'balloon.'], ['I', 'have', 'to', 'put', 'my', 'shoes', 'on.'], ['Stop', 'treating', 'me', 'like', 'a', 'child.'], ['Tom', 'has', 'something', 'to', 'tell', 'you.'], ['Excuse', 'me.', 'Can', 'you', 'direct', 'me', 'to', 'the', 'nearest', 'subway', 'station?'], ['I', 'have', 'no', 'friends', 'to', 'play', 'with.'], ['Tom', 'will', 'possibly', 'be', 'here', 'within', 'the', 'hour.'], ['It', 'pains', 'me', 'to', 'disagree', 'with', 'your', 'opinion.'], ["I'll", 'turn', 'around', 'while', 'you', 'change.'], ['There', "weren't", 'any', 'roses', 'in', 'the', 'garden.'], ["You've", 'painted', 'the', 'walls,', "haven't", 'you?'], ['"You\'re', 'hiding', 'something."', '"No,', "I'm", 'not."'], ["Don't", 'touch', 'the', 'stove.'], ['I', 'once', 'worked', 'in', 'a', 'restaurant.'], ['Nothing', 'changes.'], ['This', 'probably', "won't", 'end', 'all', 'of', 'our', 'problems.'], ['I', 'am', 'still', 'attached', 'to', 'this', 'bicycle.'], ['How', 'many', 'hours', 'a', 'day', 'do', 'you', 'watch', 'TV?'], ['She', 'whispered', 'something', 'to', 'him.'], ['I', "can't", 'ask', 'you', 'to', 'take', 'that', 'sort', 'of', 'risk.'], ['She', 'is', 'proficient', 'in', 'French.'], ['Can', 'you', 'come', 'on', 'Sunday', 'evening?'], ["Isn't", 'it', 'a', 'lovely', 'morning?'], ['He', 'mocked', 'me.'], ['I', 'picked', 'these', 'flowers', 'myself.'], ['I', 'give', 'you', 'everything', 'you', 'ask', 'for,', 'but', 'you', 'never', 'seem', 'satisfied.'], ['I', 'feel', 'honored.'], ["I'm", 'not', 'too', 'convinced.'], ['They', 'burned.'], ["What's", 'done', 'is', 'done.'], ["I'm", 'sure', "it's", 'just', 'a', 'misunderstanding.'], ['I', "don't", 'think', "you're", 'schizophrenic.'], ['The', 'restaurant', 'is', 'empty.'], ['It', 'is', 'a', 'pity', 'you', 'cannot', 'come.'], ['If', "they'd", 'taken', 'their', "doctors'", 'advice,', 'they', 'might', 'not', 'have', 'died.'], ['Tom', 'dreaded', 'having', 'to', 'spend', 'Christmas', 'in', 'the', 'hospital.'], ['Tom', "didn't", 'expect', 'to', 'sell', 'his', 'old', 'car', 'for', 'so', 'much', 'money.'], ["I'm", 'pleased', 'with', 'their', 'performance.'], ['We', 'want', 'you', 'to', 'be', 'the', 'team', 'captain.'], ["I'm", 'starved.'], ['She', 'can', 'swim', 'further', 'than', 'I', 'can.'], ['The', 'new', 'house', "didn't", 'live', 'up', 'to', 'expectations.'], ['I', 'always', 'feel', 'hungry.'], ['Are', 'you', 'tired', 'of', 'waiting', 'in', 'line?'], ['I', 'tried', 'to', 'cheer', 'him', 'up.'], ['He', 'studied', 'as', 'hard', 'as', 'anybody', 'in', 'his', 'class.'], ['He', 'chewed', 'his', 'gum.'], ['Tom', 'threatened', 'Mary.'], ['Who', 'wants', 'you', 'to', 'be', 'the', 'boss?'], ["Tom's", 'bedroom', 'door', 'was', 'closed.'], ['Lincoln', 'was', 'opposed', 'to', 'slavery.'], ['I', 'always', 'have', 'a', 'good', 'supply', 'of', 'tissues', 'in', 'my', 'pockets.'], ['Can', 'I', 'use', 'a', 'credit', 'card?'], ['Tom', 'knew', 'something', "wasn't", 'right.'], ['That', 'story', "can't", 'be', 'confirmed.'], ['There', "isn't", 'any', 'film', 'in', 'this', 'camera.'], ["They're", 'coming', 'for', 'me.'], ['I', 'am', 'tired', 'of', 'the', 'day-to-day', 'routine', 'of', 'life.'], ["I'm", 'afraid', 'of', 'dying.'], ['Is', 'that', 'a', 'yes', 'or', 'no?'], ['I', 'just', "don't", 'want', 'to', 'catch', 'your', 'cold.'], ['Are', 'you', 'leaving', 'soon?'], ['I', 'felt', 'excited.'], ['You', "don't", 'have', 'to', 'explain.'], ['Disable', 'the', 'alarm.'], ["They're", 'good', 'friends', 'of', 'ours.'], ['I', 'feel', 'like', "I'm", 'dreaming.'], ['Your', 'mother', 'is', 'worried', 'sick', 'about', 'you.'], ['What', 'vegetables', 'do', 'you', 'usually', 'grow?'], ['We', "didn't", 'need', 'that.'], ['How', 'long', 'does', 'it', 'take', 'from', 'here', 'to', 'the', 'station?'], ['That', 'is', 'the', 'worst', 'thing', 'you', 'can', 'do!'], ['Theory', 'and', 'practice', 'should', 'go', 'hand', 'in', 'hand.'], ['I', "don't", 'know', 'Boston', 'that', 'well.'], ['I', 'hope', 'that', 'what', 'you', 'are', 'eating', 'is', 'healthy.'], ["That's", 'not', 'what', 'I', 'meant.'], ['That', 'was', 'nice.'], ["You're", 'sleepy.'], ['Tom', "doesn't", 'swim', 'very', 'well.'], ['Did', 'you', 'get', 'her', 'letter?'], ['You', 'have', 'problems.'], ['I', 'only', 'did', 'my', 'duty.'], ['American', 'generals', 'believed', 'they', 'could', 'win', 'an', 'easy', 'victory.'], ['The', 'two', 'sides', 'hold', 'talks', 'this', 'week.'], ['I', 'tried', 'calling,', 'but', 'they', "didn't", 'answer.'], ['I', "wouldn't", 'care.'], ['Why', "don't", 'you', 'love', 'me?'], ['Your', 'mother', 'is', 'going', 'to', 'kill', 'me.'], ['Your', "phone's", 'ringing.'], ['Can', 'you', 'see', 'that', 'small', 'house?'], ["Everything's", 'all', 'right', 'now.'], ['We', 'can', 'all', 'walk', 'home.'], ['She', 'danced', 'with', 'joy.'], ['I', 'know', "you're", 'richer', 'than', 'me.'], ['Please', 'sum', 'up', 'your', 'idea.'], ['His', 'novel', 'has', 'been', 'translated', 'into', 'Japanese.'], ['Do', 'this', 'work', 'by', 'tomorrow', 'if', 'at', 'all', 'possible.'], ['You', 'must', 'take', 'advantage', 'of', 'the', 'opportunity.'], ['I', 'want', 'you', 'to', 'wash', 'the', 'car.'], ["We're", 'all', 'busy.'], ['Let', 'me', 'tell', 'you', 'how', 'Tom', 'and', 'Mary', 'met.'], ['This', 'is', 'the', 'reason', 'why', 'I', "didn't", 'come', 'yesterday.'], ["I'm", 'free', 'every', 'day', 'but', 'Monday.'], ['I', 'knew', 'I', "shouldn't", 'do', 'that.'], ['She', 'will', 'leave', 'the', 'hospital', 'soon.'], ['I', "don't", 'want', 'to', 'play', 'anymore.'], ['Mary', 'is', 'a', 'lucky', 'girl.'], ['Would', 'you', 'like', 'a', 'cup', 'of', 'coffee?'], ['You', 'gotta', 'get', 'more', 'organized.'], ['How', 'many', 'people', 'does', 'it', 'take', 'to', 'change', 'a', 'lightbulb?'], ['This', 'room', 'has', 'space', 'for', 'fifty', 'people.'], ['Many', 'mistakes', 'could', 'have', 'been', 'avoided', 'through', 'simple', 'experiments.'], ['Answer', 'the', 'phone,', 'please.'], ['Tom', 'knew', 'how', 'to', 'talk', 'to', 'women.'], ["Don't", 'follow', 'me.'], ['Get', 'a', 'doctor.'], ['Are', 'you', 'ready', 'to', 'do', 'that?'], ['I', "didn't", 'feel', 'well,', 'but', 'I', 'went', 'to', 'work.'], ['His', 'name', 'was', 'on', 'the', 'tip', 'of', 'my', 'tongue,', 'but', 'I', "couldn't", 'remember', 'it.'], ['I', 'should', 'turn', 'in.', 'I', 'need', 'my', 'beauty', 'sleep', 'you', 'know.'], ["I'm", 'a', 'photographer.'], ['My', 'father', 'likes', 'strong', 'coffee.'], ['We', 'were', 'watching', 'TV', 'when', 'the', 'bell', 'rang.'], ['I', 'still', 'do', 'that.'], ['I', 'suppose', 'it', 'was', 'a', 'bit', 'silly.'], ['Ironic,', "isn't", 'it?'], ['Miraculously,', 'nobody', 'was', 'seriously', 'injured.'], ['Tell', 'me', 'how', 'you', 'solved', 'the', 'problem.'], ['The', 'nurse', 'gave', 'you', 'a', 'sedative.'], ['She', 'is', 'singing', 'the', 'latest', 'popular', 'songs.'], ["That's", 'a', 'pretty', 'dress', 'you', 'have', 'on.'], ['I', 'know', 'that', 'Tom', 'knows.'], ['I', 'am', 'afraid', 'to', 'go.'], ['I', 'realize', 'I', 'may', 'not', 'be', 'the', 'most', 'desirable', 'man', 'in', 'the', 'world,', 'but', 'I', 'still', 'hope', "you'll", 'consider', 'going', 'out', 'with', 'me.'], ['Halloween', 'was', 'originally', 'a', 'Celtic', 'festival.'], ['He', 'painted', 'the', 'ceiling', 'blue.'], ['You', 'are', 'twice', 'as', 'strong', 'as', 'me.'], ['You', "don't", 'have', 'to', 'tell', 'me', 'this.'], ['Why', 'did', 'you', 'come', 'here', 'today?'], ['Please', 'make', 'yourself', 'at', 'home', 'here.'], ['We', 'eat', 'to', 'live,', 'not', 'live', 'to', 'eat.'], ['How', 'would', 'you', 'describe', 'me?'], ['Have', 'you', 'put', 'on', 'weight?'], ["I'm", 'not', 'mistaken.'], ['I', 'made', 'you', 'a', 'pair', 'of', 'mittens.'], ['I', 'just', 'wanted', 'to', 'talk', 'to', 'you.'], ['It', 'was', 'so', 'cold', 'that', 'we', 'made', 'a', 'fire.'], ['We', 'took', 'shelter', 'under', 'a', 'tree.'], ['I', 'have', 'the', 'master', 'key.'], ['We', 'already', 'gave', 'it', 'to', 'you.'], ['Why', 'did', 'he', 'run', 'away?'], ['The', 'tiger', 'was', 'killed.'], ['I', 'suppose', 'you', 'are', 'right.'], ['I', 'was', 'surprised', 'by', 'what', 'I', 'learned.'], ['I', 'got', 'up', 'early', 'this', 'morning.'], ["It's", 'not', 'something', 'anyone', 'can', 'do.'], ['Why', "didn't", 'you', 'go', 'to', 'the', 'police?'], ["I'll", 'get', 'you.'], ['How', 'much', 'money', 'do', 'I', 'owe', 'you?'], ["Don't", 'judge', 'a', 'book', 'by', 'its', 'cover.'], ['He', 'asked', 'her', 'out', 'on', 'a', 'date.'], ['I', 'swear', 'to', 'you', 'I', 'will', 'never', 'do', 'it', 'again.'], ['Do', 'you', 'have', 'any', 'children?'], ['This', 'doll', 'is', 'a', 'gift', 'from', 'my', 'aunt.'], ['Tom', 'watched', 'TV', 'yesterday.'], ['Do', 'you', 'know', 'where', 'they', 'come', 'from?'], ["What's", 'that', 'building?'], ['I', 'feel', 'very', 'guilty.'], ['We', 'really', 'have', 'a', 'lot', 'to', 'do.'], ['She', 'brought', 'him', 'to', 'our', 'place', 'to', 'meet', 'my', 'parents.'], ["I'd", 'love', 'to', 'sing', 'for', 'you.'], ['I', 'wonder', 'if', "there's", 'a', 'connection.'], ['Which', 'one', 'will', 'he', 'choose?'], ["We're", 'not', 'speaking.'], ['I', 'like', 'his', 'new', 'house,', 'but', 'I', 'had', 'not', 'expected', 'it', 'to', 'be', 'so', 'small.'], ['He', 'is', 'able', 'to', 'speak', 'ten', 'languages.'], ['What', 'is', 'that', 'big', 'building', 'in', 'front', 'of', 'us?'], ['Did', 'we', 'miss', 'anything?'], ['Of', 'course,', "I'm", 'going', 'to', 'do', 'that.'], ["You're", 'the', 'only', 'one', 'who', 'can', 'help', 'me.'], ['I', 'never', 'expected', 'that', 'she', 'would', 'join', 'us.'], ['I', 'leave', 'in', 'the', 'morning.'], ['Although', 'I', 'was', 'exhausted,', 'I', 'continued', 'to', 'work.'], ["I'd", 'like', 'to', 'see', 'you', 'before', 'I', 'leave', 'for', 'Europe.'], ['You', 'are', 'always', 'doubting', 'my', 'word.'], ["We've", 'said', 'our', 'goodbyes.'], ["It's", 'been', 'seven', 'years', 'since', 'we', 'got', 'married.'], ['I', 'am', 'looking', 'for', 'a', 'part-time', 'job', 'so', 'I', 'can', 'buy', 'a', 'new', 'video', 'camera.'], ['Since', "you're", 'tired,', 'you', 'should', 'rest.'], ['"Is', 'it', 'going', 'to', 'clear', 'up?"', '"I', 'hope', 'so."'], ['He', 'speaks', 'French.'], ['He', 'risked', 'his', 'life', 'to', 'save', 'her.'], ['Stop', 'playing', 'hard', 'to', 'get.'], ['I', 'live', 'about', 'a', 'mile', 'from', 'here.'], ['He', 'did', 'the', 'right', 'thing.'], ['I', 'want', 'to', 'buy', 'you', 'a', 'drink.'], ['I', "wouldn't", 'do', 'that', 'without', 'you.'], ["You'd", 'be', 'amazed', 'how', 'long', 'it', 'takes', 'Tom', 'to', 'get', 'ready', 'in', 'the', 'morning.'], ["I'll", 'rip', 'your', 'head', 'off!'], ['What', 'time', 'does', 'your', 'plane', 'leave', 'tomorrow?'], ['I', 'am', 'not', 'concerned', 'with', 'this', 'affair.'], ['I', 'thought', "I'd", 'try', 'eating', 'Mexican', 'food', 'today.'], ['Do', 'you', 'think', "you've", 'made', 'the', 'wrong', 'choice?'], ['Did', 'you', 'have', 'a', 'good', 'time', 'yesterday?'], ['She', 'smiled', 'at', 'the', 'sight', 'of', 'her', 'mother.'], ['Keep', 'your', 'hands', 'clean.'], ['He', "isn't", 'coming,', 'either.'], ['I', "can't", 'give', 'you', 'anything.'], ['I', 'knew', 'you', 'were', 'behind', 'it.'], ['Tom', "didn't", 'keep', 'his', 'promise', 'to', 'me.'], ['Where', 'did', 'you', 'learn', 'that?'], ['Why', 'are', 'you', 'so', 'clumsy?'], ["That's", 'why', 'I', 'came', 'late.'], ['Home', 'prices', 'are', 'surging.'], ["I'm", 'divorced.'], ['You', 'get', 'out', 'only', 'what', 'you', 'put', 'in.'], ['Give', 'Tom', 'some', 'room.'], ['How', 'do', 'you', 'write', 'your', 'last', 'name?'], ["That's", 'what', 'you', 'all', 'say.'], ['It', 'is', 'going', 'to', 'be', 'rather', 'cool.'], ['What', 'do', 'you', 'think', 'this', 'is', 'made', 'of?'], ['You', 'hurt', "Tom's", 'feelings.'], ['Tom', 'lost', 'his', 'hearing.'], ['He', 'just', "doesn't", 'measure', 'up.'], ['My', "sister's", 'getting', 'married.'], ["I'm", 'not', 'ready', 'yet.'], ['This', 'is', 'really', 'impressive.'], ["What's", 'the', "world's", 'highest', 'mountain?'], ['My', 'father', 'might', 'be', 'at', 'home', 'now.'], ['Do', 'you', 'trust', 'anyone?'], ['Do', 'you', 'have', 'change', 'for', 'a', 'dollar?'], ['I', 'appreciate', 'your', 'restraint.'], ['I', 'know', 'a', 'better', 'way', 'to', 'do', 'that.'], ['I', 'really', 'need', 'to', 'be', 'alone', 'right', 'now.'], ['Football', 'is', 'the', 'most', 'popular', 'sport', 'in', 'Brazil.'], ["You've", 'been', 'suspended.'], ['No', 'one', 'told', 'us', 'anything.'], ['He', 'thinks', 'that', 'they', 'are', 'not', 'sentient', 'beings.'], ['We', 'must', 'withdraw.'], ['I', "don't", 'know', 'who', "you're", 'talking', 'about.'], ['What', 'does', 'it', 'cost', 'to', 'build', 'a', 'new', 'house', 'in', 'this', 'neighborhood?'], ['I', "should've", 'never', 'come', 'here.'], ['You', 'are', 'very', 'brave.'], ['Maybe', 'she', 'is', 'coming.'], ["What'll", 'you', 'be', 'doing', 'this', 'summer?'], ['It', "doesn't", 'matter', 'much.'], ['The', 'police', 'eventually', 'arrested', 'Tom.'], ['Are', 'you', 'telling', 'me', 'the', 'truth?'], ['He', 'sometimes', 'ate', 'out', 'with', 'his', 'family.'], ['I', 'really', "didn't", 'have', 'time.'], ['He', 'often', 'sits', 'for', 'many', 'hours', 'reading', 'books.'], ['Are', 'you', 'going', 'to', 'eat', 'those', 'eggs?'], ['Keep', 'that', 'thing', 'away', 'from', 'me.'], ['I', 'believe', 'this', 'is', 'inaccurate.'], ['This', 'museum', 'has', 'been', 'closed', 'for', 'five', 'years.'], ["You'll", 'be', 'crying', 'before', 'long.'], ['Take', 'mine.'], ['I', 'am', 'grateful', 'to', 'them.'], ['Just', 'give', 'me', 'what', 'I', 'want.'], ['That', 'should', 'take', 'about', 'thirty', 'minutes.'], ['Read', 'as', 'many', 'books', 'as', 'possible.'], ['The', 'bigger', 'they', 'come,', 'the', 'harder', 'they', 'fall.'], ["Don't", 'think', 'about', 'it', 'too', 'much.'], ['He', 'looks', 'gloomy.'], ['What', 'does', 'what', 'happened', 'last', 'night', 'have', 'to', 'do', 'with', "what's", 'happening', 'today?'], ['I', "can't", 'tell', 'you', 'how', 'happy', 'I', 'am', 'that', "you've", 'come', 'to', 'visit', 'us.'], ['That', "isn't", 'big', 'enough.'], ['They', "don't", 'eat', 'meat.'], ["Where's", 'the', 'oar?'], ["I'm", 'not', 'that', 'lucky.'], ['Tom', 'watched', 'closely.'], ['Close', 'your', 'eyes.'], ['Are', 'they', 'in', 'love?'], ['You', 'look', 'like', "you're", 'busy.'], ["We're", 'unprejudiced.'], ["Don't", 'tell', 'me', "you're", 'tired', 'already.'], ['My', 'house', 'is', 'your', 'house.'], ['He', 'defeated', 'his', 'opponent', 'in', 'the', 'election.'], ['I', 'am', 'growing', 'to', 'hate', 'the', 'girl.'], ["We're", 'all', 'agreed', 'on', 'that.'], ['This', 'paper', 'does', 'not', 'absorb', 'ink.'], ['I', 'wonder', 'who', 'she', 'is.'], ['Where', 'is', 'it', 'hidden?'], ['It', 'did', 'not', 'come', 'off.'], ['I', 'hear', 'music.'], ['She', 'has', 'a', 'very', 'good', 'figure.'], ['Is', 'there', 'any', 'beer', 'in', 'the', 'refrigerator?'], ['Tom', 'certainly', 'goes', 'to', 'bed', 'early.'], ['Do', 'you', 'buy', 'that', 'explanation?'], ['Please', 'continue.'], ['The', 'rules', 'are', 'simple.'], ['He', 'was', 'a', 'good', 'friend.'], ['It', 'makes', 'no', 'sense', 'whatsoever.'], ['How', 'far', 'is', 'it', 'from', 'here', 'to', 'the', 'sea?'], ["I'm", 'saving', 'up', 'to', 'buy', 'a', 'new', 'car.'], ['Tom', 'has', 'done', 'nothing', 'illegal.'], ['I', 'have', 'to', 'find', 'that.'], ['Do', 'you', 'believe', 'in', 'God?'], ['You', 'should', 'not', 'go', 'alone.'], ["I'm", 'decorating', 'the', 'classroom.'], ['How', 'long', 'does', 'it', 'take', 'you', 'to', 'get', 'here', 'from', 'your', 'house', 'by', 'train?'], ['I', 'guess', 'we', 'were', 'happy.'], ['Can', 'you', 'guess', 'my', 'age?'], ['Do', 'you', 'go', 'to', 'school', 'on', 'foot', 'every', 'day?'], ['I', "don't", 'ever', 'want', 'us', 'to', 'be', 'apart.'], ["Let's", 'meet', 'at', 'the', 'station', 'at', '2:30.'], ['My', 'life', 'is', 'in', 'danger.'], ['Why', 'did', 'he', 'do', 'such', 'a', 'thing?'], ['Are', 'you', 'flirting', 'with', 'him?'], ['She', 'lived', 'next', 'door', 'to', 'us.'], ['He', 'has', 'had', 'a', 'long', 'teaching', 'career.'], ['Strawberries', 'are', 'in', 'season', 'now.'], ['I', 'think', 'Tom', 'is', 'a', 'good', 'coach.'], ['He', 'could', 'not', 'believe', 'his', 'ears.'], ['They', 'really', 'wanted', 'to', 'know', 'what', 'happened.'], ['He', 'often', 'sits', 'by', 'me', 'and', 'listens', 'to', 'music.'], ['Tom', 'bought', 'a', 'bathrobe.'], ["You're", 'the', 'most', 'incredible', 'person', "I've", 'ever', 'met.'], ['It', "didn't", 'happen', 'that', 'way.'], ['I', 'thought', 'I', 'told', 'you', 'to', 'stay', 'in', 'the', 'car.'], ['Though', 'wounded,', 'they', 'continued', 'to', 'fight.'], ["I'm", 'meeting', 'Tom', 'for', 'lunch', 'at', 'a', 'restaurant', 'on', 'Park', 'Street.'], ["Don't", 'look', 'so', 'shocked.'], ['The', 'pickpocket', 'disappeared', 'into', 'the', 'crowd.'], ['I', 'like', 'sauerkraut.'], ['Are', 'you', 'saying', 'you', "can't", 'fix', 'it?'], ['The', 'electricity', 'went', 'out,', 'but', "it's", 'back', 'on', 'now.'], ['I', 'need', 'air.'], ['The', 'proof', 'of', 'the', 'pudding', 'is', 'in', 'the', 'eating.'], ['There', 'is', 'a', 'white', 'line', 'in', 'the', 'middle', 'of', 'the', 'road.'], ['Please', 'come', 'to', 'my', 'house', 'for', 'a', 'while.'], ['Oh', 'please!'], ["It's", 'night.'], ['Why', 'did', 'you', 'come', 'here', 'today?'], ['He', 'lost', 'his', 'way', 'in', 'the', 'woods.'], ['Could', 'you', 'do', 'this', 'instead', 'of', 'me?'], ["I've", 'heard', 'that', 'you', 'can', 'kill', 'werewolves', 'by', 'shooting', 'them', 'with', 'silver', 'bullets.'], ['Would', 'you', 'teach', 'me?'], ['Tom', 'has', 'a', 'dimple', 'on', 'his', 'chin.'], ['The', 'guards', "didn't", 'see', 'you.'], ['Beats', 'me.'], ['What', 'were', 'you', 'doing', 'at', 'that', 'time?'], ["I'm", 'used', 'to', 'working', 'all', 'night.'], ['That', 'is', 'where', 'you', 'are', 'wrong.'], ['I', 'want', 'to', 'buy', 'them', 'all.'], ["That's", 'no', 'fun.'], ['You', 'must', 'be', 'in', 'good', 'physical', 'condition.'], ['It', 'should', 'be', 'no', 'problem.'], ["I'm", 'not', 'angry', 'at', 'you,', 'just', 'very', 'disappointed.'], ['How', 'old', 'were', 'you', 'when', 'you', 'got', 'married?'], ['Tom', 'let', 'us', 'go.'], ['I', 'live', 'on', 'the', 'outskirts', 'of', 'Tokyo.'], ['I', 'was', 'taken', 'in', 'by', 'his', 'good', 'looks', 'and', 'gracious', 'manners.'], ['Ladies', 'and', 'gentlemen,', 'please', 'sit', 'down.'], ['In', 'our', 'society,', 'there', 'are', 'both', 'honorable', 'people', 'and', 'swindlers.'], ['Why', 'would', 'I', 'be', 'nervous?'], ['You', 'should', 'carry', 'out', 'your', 'promises.'], ['Can', 'anything', 'else', 'be', 'done?'], ['This', 'storm', 'is', 'not', 'dangerous.', 'You', "don't", 'need', 'to', 'worry.'], ['He', 'did', 'a', 'pretty', 'good', 'job.'], ['Choose', 'the', 'color', 'you', 'like', 'the', 'best.'], ['She', 'finished', 'the', 'job', 'with', 'ease.'], ['He', 'advised', 'us', 'against', 'doing', 'it.'], ["I'm", 'not', 'a', 'drug', 'addict.'], ["Don't", 'they', 'drive', 'you', 'mad?'], ["You've", 'never', 'been', 'happy.'], ['I', 'wish', 'I', 'had', 'a', 'little', 'more', 'time', 'to', 'finish', 'this.'], ["I'd", 'like', 'to', 'see', 'you', 'again.'], ['Honesty', 'is', 'a', 'virtue.'], ['He', 'gave', 'away', 'all', 'his', 'money.'], ['Life', "isn't", 'easy.'], ["Don't", 'talk', 'about', 'me.'], ["We're", 'tired.'], ["That's", 'happening', 'far', 'too', 'often.'], ['Tom', 'paid.'], ['What', 'is', 'love?'], ['It', 'rains', 'a', 'lot', 'in', 'June.'], ['You', 'can', 'reach', 'me', 'at', 'the', 'address', 'written', 'here.'], ["Let's", 'get', 'it', 'over', 'with.'], ['I', "don't", 'recommend', 'eating', 'in', 'that', 'restaurant.', 'The', 'food', 'is', 'awful.'], ['We', 'must', 'get', 'to', 'the', 'bottom', 'of', 'this', 'mystery.'], ['I', 'like', 'stories', 'that', 'have', 'sad', 'endings.'], ['Just', 'put', 'it', 'there.'], ['What', 'do', 'you', 'have', 'in', 'mind?'], ['Is', 'that', 'a', 'bird?'], ['You', 'are', 'my', 'father.'], ['I', 'already', 'answered', 'that', 'question.'], ['What', 'do', 'you', 'want', 'to', 'be?'], ['Did', 'I', 'hurt', 'your', 'feelings?'], ['I', 'confiscated', 'it.'], ['Can', 'I', 'sit', 'on', 'your', 'lap?'], ['I', 'will', 'wait', 'outside.'], ['Will', 'surgery', 'help', 'it?'], ['Did', 'you', 'enjoy', 'your', 'holiday?'], ["We're", 'expecting', 'a', 'good', 'harvest', 'this', 'year.'], ['Why', "didn't", 'you', 'read', 'the', 'magazine?'], ['Try', 'not', 'to', 'make', 'him', 'angry.'], ['Do', 'you', 'have', 'health', 'insurance?'], ["You're", 'really', 'selfish.'], ['On', 'the', 'same', 'day,', 'Apollo', '11', 'succeeded', 'in', 'landing', 'on', 'the', "moon's", 'surface.'], ["I'll", 'give', 'it', 'my', 'best', 'shot.'], ['I', 'call', 'her', 'pretty', 'often.'], ['Tom', 'is', 'a', 'much', 'better', 'liar', 'than', 'you.'], ['He', 'did', 'it', 'out', 'of', 'kindness.'], ["We're", 'not', 'going', 'to', 'make', 'it', 'in', 'time.'], ['I', "couldn't", 'get', 'that', 'lucky.'], ['They', 'fear', 'that', 'he', 'may', 'be', 'dead.'], ['Those', 'two', 'are', 'exactly', 'alike.'], ['I', "don't", 'think', 'I', 'can', 'make', 'it', 'to', 'your', 'party.'], ['You', 'worry', 'about', 'your', 'weight', 'too', 'much.'], ['May', 'I', 'eat', 'that', 'orange?'], ['He', 'admitted', 'that', 'it', 'was', 'true.'], ['Tom', 'crossed', 'the', 'border', 'illegally.'], ['I', 'read', 'the', 'letter', 'again', 'and', 'again.'], ['I', "don't", 'have', 'any', 'money.'], ["You're", 'very', 'intelligent.'], ["Let's", 'talk', 'shop', 'for', 'a', 'while.'], ['Who', 'planted', 'the', 'tree?'], ['What', 'actually', 'happened?'], ['In', 'case', 'the', 'shipment', 'is', 'delayed,', 'we', 'have', 'special', 'delay', 'insurance.'], ['I', 'left', 'on', 'time.'], ['She', "didn't", 'like', 'the', 'horse', 'at', 'first.'], ['What', 'is', 'wrong', 'with', 'her?'], ["You're", 'killing', 'me.'], ['I', 'pumped', 'up', 'the', 'tire.'], ['Do', 'you', 'love', 'my', 'brother', 'more', 'than', 'me?'], ['I', "can't", 'sleep', 'at', 'night.'], ['She', 'struggled', 'to', 'get', 'up.'], ["I've", 'fallen', 'in', 'love', 'with', 'you.'], ['I', 'would', 'rather', 'starve', 'than', 'work', 'under', 'him.'], ['Which', 'do', 'you', 'like', 'better,', 'this', 'or', 'that?'], ["I'm", 'getting', 'off', 'the', 'train', 'at', 'the', 'next', 'station.'], ["Tom's", 'room', 'was', 'very', 'clean.'], ['He', 'told', 'us', 'he', 'had', 'gone', 'through', 'many', 'hardships.'], ['Do', 'you', 'think', 'I', 'should', 'ask', 'Tom', 'for', 'help?'], ['Tom', 'and', 'Mary', 'looked', 'at', 'each', 'other', 'uneasily.'], ['He', 'said', 'he', 'was', 'poor.'], ['He', 'is', 'my', 'brother.'], ['He', 'took', 'a', 'taxi', 'both', 'ways.'], ["We're", 'sure', 'we', 'can', 'do', 'that.'], ['My', 'watch', 'is', 'accurate.'], ['Tom', "didn't", 'have', 'enough', 'experience', 'in', 'dealing', 'with', 'that', 'kind', 'of', 'problem.'], ['I', 'sincerely', 'apologize.'], ["Aren't", 'you', 'contradicting', 'yourself?'], ['They', "don't", 'have', 'a', 'shed.'], ['I', 'was', 'thinking', 'about', 'Boston.'], ['My', 'dog', 'ate', 'it.'], ['A', 'good', 'idea', 'came', 'across', 'my', 'mind.'], ['Maybe', 'you', 'should', 'quit', 'drinking.'], ['You', 'handled', 'that', 'situation', 'quite', 'well.'], ['Any', 'child', 'knows', 'that.'], ["That's", 'our', 'house.'], ['You', "haven't", 'eaten', 'anything', 'yet,', 'have', 'you?'], ['No', 'one', 'agreed', 'with', 'him.'], ['The', 'travelers', 'stayed', 'at', 'a', 'seaside', 'hotel.'], ['I', 'heard', 'about', 'it.'], ['It', 'was', 'sunny', 'yesterday.'], ['I', 'hope', 'I', "didn't", 'make', 'you', 'feel', 'uncomfortable.'], ["You're", 'totally', 'right.'], ['I', 'was', 'there.'], ['Bears', 'are', 'very', 'dangerous.'], ['Have', 'you', 'called', 'the', 'boss', 'already?'], ['My', 'idea', 'is', 'different', 'from', 'yours.'], ['Why', 'are', 'you', 'wearing', 'those?'], ['You', "don't", 'know', 'what', "you're", 'missing.'], ['I', 'was', 'trying', 'to', 'reach', 'you.'], ['Tom', 'gave', 'me', 'this', 'watch.'], ['I', 'did', 'do', 'some', 'checking.'], ['I', 'used', 'to', 'be', 'your', 'age.'], ["I'm", 'getting', 'tired', 'of', 'this.'], ['I', "can't", 'be', 'seen', 'with', 'you.'], ['Is', 'this', 'wine?'], ['I', 'locked', 'myself', 'out.'], ['Tom', 'shut', 'his', 'eyes.'], ['Give', 'me', 'a', 'hug.'], ['My', 'mom', 'taught', 'me', 'how', 'to', 'do', 'it.'], ['It', 'seems', 'that', 'Tom', 'is', 'unable', 'to', 'solve', 'the', 'problem.'], ['You', 'have', 'made', 'a', 'promise.'], ['I', 'finished', 'first.'], ['They', 'should', 'have', 'told', 'us', 'they', 'were', 'moving', 'out.'], ['Your', 'eyebrows', 'look', 'weird.'], ['Why', "wouldn't", 'you', 'let', 'me', 'tell', 'you', 'what', 'happened?'], ['You', 'have', 'my', 'mug.'], ["I'm", 'looking', 'forward', 'to', 'seeing', 'you', 'dance.'], ['Go', 'and', 'wake', 'Mary', 'up.'], ['Sorry', 'for', 'not', 'answering', 'your', 'question.', 'I', "didn't", 'see', 'it.'], ['I', 'received', 'this', 'electric', 'knife', 'as', 'a', 'gift.'], ['I', 'had', 'no', 'idea', "you'd", 'be', 'here.'], ['I', 'want', 'to', 'return', 'your', 'money.'], ['He', 'was', 'absent', 'because', 'of', 'the', 'storm.'], ['I', 'like', 'to', 'play', 'with', 'words.'], ['Is', 'it', 'raining', 'now?'], ['Can', 'I', 'take', 'your', 'order', 'now?'], ['Some', 'people', 'never', 'grow', 'up.'], ['I', 'think', "we're", 'going', 'to', 'need', 'more', 'money.'], ['Watch', 'out', 'for', 'that', 'man.'], ['Where', 'were', 'you', 'stationed?'], ['We', 'love', 'our', 'country.'], ['May', 'I', 'take', 'a', 'picture', 'of', 'you?'], ['He', 'made', 'me', 'sing.'], ['I', 'opened', 'the', 'drawer', 'to', 'get', 'a', 'pencil.'], ["I've", 'been', 'in', 'love', 'with', 'you', 'since', 'kindergarten.'], ['You', "don't", 'know', 'where', 'it', 'is,', 'do', 'you?'], ['Tom', "couldn't", 'find', 'a', 'job.'], ["You're", 'not', 'alone.'], ['They', "don't", 'make', 'them', 'like', 'they', 'used', 'to.'], ['Do', 'I', 'look', 'like', "I'm", 'joking?'], ['Did', 'you', 'just', 'hit', 'Tom?'], ['I', 'met', 'her', 'by', 'chance', 'at', 'a', 'restaurant', 'yesterday.'], ["You're", 'joking,', 'of', 'course.'], ['I', 'think', 'Tom', 'is', 'compassionate.'], ['Why', 'not', 'just', 'call', 'the', 'police?'], ['I', 'need', 'to', 'go.'], ['Food', 'and', 'blankets', 'were', 'given', 'out', 'to', 'the', 'refugees.'], ['She', 'can', 'hardly', 'speak.'], ['Tom', "didn't", 'get', 'paid', 'as', 'much', 'as', 'they', 'told', 'him', "they'd", 'pay', 'him.'], ['I', 'ran', 'into', 'a', 'tree.'], ['To', 'my', 'surprise,', 'the', 'anthropologist', 'was', 'accused', 'of', 'murder.'], ['Tom', 'hates', 'dogs.'], ['One', 'box', 'is', 'still', 'missing.'], ['Are', 'you', 'here', 'with', 'anyone?'], ['She', 'called', 'to', 'tell', 'him', 'that', "she'd", 'be', 'late.'], ['I', "don't", 'have', 'as', 'much', 'money', 'as', 'you', 'think', 'I', 'do.'], ["I'm", 'sorry,', 'I', "couldn't", 'hear', 'you.'], ['I', "don't", 'know', 'why', "you're", 'all', 'so', 'jumpy.'], ['Tom', 'knows', 'almost', 'nothing', 'about', 'Mary.'], ['Tom', 'ignored', 'our', 'advice.'], ["It's", 'just', 'like', 'a', 'nightmare.'], ["Don't", 'use', 'slang', 'if', 'you', 'can', 'help', 'it.'], ['I', 'know', 'Tom', 'is', 'disappointed.'], ["We're", 'both', 'telling', 'the', 'truth.'], ['What', 'were', 'you', 'doing', 'at', 'the', 'hospital?'], ['I', 'am', 'truly', 'sorry.'], ['We', 'hope', 'that', 'you', 'understand', 'the', 'difficult', 'situation', 'with', 'which', 'we', 'are', 'confronted.'], ['He', 'cut', 'the', 'apple', 'in', 'half.'], ['You', 'must', 'be', 'very', 'proud', 'of', 'your', 'son.'], ['He', 'came', 'after', 'everybody', 'had', 'come.'], ["I'm", 'looking', 'forward', 'to', 'Christmas.'], ['You', "aren't", 'as', 'short', 'as', 'I', 'am.'], ['How', 'much', 'is', 'your', 'hourly', 'pay?'], ['Are', 'you', 'in', 'a', 'hurry?'], ['The', 'house', 'with', 'the', 'green', 'roof', 'is', 'mine.'], ["It's", 'getting', 'dark', 'outside.'], ['This', 'is', 'exactly', 'what', 'I', "didn't", 'want', 'to', 'happen.'], ['They', 'found', 'us.'], ['I', "can't", 'tell', 'you', 'how', 'happy', 'I', 'am', 'that', "you've", 'come', 'to', 'visit', 'us.'], ['Do', 'you', 'have', 'any', 'light', 'beer?'], ['I', 'thought', "you'd", 'be', 'dead', 'by', 'now.'], ['Why', 'should', 'I', 'learn', 'French?'], ['Tom', 'said', 'he', 'thought', 'Mary', 'was', 'afraid.'], ['I', 'know', 'this', 'is', 'hard', 'for', 'you', 'to', 'understand.'], ['The', 'door', 'was', 'already', 'open.'], ['You', "shouldn't", 'have', 'paid', 'the', 'bill.'], ['I', "don't", 'think', 'Tom', 'is', 'listening.'], ["She's", 'a', 'tough', 'woman.'], ['Tom', "won't", 'admit', 'it,', 'but', "he's", 'secretly', 'in', 'love', 'with', 'Mary.'], ["I'll", 'fix', 'it', 'now.'], ["We're", 'the', 'last.'], ['Everyone', 'in', 'my', 'family', 'is', 'happy.'], ['I', 'know', 'where', 'you', 'hide', 'your', 'diary.'], ['This', 'book', 'is', 'available', 'at', 'one', 'shop', 'only.'], ['The', 'ice', 'will', 'crack', 'beneath', 'our', 'weight.'], ['I', 'like', 'watching', 'Tom', 'dance.'], ['I', 'know', 'where', 'he', 'lives.'], ['I', 'think', 'we', 'can', 'do', 'a', 'lot', 'better.'], ['It', 'became', 'useless.'], ['Tom', 'has', 'pleaded', 'not', 'guilty.'], ['You', 'have', 'no', 'messages.'], ['He', 'laid', 'down', 'his', 'pen', 'and', 'leaned', 'back', 'in', 'his', 'chair.'], ['I', 'could', 'eat', 'a', 'horse.'], ['I', "can't", 'believe', 'your', 'mom', 'let', 'you', 'go.'], ['I', 'knew', 'someone', 'would', 'come', 'rescue', 'us', 'eventually.'], ["You're", 'funny.'], ['He', 'must', 'be', 'a', 'good', 'boy.'], ['I', 'like', 'the', 'original', 'better', 'than', 'the', 'remix.'], ["I'm", 'glad', 'I', 'invited', 'you.'], ['This', 'car', 'looks', 'pretty', 'cool.'], ['Once', 'he', 'had', 'written', 'the', 'letter,', 'he', 'sent', 'it.'], ['I', 'have', 'some', 'doubts', 'about', 'his', 'coming', 'in', 'this', 'weather.'], ["I've", 'won', 'first', 'prize!'], ['Take', 'care', 'not', 'to', 'catch', 'a', 'cold.'], ['I', 'heard', 'Tom', 'scream.'], ['We', 'closed', 'the', 'restaurant.'], ['The', 'feeling', 'was', 'mutual.'], ["He's", 'sound', 'asleep.'], ['I', 'just', 'need', 'a', 'hug.'], ["I'm", 'sure', 'Tom', 'would', 'be', 'happy', 'to', 'help.'], ['I', "must've", 'been', 'dreaming.'], ['How', 'would', 'you', 'describe', 'yourself?'], ['Do', 'you', 'want', 'to', 'eat', 'something?'], ['That', 'restaurant', 'is', 'too', 'expensive', 'for', 'me.'], ['There', "wasn't", 'anybody', 'in', 'that', 'room.'], ["It's", 'yours', 'if', 'you', 'want', 'it.'], ['I', "didn't", 'expect', 'you', 'to', 'turn', 'up', 'here.'], ['We', 'need', 'proof.'], ['He', 'died', 'of', 'cancer', 'last', 'year.'], ['Can', 'we', 'move', 'on', 'to', 'the', 'next', 'item?'], ['She', 'graduated', 'with', 'honors.'], ['This', 'is', 'outlandish.'], ['Day', 'in', 'and', 'day', 'out,', 'he', 'does', 'nothing', 'but', 'tend', 'his', 'sheep.'], ['He', 'must', 'be', 'aware', 'of', 'the', 'danger.'], ['I', "can't", 'really', 'do', 'that.'], ['I', 'already', 'bought', 'my', 'ticket', 'to', 'Boston.'], ['Neither', 'of', 'my', 'brothers', 'will', 'be', 'there.'], ['Tom', 'often', 'comes', 'to', 'see', 'me', 'on', 'weekends.'], ['The', 'house', 'has', 'burnt', 'down.'], ['I', 'lost', 'my', 'passport.', "I'll", 'have', 'to', 'get', 'a', 'new', 'one.'], ['I', 'really', 'want', 'to', 'see', 'you.'], ["I'm", 'always', 'losing', 'my', 'keys.'], ['Can', 'you', 'pick', 'it', 'up?'], ['I', "don't", 'like', 'bad', 'boys.'], ['Does', 'Tom', 'talk', 'to', 'you', 'in', 'French?'], ['I', 'was', 'playing', 'a', 'game', 'when', 'I', 'felt', 'an', 'earthquake.'], ["You're", 'so', 'wrong.'], ["You're", 'part', 'of', 'the', 'problem.'], ['If', 'you', 'had', 'a', 'million', 'dollars,', 'what', 'would', 'you', 'do?'], ['Mother', 'prepared', 'lunch', 'for', 'me.'], ['I', 'wish', 'I', 'could', 'believe', 'you.'], ['Tom', 'can', 'bake', 'really', 'good', 'apple', 'pies.'], ['Where', 'are', 'they', 'taking', 'you?'], ['When', 'will', 'he', 'be', 'freed?'], ['What', 'color', 'are', 'your', "wife's", 'eyes?'], ['Tom', 'is', 'selling', 'his', 'house.'], ['I', 'prefer', 'walking.'], ['Can', 'I', 'have', 'the', 'paper', 'when', "you're", 'finished', 'with', 'it?'], ['None', 'of', 'my', 'friends', 'speak', 'French.'], ['The', 'girl', 'was', 'busy', 'making', 'tea', 'for', 'her', 'friend.'], ["She's", 'a', 'professor.'], ['If', 'there', 'was', 'just', '1,000', 'yen', 'more,', 'he', 'would', 'have', 'taken', '10,000', 'yen', 'in', 'total.'], ['Anybody', 'could', 'do', 'this.'], ['Tom', 'rode', 'the', 'roller', 'coaster.'], ['How', 'are', 'things', 'going?'], ['I', 'saw', 'the', 'cook.'], ['I', 'want', 'something', 'to', 'read.'], ['Did', 'you', 'turn', 'off', 'the', 'heater?'], ["I'm", 'glad', 'you', 'decided', 'to', 'come.'], ['I', 'had', 'hardly', 'gotten', 'into', 'bed', 'when', 'the', 'telephone', 'began', 'to', 'ring.'], ['What', 'language', 'do', 'you', 'usually', 'use', 'when', 'talking', 'with', 'Tom?'], ['Why', 'are', 'you', 'really', 'doing', 'this?'], ["He's", 'at', 'church', 'right', 'now.'], ['We', 'had', 'a', 'heated', 'discussion.'], ['We', 'did', 'it', 'ourselves.'], ["They're", 'suffering', 'from', 'malaria.'], ["You're", 'the', 'only', 'friend', 'I', 'have.'], ['Who', 'is', 'the', 'tall', 'guy', 'with', 'long', 'dark', 'hair', 'playing', 'the', 'guitar?'], ['I', 'wonder', 'if', 'he', 'is', 'married.'], ['Tom', 'works', 'a', 'lot.'], ['It', 'looked', 'funny.'], ['Finishing', 'the', 'job', 'by', 'Tuesday', 'will', 'be', 'a', 'piece', 'of', 'cake.'], ["I'll", 'help', 'you', 'do', 'that.'], ['Tom', 'made', 'himself', 'a', 'drink.'], ['I', "didn't", 'like', 'beer', 'at', 'that', 'time.'], ["Don't", 'try', 'to', 'make', 'me', 'angry.'], ['Cross', 'the', 'street.'], ["It's", 'a', 'matter', 'of', 'priorities.'], ['I', 'think', "it's", 'much', 'better', 'now.'], ['He', 'left', 'the', 'Mexican', 'capital', 'to', 'return', 'to', 'Texas.'], ["I've", 'just', 'gotten', 'home', 'and', 'had', 'dinner.'], ['Tom', 'will', 'be', 'cremated', 'tomorrow.'], ['I', 'am', 'from', 'England.'], ["What's", 'your', "niece's", 'name?'], ['The', 'cat', 'seems', 'extremely', 'happy.'], ['Please', 'close', 'the', 'door', 'behind', 'you.'], ["You're", 'completely', 'delusional.'], ['I', 'really', 'need', 'to', 'take', 'a', 'shower.'], ['What', 'is', 'it', 'that', 'makes', 'you', 'think', 'that', 'way?'], ['All', 'men', 'are', 'equal', 'under', 'the', 'law.'], ["I'm", 'in', 'no', 'hurry.'], ['We', 'were', 'granted', 'the', 'privilege', 'of', 'fishing', 'in', 'this', 'bay.'], ['Tom', 'often', 'helps', 'Mary.'], ['What', 'tripped', 'the', 'alarm?'], ['You', "can't", 'help', 'me.'], ['The', 'problem', "isn't", 'that.'], ['I', 'pretended', 'to', 'work.'], ['The', 'street', 'our', 'hotel', 'is', 'on', 'is', 'the', 'next', 'one.'], ['You', "should've", 'quit', 'earlier.'], ['How', 'did', 'you', 'get', 'hurt?'], ["It's", 'across', 'the', 'street.'], ['Are', 'you', 'joking?'], ['Do', 'you', 'like', 'cheeseburgers?'], ['Be', 'respectful.'], ['The', 'girl', 'is', 'reading', 'with', 'her', 'grandfather.'], ['He', 'pretends', 'to', 'be', 'enthusiastic', 'when', 'his', 'boss', 'is', 'around.'], ['Do', 'you', 'have', 'something', 'to', 'say', 'to', 'me?'], ['Do', 'you', 'have', 'one', 'that', 'is', 'a', 'little', 'smaller?'], ['I', 'know', 'that', 'Tom', 'hates', 'cats.'], ['I', 'will', 'not', 'let', 'you', 'do', 'it.'], ['If', 'I', 'had', 'been', 'rich,', 'I', 'would', 'have', 'given', 'you', 'some', 'money.'], ["Why's", 'the', 'engine', 'still', 'running?'], ['Are', 'you', 'still', 'buying', 'lottery', 'tickets?'], ['I', 'thought', "you'd", 'be', 'older.'], ['What', 'are', 'you', 'doing', 'now?'], ['My', 'father', 'has', 'gone', 'to', 'America.'], ['Who', 'washed', 'it?'], ['Whatever', 'can', 'go', 'wrong', 'will', 'go', 'wrong.'], ['Tom', 'works', 'at', 'home.'], ['I', "don't", 'tell', 'people', 'what', 'to', 'eat.'], ['I', 'watched', 'it', 'on', 'YouTube.'], ["It's", 'been', 'a', 'while,', "hasn't", 'it?'], ['How', 'was', 'school', 'today?'], ['You', "shouldn't", 'have', 'gone', 'fishing', 'today.'], ['I', 'will', 'choose', 'one', 'of', 'them.'], ['Tom', "should've", 'protected', 'Mary.'], ['Your', 'behavior', 'was', 'disgraceful.'], ['I', 'just', "don't", 'want', 'to', 'get', 'your', 'hopes', 'up.'], ['He', 'has', 'already', 'finished', 'his', 'work.'], ['Why', "couldn't", 'you', 'come', 'on', 'Saturday?'], ['Keep', 'it', 'in', 'mind.'], ['I', "don't", 'ever', 'want', 'to', 'hurt', 'you.'], ['I', 'think', 'about', 'it', 'every', 'day.'], ['The', 'call', 'is', 'free', 'of', 'charge.'], ['Do', 'you', 'think', 'I', 'could', 'speak', 'with', 'Tom?'], ['I', 'want', 'you', 'to', 'tell', 'me', 'what', 'to', 'do.'], ['Tom', 'handed', 'the', 'map', 'to', 'Mary.'], ["Everyone's", 'out.'], ['How', 'long', 'were', 'you', 'at', 'the', 'party?'], ['I', "didn't", 'say', 'anything.'], ['Why', 'would', 'I', 'know', 'that?'], ['Give', 'me', 'back', 'my', 'hat.'], ['What', 'a', 'strange', 'guy!'], ["He'll", 'never', 'show', 'it,', 'but', 'I', 'think', 'that', 'deep', 'down,', "he's", 'seriously', 'worried.'], ['You', "don't", 'even', 'know', 'how.'], ['I', "can't", 'tell', 'you', 'what', 'we', 'did', 'last', 'night.'], ['Have', 'you', 'read', 'this', 'yet?'], ['I', 'think', 'Tom', 'is', 'nervous.'], ['How', 'should', 'I', 'know?'], ['Japan', 'has', 'caught', 'up', 'with', 'America', 'in', 'some', 'fields.'], ['Boys', 'think', 'about', 'girls', 'a', 'lot.'], ["Don't", 'worry.', "We'll", 'get', 'the', 'money.'], ['His', 'watch', 'is', 'ten', 'minutes', 'slow.'], ['That', 'was', 'uncalled', 'for.'], ['I', 'hope', 'that', "I'll", 'see', 'her.'], ['I', 'live', 'and', 'work', 'in', 'France.'], ['Tom', 'is', 'now', 'very', 'angry', 'with', 'me.'], ['You', 'could', 'stop', 'this.'], ['Put', 'your', 'pants', 'on.'], ["Can't", 'you', 'speak', 'French?'], ['You', "don't", 'need', 'to', 'worry', 'about', 'that', 'kind', 'of', 'thing', 'anymore.'], ['I', 'get', 'along', 'well', 'with', 'my', 'neighbors.'], ['How', 'come', 'the', 'guys', 'I', 'want', 'never', 'want', 'me?'], ["I'm", 'sorry,', 'but', "I'm", 'busy', 'right', 'now.'], ['I', "don't", 'feel', 'like', 'playing', 'either.'], ['There', 'is', 'an', 'urgent', 'need', 'for', 'a', 'new', 'system.'], ['That', 'is', 'an', 'old', 'castle.'], ["Tom's", 'family', "isn't", 'very', 'big.'], ['They', 'collected', 'shells', 'on', 'the', 'beach.'], ['I', 'understand', 'it.'], ['I', 'missed', 'the', 'last', 'bus', 'and', 'had', 'to', 'walk', 'home', 'in', 'the', 'rain.'], ['I', 'just', 'needed', 'some', 'water.'], ['I', 'do', 'not', 'read', 'books.'], ['A', 'rose', 'smells', 'sweet.'], ['Am', 'I', 'under', 'arrest?'], ["It's", 'not', 'that', 'I', "don't", 'want', 'to', 'go,', 'I', "can't", 'afford', 'to.'], ['Contact', 'her', 'if', 'you', 'have', 'any', 'questions.'], ['Tom', 'seems', 'very', 'opinionated.'], ['Business', 'failures', 'are', 'down', '10%', 'this', 'year.'], ['Tom', 'could', 'swim', 'when', 'he', 'was', 'three', 'years', 'old.'], ["I'll", 'be', 'right', 'back.'], ['They', 'were', 'even', 'more', 'interested', 'in', 'his', 'beautiful', 'wife.'], ['I', 'eat', 'because', "I'm", 'hungry.'], ['I', "can't", 'believe', "you're", 'here.'], ['Are', 'these', 'your', 'children?'], ['Theory', 'and', 'practice', 'do', 'not', 'necessarily', 'go', 'together.'], ['I', 'want', 'to', 'look', 'like', 'her.'], ['I', 'already', 'know', 'what', 'it', 'is.'], ['I', 'saw', 'him', 'sawing', 'a', 'tree.'], ['I', 'need', 'some', 'sugar.', 'Do', 'you', 'have', 'any?'], ['Do', 'you', 'have', 'a', 'twin', 'brother?'], ['There', 'is', 'no', 'way', 'of', 'knowing', 'where', "he's", 'gone.'], ['I', 'must', 'have', 'my', 'watch', 'repaired.'], ['Our', 'train', 'went', 'through', 'a', 'long', 'tunnel.'], ["Aren't", 'you', 'happy?'], ['I', 'worked', 'really', 'hard', 'on', 'this.'], ['Tom', "won't", 'eat', 'it.'], ['Take', 'a', 'few', 'days', 'off.'], ['We', 'have', 'a', 'long', 'way', 'left', 'to', 'go.'], ['I', 'made', 'a', 'list', 'of', 'people', 'I', 'wanted', 'to', 'invite', 'to', 'my', 'party.'], ['That', "won't", 'help', 'you.'], ["You're", 'funny.'], ['He', 'went', 'down', 'the', 'hill.'], ['I', 'like', 'them', 'all.'], ["That's", 'why', 'I', 'left.'], ['Trust', 'me', 'on', 'that.'], ["Don't", 'trust', 'anyone.'], ['He', 'died', 'of', 'cancer.'], ['Several', 'roads', 'are', 'flooded.'], ['My', 'mother', 'cut', 'my', 'hair', 'too', 'short.'], ['Somebody', 'told', 'me', 'that', "today's", 'test', 'was', 'identical', 'to', 'the', 'one', 'we', 'had', 'last', 'year.'], ['Have', 'any', 'of', 'your', 'friends', 'ever', 'been', 'arrested?'], ['Get', 'my', 'rifle.'], ['I', 'wonder', 'if', 'I', 'can', 'do', 'that.'], ['It', "won't", 'be', 'hard.'], ['I', "don't", 'think', 'we', 'need', 'that.'], ['Who', 'is', 'your', 'favorite', 'author?'], ['Cambodia', 'appealed', 'to', 'the', 'United', 'Nations', 'for', 'help.'], ['Tom', 'had', 'to', 'clean', 'his', 'room.'], ['Do', 'you', 'mind', 'if', 'I', 'sit', 'here?'], ["You've", 'got', 'a', 'lot', 'of', 'guts.'], ['Where', 'can', 'I', 'buy', 'some', 'toothpaste?'], ['We', 'meet', 'here', 'once', 'a', 'month.'], ["I'm", 'looking', 'forward', 'to', 'the', 'summer', 'vacation.'], ['I', "didn't", 'notice', 'it.'], ['I', "don't", 'deserve', 'your', 'friendship.'], ['Both', 'of', 'you', 'are', 'wrong.'], ['It', 'came', 'to', 'nothing.'], ['Tom', 'has', 'finished', 'reading', 'the', 'book', 'that', 'Mary', 'gave', 'him', 'yesterday.'], ['That', 'sounds', 'depressing.'], ['You', "don't", 'have', 'to', 'say', 'anything', 'if', 'you', "don't", 'feel', 'like', 'it.'], ['He', 'wants', 'to', 'be', 'more', 'independent.'], ['Whatever', 'you', 'do,', "don't", 'push', 'this', 'button.'], ['She', 'sleeps', 'with', 'two', 'pillows.'], ['I', 'just', 'want', 'to', 'be', 'able', 'to', 'support', 'my', 'family', 'and', 'myself.'], ['We', 'are', 'sorry', 'we', "can't", 'help', 'you.'], ["It's", 'awfully', 'cold', 'this', 'evening.'], ["I'm", 'really', 'glad', 'I', 'ran', 'into', 'you.'], ['I', 'am', 'shorter', 'than', 'you.'], ['He', 'should', 'have', 'worked', 'harder.'], ['He', 'died', 'a', 'few', 'days', 'later.'], ['I', 'guess', "you're", 'going', 'to', 'do', 'that', 'no', 'matter', 'what', 'we', 'say.'], ['She', 'did', 'not', 'walk', 'to', 'the', 'gym.'], ['Tom', 'is', 'the', 'only', 'one', 'in', 'our', 'family', 'who', "doesn't", 'like', 'singing.'], ['I', 'think', 'we', 'need', 'a', 'new', 'strategy.'], ['I', 'beg', 'you', 'to', 'stay.'], ['Tom', 'seems', 'a', 'little', 'disoriented.'], ['Sit', 'down', 'and', 'rest', 'for', 'a', 'while.'], ['It', 'took', 'a', 'long', 'time', 'for', 'her', 'to', 'write', 'the', 'report.'], ['Which', 'of', 'you', 'came', 'here', 'first?'], ['The', 'fog', 'was', 'so', 'dense,', 'we', 'could', 'hardly', 'see', 'anything.'], ['Taking', 'advantage', 'of', 'the', 'holidays,', 'I', 'returned', 'home', 'to', 'Nagoya.'], ['Have', 'you', 'ever', 'been', 'betrayed', 'by', 'a', 'good', 'friend?'], ['Everyone', 'laughed', 'at', 'him.'], ['She', 'painted', 'the', 'wall', 'red.'], ['Are', 'you', 'ready', 'to', 'begin?'], ['May', 'I', 'be', 'of', 'further', 'service?'], ['You', 'can', 'go', 'from', 'Washington', 'to', 'New', 'York', 'by', 'train.'], ['I', 'suppose', "that's", 'all', 'right.'], ['I', 'apologize', 'if', 'I', 'offended', 'you.'], ['Does', 'it', 'bother', 'you', 'if', 'I', 'smoke?'], ['Can', 'you', 'forgive', 'me?'], ["There's", 'a', 'lot', 'of', 'chit-chat.'], ["We're", 'studying', 'now.'], ["It's", 'only', 'getting', 'bigger.'], ['Please', 'help', 'yourself', 'to', 'some', 'fruit.'], ["He's", 'brighter', 'than', 'they', 'are.'], ['Publication', 'of', 'the', 'article', 'was', 'timed', 'to', 'coincide', 'with', 'the', "professor's", 'birthday.'], ['What', 'do', 'you', 'expect', 'to', 'happen?'], ['See', 'you', 'tomorrow', 'in', 'the', 'library.'], ["I'm", 'only', 'going', 'to', 'say', 'this', 'once.'], ['She', 'nursed', 'him', 'back', 'to', 'health.'], ['"Where', 'have', 'you', 'been?"', '"I', 'have', 'been', 'to', 'the', 'station', 'to', 'see', 'a', 'friend', 'off."'], ['The', 'fish', 'smells', 'bad.'], ['I', 'want', 'to', 'give', 'you', 'some', 'money', 'to', 'help', 'you', 'through', 'these', 'hard', 'times.'], ['Which', 'is', 'your', 'suitcase?'], ['Stop', 'deluding', 'yourself.'], ['Who', 'are', 'those', 'women?'], ['He', 'lost', 'all', 'of', 'his', 'money.'], ['We', 'have', 'a', 'dishwasher.'], ["Don't", 'look', 'down', 'on', 'others.'], ['My', 'dream', 'is', 'to', 'travel', 'in', 'a', 'space', 'shuttle.'], ['Tom', 'and', 'his', 'friends', 'took', 'a', 'selfie.'], ['I', 'do', 'it', 'because', 'I', 'enjoy', 'it.'], ['The', 'death', 'penalty', 'should', 'be', 'abolished.'], ['She', 'backed', 'out', 'at', 'the', 'last', 'moment.'], ['Show', 'me', 'something', 'new.'], ['I', 'sat', 'down', 'next', 'to', 'him.'], ["Don't", 'ask', 'what', 'they', 'think.', 'Ask', 'what', 'they', 'do.'], ['It', 'took', 'a', 'whole', 'month', 'to', 'break', 'in', 'those', 'new', 'shoes.'], ['That', 'dress', 'looks', 'really', 'nice', 'on', 'you.'], ['He', 'paid', 'his', 'loan', 'back', 'to', 'the', 'bank.'], ['I', "can't", 'lift', 'boxes', 'over', 'thirty', 'kilograms.'], ['He', 'sings', 'very', 'well.'], ['One', 'of', 'my', 'favorite', 'authors', 'is', 'Herman', 'Melville.'], ['Where', 'is', 'the', 'exit?'], ['Tom', 'plays', 'the', 'guitar', 'better', 'than', 'anyone', 'else', 'I', 'know.'], ['Did', 'you', 'read', 'the', 'instructions?'], ['I', "haven't", 'washed', 'my', 'hair.'], ['Are', 'you', 'still', 'living', 'with', 'your', 'parents?'], ['I', 'would', 'like', 'to', 'go', 'to', 'Austria', 'to', 'study', 'music.'], ['Never', 'tell', 'me', 'a', 'lie', 'again.'], ['Do', 'you', 'have', 'any', 'plans', 'for', 'today?'], ["I'm", 'going', 'to', 'ask', 'you', 'to', 'leave', 'now.'], ['I', 'want', 'you', 'to', 'get', 'started', 'right', 'away.'], ['To', 'try', 'to', 'bring', 'it', 'back', 'would', 'be', 'foolish.'], ['It', 'goes', 'without', 'saying', 'that', 'health', 'is', 'most', 'important.'], ['A', 'fire', 'broke', 'out', 'in', 'the', 'neighborhood', 'yesterday.'], ['Be', 'prepared.'], ['The', 'elevator', 'is', 'out', 'of', 'order', 'today.'], ['He', 'comes', 'and', 'sees', 'me', 'once', 'in', 'a', 'while.'], ["Don't", 'worry.', "We'll", 'find', 'it.'], ['You', 'must', 'learn', 'from', 'your', 'own', 'mistakes.'], ["I'm", 'sure', "they're", 'on', 'their', 'way.'], ['I', 'no', 'longer', 'believe', 'that.'], ['One', 'king', 'after', 'another', 'succeeded', 'to', 'the', 'throne', 'during', 'those', 'few', 'years.'], ['I', 'plead', 'ignorance.'], ['I', "haven't", 'eaten', 'yet.'], ['Your', 'privacy', 'is', 'important', 'to', 'us.'], ['We', 'were', 'tired', 'out', 'after', 'our', 'long', 'walk.'], ['Now', 'that', 'you', 'have', 'finished', 'your', 'job,', 'you', 'are', 'free', 'to', 'go', 'home.'], ['Nara', 'is', 'an', 'old', 'city', 'worth', 'visiting', 'at', 'least', 'once', 'in', 'your', 'life.'], ['Be', 'polite', 'to', 'your', 'parents.'], ['We', 'all', 'wish', 'for', 'happiness.'], ["It's", 'so', 'simple', 'that', 'even', 'a', 'child', 'can', 'do', 'it.'], ['Why', "don't", 'you', 'take', 'a', 'closer', 'look?'], ['Tom', 'asked', 'Mary', 'whether', 'she', 'liked', 'him.'], ['Tom', 'died', 'on', 'Monday', 'in', 'Boston.'], ["They're", 'eating', 'apples.'], ['I', 'thought', 'I', 'might', 'be', 'able', 'to', 'help.'], ['The', "money's", 'on', 'the', 'table.'], ['Have', 'you', 'ever', 'driven', 'a', 'van?'], ['I', 'really', 'enjoy', 'spending', 'time', 'with', 'you.'], ['I', 'already', 'weigh', 'enough.'], ['I', 'think', 'you', "shouldn't", 'be', 'doing', 'that.'], ['I', 'love', 'kids.'], ["I've", 'come', 'to', 'apologize.'], ['You', 'love', 'that', 'house,', "don't", 'you?'], ['He', 'warned', 'us', 'not', 'to', 'enter', 'the', 'room.'], ['Your', 'parents', 'were', 'right.'], ['That', 'might', 'not', 'be', 'easy.'], ['He', 'made', 'an', 'effort', 'to', 'get', 'to', 'the', 'station', 'early.'], ['I', "don't", 'think', "I've", 'heard', 'that', 'word', 'in', 'a', 'long', 'time.'], ['If', 'you', 'alter', 'the', 'plan,', 'you', 'must', 'inform', 'the', 'team', 'members', 'of', 'the', 'changes.'], ['Banks', 'open', 'at', 'nine', "o'clock."], ['I', 'owe', 'you', 'a', 'beer.'], ['The', 'three', 'were', 'arrested.'], ['We', "can't", 'really', 'keep', 'all', 'this', 'stuff,', 'can', 'we?'], ['There', 'are', 'too', 'many', 'things', 'to', 'do!'], ['He', 'works', 'from', 'Monday', 'to', 'Friday.'], ["I'll", 'never', 'be', 'able', 'to', 'forget', 'Tom.'], ['Can', 'you', 'read', 'that?'], ['They', 'lost.'], ['I', "didn't", 'say', 'I', 'was', 'completely', 'satisfied.'], ['That', 'was', 'a', 'cheap', 'shot.'], ['Everything', 'went', 'as', 'planned.'], ['Do', 'you', 'want', 'me', 'to', 'tell', 'you', 'why?'], ['Tom', "isn't", 'joking.'], ['This', 'is', 'not', 'funny.'], ['She', 'used', 'margarine', 'instead', 'of', 'butter.'], ['Watch', 'out', 'for', 'thieves', 'around', 'here.'], ['She', "didn't", 'even', 'try', 'to', 'help.'], ['The', 'Wright', 'brothers', 'succeeded', 'in', 'flying', 'an', 'airplane', 'driven', 'by', 'an', 'engine.'], ['I', 'could', 'not', 'help', 'laughing', 'at', 'his', 'haircut.'], ['Who', 'said', 'you', 'could', 'speak?'], ['Take', 'a', 'walk', 'every', 'day.'], ['Tom', "won't", 'be', 'spending', 'Christmas', 'with', 'his', 'family.'], ['I', 'think', "I'm", 'a', 'pretty', 'good', 'singer.'], ['How', 'did', 'you', 'get', 'so', 'good', 'at', 'French?'], ['I', 'sell', 'flowers.'], ['Be', 'more', 'flexible.'], ['I', 'know', 'you', 'want', 'to', 'make', 'me', 'happy.'], ["You're", 'very', 'sophisticated.'], ['The', 'road', 'turns', 'left', 'there.'], ['If', 'it', 'rains,', 'the', 'game', 'will', 'be', 'called', 'off.'], ['Please', 'put', 'yourself', 'in', 'my', 'place.'], ['You', 'may', 'stay', 'here', 'with', 'me.'], ['His', 'work', 'is', 'not', 'up', 'to', 'standard.'], ['Could', 'you', 'take', 'me', 'to', 'a', 'hospital,', 'please?'], ['Can', 'the', 'rumor', 'be', 'true?'], ["Isn't", 'that', 'just', 'a', 'brush', 'fire?'], ['I', 'came', 'to', 'wish', 'you', 'good', 'luck.'], ['It', 'is', 'hard', 'for', 'me', 'to', 'believe', 'this.'], ['You', 'should', 'play', 'with', 'your', 'cat', 'more', 'often.'], ['I', 'was', 'so', 'drunk', 'last', 'night.'], ['You', 'should', 'always', 'tell', 'the', 'truth.'], ['He', "doesn't", 'look', 'his', 'age.'], ['Where', 'could', 'I', 'find', 'someone', 'to', 'help', 'me?'], ['Get', 'me', 'something', 'to', 'eat.'], ['I', 'just', "don't", 'remember.'], ["It's", 'none', 'of', 'my', 'business!'], ['I', 'met', 'him', 'by', 'chance.'], ['The', 'weather', 'stayed', 'bad.'], ['Where', 'are', 'you?'], ['The', 'problem', 'resolved', 'itself.'], ["That's", 'not', 'good', 'enough', 'for', 'Tom.'], ['The', 'girls', 'giggled.'], ['Do', 'you', 'know', 'who', 'conquered', 'Mt.', 'Everest', 'first?'], ['You', "can't", 'really', 'blame', 'Tom', 'for', 'that.'], ['Italian', "isn't", 'difficult.'], ['May', 'I', 'have', 'a', 'glass', 'of', 'beer,', 'please?'], ['Do', 'you', 'look', 'up', 'to', 'your', 'parents?'], ['Give', 'me', 'an', 'alternative.'], ['This', 'is', 'very', 'surprising.'], ['I', "don't", 'feel', 'like', 'eating', 'sushi.'], ['Why', 'do', 'we', 'have', 'to', 'decide', 'this', 'today?'], ['Winter', 'is', 'coming', 'soon.'], ['You', 'have', 'dirty', 'feet.'], ["Isn't", 'that', 'what', 'you', 'said?'], ['Do', 'you', 'want', 'me', 'to', 'ask', 'Tom?'], ['This', 'is', 'exactly', 'what', 'I', 'want.'], ['Please', 'take', 'off', 'your', 'hat.'], ['I', 'have', 'bad', 'eyesight.'], ['He', 'works', 'as', 'a', 'gym', 'teacher.'], ['I', 'got', 'my', 'bicycle', 'repaired.'], ['I', 'suppose', "that's", 'impossible.'], ['The', "frogs'", 'croaking', 'helped', 'me', 'fall', 'asleep.'], ["Don't", 'look', 'so', 'suspicious.'], ['I', 'have', 'a', 'little', 'something', 'for', 'you.'], ['No', 'one', 'is', 'irreplaceable.'], ['You', 'look', 'relaxed.'], ['Thank', 'you', 'for', 'all', 'of', 'your', 'work.'], ["It's", 'a', 'fairly', 'complicated', 'problem.'], ['Tom', 'refused', 'to', 'pay', 'his', 'bills.'], ['I', 'know', 'Tom', 'was', 'hesitant', 'to', 'do', 'that.'], ['She', 'looked', 'at', 'the', 'picture', 'to', 'refresh', 'her', 'memory.'], ['Why', "don't", 'you', 'all', 'just', 'shut', 'up?'], ['I', 'am', 'at', 'a', 'loss', 'for', 'words.'], ['I', 'have', 'a', 'different', 'opinion', 'than', 'yours.'], ['Because', 'her', 'parents', 'got', 'divorced,', 'the', 'girl', 'had', 'little', 'contact', 'with', 'her', 'father.'], ['Sometimes', 'you', 'gotta', 'do', 'what', 'you', 'gotta', 'do.'], ['When', 'she', 'returned', 'to', 'her', 'room,', 'the', 'diamond', 'ring', 'was', 'gone.'], ["I'm", 'not', 'sure', 'I', 'agree.'], ['I', 'think', 'you', 'know', 'that.'], ['Check', 'these', 'out.'], ['What', 'did', 'I', 'trip', 'over?'], ['He', 'taught', 'me', 'how', 'to', 'swim.'], ['The', 'station', 'is', 'dead', 'ahead.'], ['Tom', 'is', 'holding', 'a', 'mug', 'of', 'beer.'], ['He', 'said', 'it', 'as', 'a', 'joke.'], ['He', 'still', 'loves', 'her.'], ['Have', 'you', 'told', 'your', 'mom?'], ['I', 'helped', 'out.'], ['He', 'needed', 'capital', 'to', 'start', 'a', 'new', 'business.'], ["What's", 'going', 'to', 'happen', 'to', 'your', 'prisoners?'], ['All', 'during', 'my', 'trip', 'I', 'could', 'not', 'keep', 'you', 'out', 'of', 'my', 'mind.'], ['I', 'think', 'the', 'same', 'as', 'they', 'do.'], ['We', 'have', 'no', 'choice', 'but', 'to', 'give', 'up', 'the', 'whole', 'plan.'], ['Your', 'pitching', 'is', 'far', 'superior', 'to', 'mine.'], ["You're", 'lying,', "aren't", 'you?'], ['Do', 'you', 'really', 'need', 'to', 'ask', 'the', 'question', 'to', 'know', 'the', 'answer?'], ["I'm", 'by', 'no', 'means', 'angry', 'with', 'you.'], ['Do', 'you', 'think', 'you', 'can', 'help', 'Tom?'], ['Is', 'it', 'true', 'that', 'Boston', 'is', 'a', 'popular', 'destination', 'for', 'tourists?'], ['What', 'you', 'do', 'is', 'more', 'important', 'than', 'what', 'you', 'say.'], ['My', "neighbor's", 'son', 'made', 'fun', 'of', 'my', 'daughter', 'today', 'at', 'school.'], ['They', 'were', 'angry', 'about', 'several', 'things.'], ["I'll", 'be', 'with', 'you', 'in', 'just', 'a', 'second.'], ['You', 'gave', 'me', 'your', 'word.'], ['Tom', 'closed', 'the', 'door', 'of', 'his', 'bedroom.'], ['You', "didn't", 'let', 'me', 'answer.'], ['Do', 'you', 'know', 'what', 'time', 'they', 'came?'], ['She', 'has', 'no', 'self-esteem.'], ['Sitting', 'all', 'day', "isn't", 'good', 'for', 'you.'], ["I'll", 'be', 'grateful', 'to', 'you', 'if', 'you', 'can', 'do', 'that', 'for', 'me.'], ['Congratulations!'], ['Have', 'you', 'ever', 'been', 'kissed', 'before?'], ['I', 'like', 'your', 'painting.'], ['When', 'it', 'was', 'time', 'to', 'vote,', 'he', 'abstained.'], ["I'm", 'the', 'youngest', 'one', 'here.'], ['I', 'left', 'my', 'key', 'in', 'my', 'room.'], ["What's", 'there', 'to', 'do?'], ["I'd", 'like', 'to', 'help', 'you', 'reach', 'your', 'goals.'], ['Tom', 'enjoyed', 'talking', 'to', 'Mary.'], ['From', 'now', 'on,', "let's", 'only', 'speak', 'French.'], ['Few', 'students', 'can', 'read', 'Latin.'], ['I', "don't", 'like', 'the', 'look', 'of', 'it.'], ["They're", 'just', 'doing', 'their', 'job.'], ['Here', 'is', 'where', 'it', 'all', 'happens.'], ["He's", 'drunk.'], ['What', 'I', 'want', 'is', 'some', 'peace', 'and', 'quiet.'], ['Rain', 'is', 'forecast', 'for', 'this', 'evening.'], ['Who', 'forced', 'you', 'to', 'do', 'that?'], ['I', 'know', 'this', 'must', 'be', 'hard', 'for', 'you.'], ['The', 'baby', 'is', 'crawling.'], ['I', 'think', 'you', 'already', 'have', 'enough', 'money', 'to', 'buy', 'what', 'you', 'need.'], ['Tom', 'ordered', 'a', 'bottle', 'of', 'champagne.'], ['Tom', 'answered', 'the', "teacher's", 'questions.'], ['We', 'both', 'have', 'the', 'same', 'problem.'], ['I', 'just', 'want', 'to', 'have', 'a', 'good', 'time.'], ['You', "can't", 'do', 'it,', 'can', 'you?'], ['Bear', 'in', 'mind', 'that,', 'under', 'such', 'circumstances,', 'we', 'have', 'no', 'alternative', 'but', 'to', 'find', 'another', 'buyer.'], ['Your', 'paper', 'contains', 'too', 'many', 'mistakes.'], ['This', 'is', 'quite', 'a', 'place.'], ['I', 'will', 'continue.'], ['Everyone', 'is', 'exhausted.'], ['Tom', 'opened', 'the', 'door', 'and', 'told', 'Mary', 'John', "wasn't", 'home.'], ['The', 'tree', 'fell', 'down.'], ['I', "don't", 'understand', "what's", 'happening.'], ["You're", 'either', 'with', 'me', 'or', "you're", 'against', 'me.'], ['We', "can't", 'see', 'anything.'], ["I'm", 'sorry', 'to', 'have', 'disturbed', 'you.'], ['Can', 'you', 'clean', 'your', 'bedroom?'], ['He', 'countered', 'their', 'proposal', 'with', 'a', 'surprising', 'suggestion.'], ['When', 'can', 'you', 'start?'], ['We', "don't", 'have', 'any', 'bread', 'left.'], ["I'm", 'the', 'happiest', 'man', 'in', 'the', 'world.'], ['I', 'eat', 'here', 'every', 'day.'], ['I', 'never', 'thought', "we'd", 'end', 'up', 'like', 'this.'], ["I'm", 'sick', 'of', 'hearing', 'the', 'same', 'thing', 'all', 'the', 'time.'], ["I've", 'got', 'everything', 'I', 'need', 'right', 'here.'], ["I'm", 'just', 'an', 'average', 'girl.'], ["I'm", 'a', 'little', 'sick.'], ['This', 'book', 'is', 'very', 'small.'], ['I', 'hate', 'children.'], ['I', 'want', 'to', 'make', 'new', 'friends.'], ['Our', 'cities', 'create', 'serious', 'pollution', 'problems.'], ["You're", 'telling', 'me.'], ["I'd", 'be', 'disappointed', 'if', 'I', 'saw', 'you', 'doing', 'that.'], ['The', 'ages', 'of', 'the', 'two', 'children', 'put', 'together', 'was', 'equivalent', 'to', 'that', 'of', 'their', 'father.'], ['I', "don't", 'know', 'how', 'to', 'do', 'that.'], ['Keep', 'your', 'hands', 'clean.'], ['This', 'storm', 'will', 'also', 'pass.'], ['This', 'is', 'my', 'cat.'], ['Are', 'you', 'both', 'crazy?'], ["We're", 'all', 'on', 'the', 'same', 'team.'], ["Don't", 'you', 'want', 'to', 'help?'], ['I', 'just', 'thought', 'you', 'were', 'happy.'], ["I'd", 'like', 'to', 'invite', 'you', 'to', 'dinner.'], ['I', "don't", 'think', 'you', 'would', 'do', 'that.'], ['Help', 'me', 'print', 'this.'], ['See', 'above.'], ['Would', 'you', 'like', 'to', 'rephrase', 'the', 'question?'], ["You're", 'not', 'as', 'young', 'as', 'you', 'used', 'to', 'be.'], ['When', 'did', 'Tom', 'come', 'see', 'you?'], ['Please', 'read', 'that', 'book.'], ['How', 'long', 'does', 'it', 'take', 'on', 'foot?'], ['Why', 'do', 'you', 'study', 'French?'], ['Dogs', 'have', 'a', 'strong', 'sense', 'of', 'smell.'], ["You've", 'worked', 'hard.'], ['What', 'should', 'I', 'bring?'], ["You're", 'not', 'the', 'only', 'Canadian', 'here.'], ["Don't", 'be', 'scared', 'of', 'making', 'mistakes.'], ['Tom', 'began', 'to', 'look', 'for', 'a', 'job', 'three', 'months', 'before', 'he', 'graduated', 'from', 'college.'], ['Is', 'there', 'any', 'more', 'beer?'], ['I', 'waited', 'for', 'ten', 'minutes.'], ['Everything', 'is', 'great.'], ['Newton', 'saw', 'an', 'apple', 'fall', 'off', 'a', 'tree.'], ["It's", 'not', 'that', 'complicated.'], ['This', 'is', 'unfortunate.'], ["What's", 'there', 'to', 'be', 'afraid', 'of?'], ['Why', "don't", 'you', 'go', 'on', 'a', 'diet?'], ['I', "haven't", 'done', 'that', 'since', 'last', 'Monday.'], ["I'm", 'coming', 'over', 'to', 'your', 'place.'], ['I', 'did', 'find', 'something.'], ["I'm", 'not', 'trying', 'to', 'impress', 'anyone.'], ['You', 'should', 'have', 'kept', 'it', 'secret.'], ['English', 'is', 'a', 'universal', 'language', 'and', 'is', 'used', 'all', 'over', 'the', 'world.'], ['You', 'must', 'be', 'cautious.'], ['Please', 'give', 'me', 'an', 'ashtray.'], ['I', 'thought', 'you', "didn't", 'know', 'that.'], ['I', 'apologize', 'in', 'advance.'], ['Can', 'you', 'speak', 'a', 'little', 'louder,', 'please?'], ['He', 'betrayed', 'his', 'country.'], ["You're", 'clever.'], ['They', 'want', 'you', 'dead.'], ['You', 'have', 'a', 'message.'], ['You', "don't", 'have', 'to', 'read', 'the', 'whole', 'thing', 'from', 'beginning', 'to', 'end.'], ["I've", 'never', 'seen', 'one', 'like', 'that.'], ['I', 'must', 'speak', 'with', 'you', 'alone.'], ["Don't", 'you', 'remember', 'anything?'], ['I', 'did', 'not', 'play', 'tennis', 'yesterday.'], ['Why', 'are', 'you', 'so', 'clumsy?'], ['The', 'whole', 'world', 'knows', 'that.'], ['What', 'you', 'have', 'just', 'said', 'reminds', 'me', 'of', 'an', 'old', 'saying.'], ['Guys,', "it's", 'my', 'time', 'to', 'go', 'away.'], ['I', 'finished', 'the', 'work.'], ['Are', 'you', 'on', 'the', 'list?'], ['Wear', 'warm', 'clothes.'], ['I', 'feel', 'lonely', 'when', "you're", 'not', 'here.'], ['This', 'really', 'is', 'something.'], ['Tom', 'wished', 'Mary', 'good', 'luck.'], ['I', 'hear', 'your', 'childish', 'laughter.'], ['You', 'need', 'to', 'come', 'home.'], ['Why', 'not', 'talk', 'to', 'her', 'about', 'it', 'directly?'], ['I', 'appreciate', 'what', 'you', 'did', 'earlier.'], ['Close', 'the', 'door', 'after', 'you', 'when', 'you', 'leave', 'the', 'room.'], ['I', 'must', 'admit', 'that', 'I', 'was', 'mistaken.'], ["We're", 'not', 'free.'], ["I've", 'always', 'preferred', 'working', 'alone.'], ['She', 'is', 'anxious', 'about', 'her', 'safety.'], ['A', 'policeman', 'came', 'up', 'to', 'me.'], ["We'll", 'use', 'the', 'house', 'as', 'collateral', 'so', 'we', 'can', 'borrow', 'some', 'money.'], ['Please', 'come', 'in.'], ["I'm", 'going', 'to', 'send', 'Tom', 'some', 'money.'], ['What', 'he', 'said', 'turned', 'out', 'to', 'be', 'true.'], ['Something', 'happened.'], ['He', 'fell', 'in', 'love', 'with', 'a', 'younger', 'woman.'], ['I', "don't", 'love', 'her', 'anymore.'], ['Tom', "doesn't", 'live', 'here.'], ['What', 'happened', 'to', 'your', 'other', 'car?'], ['What', 'a', 'nerve!'], ['What', 'are', 'you', 'worrying', 'about?'], ['They', 'can', 'manage.'], ["You'd", 'better', 'hurry.'], ['It', 'will', 'be', 'very,', 'very', 'hot.'], ['How', 'did', 'that', 'happen?'], ["Everyone's", 'reading.'], ['Will', 'it', 'be', 'fine', 'tomorrow?'], ['You', 'are', 'completely', 'wrong.'], ["I'll", 'let', 'you', 'get', 'back', 'to', 'work.'], ['Thank', 'you', 'for', 'your', 'present.'], ['Throw', 'it', 'to', 'Tom.'], ["I'll", 'be', 'at', "Tom's."], ['She', 'told', 'me', 'you', 'were', 'sick.'], ['Our', 'new', 'method', 'of', 'doing', 'that', 'is', 'quicker', 'and', 'more', 'efficient.'], ['Have', 'you', 'already', 'had', 'breakfast?'], ['I', 'like', 'both.'], ['Tom', 'is', 'a', 'very', 'good', 'salesman.'], ['They', 'were', 'having', 'marriage', 'problems.'], ['You', 'must', 'come', 'with', 'me.'], ["That's", 'too', 'much.'], ["I'm", 'pleased', 'with', 'his', 'performance.'], ['I', 'think', "you're", 'funny.'], ['The', 'poor', 'young', 'man', 'finally', 'became', 'a', 'great', 'artist.'], ['I', 'still', "don't", 'understand', 'what', "you're", 'talking', 'about.'], ['What', 'happened', 'after', 'that?'], ['I', 'thought', 'you', 'might', 'be', 'interested', 'in', 'this.'], ['This', 'should', 'be', 'plenty.'], ['Did', 'you', 'hear', 'the', 'news?'], ['May', 'I', 'use', 'your', 'phone?'], ['Mary', 'asked', 'her', 'family', 'for', 'a', 'loan.'], ['Bring', 'me', 'the', 'menu,', 'please.'], ["I'm", 'employed', 'by', 'a', 'French', 'lawyer.'], ["He's", 'raking', 'it', 'in.'], ['His', 'new', 'book', 'met', 'with', 'a', 'favorable', 'reception.'], ['I', 'run', 'every', 'morning.'], ['They', 'started', 'at', 'the', 'same', 'time.'], ['I', 'do', 'not', 'accept', 'your', 'excuse.'], ['I', 'have', 'some', 'friends', 'in', 'the', 'police', 'department.'], ["I'm", 'here', 'to', 'stop', 'you', 'from', 'making', 'the', 'biggest', 'mistake', 'of', 'your', 'life.'], ['I', 'had', 'a', 'good', 'summer', 'vacation.'], ['You', "don't", 'know', 'what', 'Tom', 'is', 'capable', 'of.'], ["Tom's", 'excited.'], ['You', "won't", 'be', 'fired.'], ['The', 'meeting', 'was', 'almost', 'over.'], ['There', 'were', 'too', 'many', 'children', 'in', 'the', 'pool.'], ['The', 'boat', 'capsized.'], ['I', "don't", 'believe', 'in', 'magic.'], ['Go', 'get', 'some', 'water.'], ['If', 'you', "don't", 'want', 'to', 'go,', 'you', "don't", 'have', 'to.'], ["We're", 'going', 'to', 'work', 'tonight.'], ["Don't", 'sit', 'on', 'that', 'bench.'], ['He', 'wanted', 'to', 'become', 'a', 'farmer.'], ['Call', 'me.'], ['I', 'got', 'divorced.'], ['I', "didn't", 'mean', 'to', 'keep', 'it', 'secret.'], ['It', 'is', 'important', 'to', 'know', 'your', 'own', 'limitations.'], ['Get', 'real!'], ['Help', 'me', 'pick', 'out', 'a', 'tie', 'to', 'go', 'with', 'this', 'suit.'], ['I', 'find', 'you', 'very', 'attractive.'], ['I', 'saw', 'his', 'car', 'make', 'a', 'turn', 'to', 'the', 'right.'], ['Never', 'choose', 'a', 'vocation', 'just', 'because', 'the', 'hours', 'are', 'short.'], ["We're", 'worried', 'about', 'Grandma', 'and', 'Grandpa.'], ['Nobody', 'knows', 'this.'], ['It', "wasn't", 'any', 'bigger', 'than', 'a', 'soccer', 'ball.'], ['What', 'do', 'you', 'do', 'in', 'your', 'free', 'time?'], ['Everything', 'depends', 'on', 'money.'], ['What', 'do', 'you', 'like', 'to', 'do', 'in', 'your', 'free', 'time?'], ['You', 'guys', 'look', 'lost.'], ["I'm", 'thrilled.'], ["I've", 'become', 'friends', 'with', 'Tom.'], ['Do', 'you', 'want', 'to', 'get', 'out', 'of', 'here?'], ['I', 'found', 'the', 'book', 'by', 'chance.'], ['I', "don't", 'believe', 'you', 'just', 'said', 'that.'], ['Where', 'is', 'your', 'father?'], ['Please', 'pass', 'me', 'the', 'butter.'], ['They', "won't", 'give', 'themselves', 'up.'], ['He', 'made', 'her', 'a', 'new', 'coat.'], ['They', 'did', 'not', 'want', 'to', 'spend', 'much', 'time', 'talking', 'about', 'it.'], ['Families', 'began', 'to', 'have', 'fewer', 'and', 'fewer', 'children.'], ['I', 'will', 'come', 'and', 'see', 'you', 'when', 'I', 'get', 'well.'], ['He', 'stayed', 'in', 'New', 'York', 'for', 'three', 'weeks.'], ['This', 'is', 'the', 'village', 'where', 'I', 'was', 'born.'], ["You're", 'cantankerous.'], ["I'll", 'have', 'lunch', 'waiting', 'for', 'you.'], ['You', 'look', 'a', 'little', 'shaken.'], ['He', 'has', 'sent', 'the', 'boy', 'on', 'an', 'errand.'], ['I', 'am', 'a', 'volunteer.'], ['I', 'heard', 'you', 'received', 'an', 'award', 'last', 'month.'], ['No', 'matter', 'how', 'busy', 'you', 'are,', 'I', 'think', 'you', 'should', 'at', 'least', 'read', 'a', 'newspaper.'], ['Please', 'hand', 'me', 'the', 'bottle', 'opener.'], ['I', 'am', 'to', 'meet', 'him', 'at', 'six.'], ["It's", 'a', 'tradition.'], ["I'm", 'convinced.'], ['I', 'pretended', 'to', 'work.'], ['He', 'narrowly', 'escaped', 'being', 'killed.'], ["Don't", 'be', 'so', 'hard', 'on', 'yourself.'], ['We', 'almost', 'got', 'them', 'where', 'we', 'want', 'them.'], ['I', 'decided', 'to', 'tell', 'her', 'that', 'I', 'love', 'him.'], ["That's", 'a', 'very', 'difficult', 'question.'], ['She', 'first', 'came', 'into', 'contact', 'with', 'Japanese', 'culture', 'last', 'year.'], ['Germs', 'can', 'cause', 'sickness.'], ["Don't", 'tell', 'my', 'girlfriend.'], ['I', 'work', 'at', 'a', 'hotel', 'in', 'Boston.'], ['This', 'water', "isn't", 'drinkable.'], ['I', 'like', 'learning', 'languages.'], ['I', 'work', 'on', 'a', 'farm.'], ['Few', 'people', 'live', 'on', 'the', 'island.'], ['Will', 'you', 'permit', 'me', 'to', 'go', 'there?'], ["Don't", 'hold', 'it', 'upside', 'down.'], ['Tom', 'wants', 'to', 'know', 'more', 'about', "Mary's", 'past.'], ["Don't", 'open', 'the', 'door', 'for', 'anyone.'], ['The', 'tiger', 'was', 'killed.'], ['Do', 'you', 'think', 'you', 'can', 'help', 'Tom?'], ['That', 'company', 'produces', 'microchips.'], ['Let', 'me', 'explain', "what's", 'happened.'], ['To', 'be', 'happy,', 'you', 'should', 'spend', 'time', 'with', 'someone', 'you', 'love.'], ['Can', 'you', 'keep', 'a', 'secret?'], ['Please', 'say', 'it', 'more', 'loudly.'], ['You', 'must', 'exercise', 'more', 'care', 'in', 'writing', 'English.'], ['I', 'have', 'lucid', 'dreams.'], ["We're", 'too', 'busy.'], ["You're", 'going', 'to', 'turn', 'a', 'lot', 'of', 'heads', 'with', 'that', 'dress.'], ['You', "don't", 'need', 'to', 'think', 'about', 'that', 'now.'], ['Please', 'close', 'the', 'door', 'quietly.'], ["We'll", 'have', 'breakfast', 'at', '6:30.'], ['It', "wasn't", 'enough.'], ['I', 'want', 'to', 'serve', 'my', 'country.'], ['His', 'guess', 'turned', 'out', 'to', 'be', 'right.'], ['She', 'wants', 'him', 'to', 'be', 'just', 'a', 'friend.'], ['I', 'thought', 'we', 'were', 'friends.'], ['If', 'you', 'speak', 'too', 'fast,', 'I', 'will', 'not', 'be', 'able', 'to', 'understand.'], ["What's", 'it', 'smell', 'like?'], ['Nothing', 'feels', 'right.'], ['The', 'driver', 'sustained', 'multiple', 'injuries.'], ["We'll", 'make', 'up', 'for', 'the', 'loss.'], ['Tom', 'is', 'the', 'person', 'I', 'saw', 'yesterday.'], ["Don't", 'be', 'so', 'angry.'], ['I', 'think', "you'll", 'regret', 'it', 'if', 'you', "don't", 'go', 'with', 'us.'], ['Help', 'yourself', 'to', 'the', 'strawberry', 'jam.'], ['The', 'tall', 'man', 'wore', 'a', 'pink', 'carnation', 'in', 'his', 'lapel.'], ['They', 'kept', 'drinking.'], ['She', 'was', 'wearing', 'long', 'boots.'], ['The', 'writer', 'is', 'well', 'known', 'to', 'us.'], ['Where', 'are', 'your', 'things?'], ['We', 'happened', 'to', 'meet', 'at', 'the', 'station.'], ['Your', 'coat', 'is', 'very', 'beautiful.'], ['She', 'wore', 'glasses.'], ['Does', 'it', 'snow', 'a', 'lot', 'in', 'the', 'winter?'], ['Why', "don't", 'you', 'sing?'], ["They're", 'in', 'trouble.'], ['Do', 'you', 'know', 'where', 'he', 'was', 'born?'], ["Don't", 'mock', 'me.'], ['Tom', 'has', 'a', 'beautiful', 'garden.'], ['Be', 'prepared.'], ['I', 'had', 'to', 'see', 'you', 'again.'], ['I', "don't", 'have', 'that', 'information.'], ["I'm", 'fighting.'], ['Be', 'polite', 'to', 'your', 'parents.'], ['Tom', 'refused', 'to', 'sing', 'the', 'song', 'Mary', 'requested.'], ['Even', 'Tom', "wasn't", 'able', 'to', 'answer', 'the', "teacher's", 'questions.'], ['You', 'were', 'right', 'after', 'all.'], ['Do', 'it', 'again!'], ['I', "don't", 'think', 'it', 'works', 'that', 'way.'], ['Would', 'you', 'like', 'to', 'play', 'tennis', 'every', 'Sunday?'], ["I'm", 'looking', 'forward', 'to', 'that.'], ['He', 'is', 'a', 'man', 'of', 'noble', 'birth.'], ['I', 'fed', 'the', 'dog.'], ['The', 'crowd', 'applauded', 'for', 'several', 'minutes.'], ['I', 'am', 'going', 'to', 'Europe', 'next', 'week.'], ['He', 'has', 'a', 'very', 'materialistic', 'outlook', 'on', 'life.'], ['Can', 'Tom', 'see', 'us?'], ['Tom', 'lived', 'on', 'the', 'west', 'coast.'], ['We', 'must', 'follow', 'the', 'regulations.'], ['Tom', 'tells', 'me', "you're", 'his', 'assistant.'], ["That's", 'disgusting.'], ['I', "couldn't", 'take', 'money', 'from', 'you.'], ['Someone', 'called', 'on', 'her', 'yesterday.'], ['Will', 'you', 'pay', 'cash?'], ["We'll", 'wait.'], ['Thank', 'you', 'for', 'inviting', 'me', 'to', 'dinner.'], ["That's", 'what', 'I', 'want', 'most', 'in', 'the', 'world.'], ['Boys', 'are', 'not', 'welcome.'], ['Tom', "doesn't", 'eat', 'beef.'], ['I', "won't", 'let', 'anything', 'bad', 'happen', 'to', 'you.'], ['Tom', 'and', 'Mary', 'sat', 'next', 'to', 'each', 'other', 'at', 'the', 'table', 'in', 'the', 'conference', 'room.'], ["I've", 'come', 'here', 'to', 'help', 'you.'], ["I'll", 'take', 'your', 'word', 'for', 'it.'], ['She', 'went', 'into', 'her', 'room', 'to', 'change', 'her', 'dress.'], ['I', "don't", 'like', 'swimming', 'in', 'pools.'], ['Our', 'school', 'was', 'reduced', 'to', 'ashes.'], ['How', 'did', 'you', 'spend', 'your', 'free', 'time?'], ['I', 'paid', 'for', 'them.'], ['Can', 'I', 'tell', 'them', "you'll", 'be', 'visiting?'], ['Take', 'a', 'whiff.'], ['Do', 'your', 'parents', 'know', 'about', 'this?'], ['Is', 'anyone', 'else', 'excited', 'about', 'this?'], ['She', 'hung', 'up', 'in', 'silence.'], ['Did', 'I', 'say', 'something', 'wrong?'], ["He's", 'kind', 'of', 'shy.'], ['This', 'box', 'is', 'made', 'of', 'paper.'], ['I', 'pleaded', 'not', 'guilty.'], ['When', 'did', 'you', 'see', 'him?'], ['I', 'just', 'kind', 'of', 'want', 'to', 'be', 'alone', 'right', 'now.'], ['I', 'want', 'to', 'see', 'you', 'smile.'], ['The', 'president', 'abolished', 'slavery.'], ['I', 'had', 'a', 'headache.'], ['Keep', 'the', 'dog', 'out.'], ['You', 'should', 'begin', 'with', 'easier', 'questions.'], ["I've", 'got', 'nothing', 'to', 'say.'], ['Tom', 'put', 'the', 'vase', 'on', 'the', 'table.'], ["It's", 'OK', 'to', 'take', 'a', 'picture', 'from', 'outside.'], ['That', 'word', 'describes', 'it', 'perfectly.'], ['I', 'dozed.'], ['Are', 'you', 'up', 'for', 'it?'], ['Cabbage', 'can', 'be', 'eaten', 'raw.'], ['I', 'hope', 'so.'], ['Tom', 'is', 'quiet.'], ["Tom's", 'goal', 'is', 'to', 'own', 'a', 'home', 'before', "he's", 'thirty.'], ["You're", 'my', "kid's", 'teacher.'], ['I', "can't", 'take', 'my', 'glasses', 'off.'], ['Is', 'this', 'time', 'different?'], ["It's", 'your', 'turn', 'to', 'wash', 'the', 'dishes.'], ["That's", 'under', 'discussion.'], ['He', 'stays', 'a', 'long', 'time', 'every', 'time', 'he', 'comes.'], ['Are', 'those', 'yours?'], ['She', 'wrote', 'him', 'a', 'long', 'letter,', 'but', 'he', "didn't", 'read', 'it.'], ['What', 'do', 'you', 'think', 'of', 'this', 'plan?'], ['I', 'have', 'another', 'friend', 'in', 'China.'], ['Did', 'you', 'lend', 'any', 'money', 'to', 'my', 'brother?'], ['It', 'is', 'too', 'early', 'to', 'get', 'up.'], ['I', 'was', 'caught', 'in', 'a', 'shower.'], ['Maybe', "that's", 'a', 'good', 'idea.'], ['She', 'is', 'in', 'a', 'hurry', 'because', 'she', 'is', 'late.'], ['Stop', 'acting', 'like', 'a', 'baby.'], ['Did', 'Mary', 'tell', 'you', 'she', 'was', "Tom's", 'wife?'], ['I', 'had', 'him', 'write', 'it.'], ['This', 'is', 'the', 'last', 'game.'], ["You're", 'really', 'gifted.'], ['What', 'was', 'her', 'answer', 'to', 'your', 'proposal?'], ['Do', 'you', 'like', 'mine?'], ['We', 'ran', 'around', 'the', 'park.'], ['How', 'did', 'you', 'reply?'], ['What', 'a', 'smart', 'guy!'], ["That's", 'a', 'shame.'], ['I', 'was', 'too', 'scared', 'to', 'do', 'anything.'], ['We', 'are', 'measuring', 'the', 'depth', 'of', 'the', 'river.'], ['Can', 'you', 'figure', 'out', 'this', 'problem?'], ['I', 'saw', 'you', 'yesterday.'], ['Let', 'me', 'do', 'the', 'talking.'], ['Can', 'I', 'use', 'your', 'telephone?'], ["I'd", 'rather', 'do', 'this', 'alone.'], ['You', "can't", 'quit', 'now.'], ['I', 'wanted', 'you', 'to', 'do', 'that.'], ['Be', 'careful!'], ['He', 'assumed', 'full', 'responsibility', 'for', 'it.'], ["That's", 'what', 'I', 'need', 'to', 'know.'], ['She', 'persuaded', 'him', 'to', 'marry', 'her.'], ['If', 'the', 'medicine', "isn't", 'working,', 'maybe', 'we', 'should', 'up', 'the', 'dosage.'], ['I', 'already', 'know', 'what', 'Tom', 'wants', 'to', 'tell', 'me.'], ["We're", 'retiring.'], ['Who', 'knows', "what's", 'going', 'to', 'happen?'], ['Is', 'this', 'bag', 'yours', 'or', 'his?'], ['Which', 'dictionary', 'did', 'you', 'refer', 'to?'], ['Are', 'you', 'still', 'studying', 'French?'], ['He', 'refused', 'to', 'pay.'], ['I', 'miss', 'you.', 'I', 'need', 'to', 'see', 'you.', 'Could', 'I', 'come', 'over?'], ['Nobody', 'wants', 'it.'], ['Stop', 'it.', "You're", 'making', 'me', 'blush.'], ['I', 'wonder', 'if', 'he', 'can', 'reserve', 'the', 'flight', 'for', 'me.'], ['Do', 'you', 'want', 'to', 'use', 'mine?'], ['All', 'I', 'have', 'is', 'books.'], ['I', "didn't", 'realize', 'you', 'were', 'so', 'rich.'], ['The', 'public', 'at', 'large', 'are', 'dissatisfied', 'with', 'the', 'present', 'government.'], ['Please', "don't", 'forget', 'to', 'put', 'stamps', 'on', 'the', 'letters', 'that', 'I', 'gave', 'you', 'to', 'mail.'], ['I', 'know', 'Tom', 'is', 'flexible.'], ['I', 'think', 'we', 'need', 'a', 'doctor.'], ['Now', 'that', "you've", 'decided', 'to', 'quit', 'your', 'job,', 'you', 'look', 'happy.'], ['They', 'were', 'scolded', 'by', 'the', 'teacher.'], ['I', 'went', 'to', 'your', 'school.'], ["Don't", 'you', 'think', 'it', 'odd', 'that', 'she', 'was', 'in', 'such', 'a', 'hurry?'], ['Can', 'you', 'make', 'the', 'deadline?'], ['The', 'possibilities', 'are', 'infinite.'], ['I', 'hope', 'Tom', 'never', 'gets', 'out', 'of', 'prison.'], ['A', 'man', 'came', 'to', 'visit', 'you', 'last', 'night.'], ['You', "aren't", 'like', 'the', 'others.'], ['I', 'wonder', "who's", 'going', 'to', 'do', 'that.'], ['Everyone', 'looks', 'uncomfortable.'], ['Now', 'that', 'he', 'is', 'old,', 'it', 'is', 'your', 'duty', 'to', 'look', 'after', 'him.'], ['She', 'has', 'left', 'her', 'umbrella', 'behind.'], ['Grab', 'the', 'end', 'of', 'this', 'rope.'], ['You', 'did', 'say', 'that.'], ['How', 'did', 'you', 'become', 'interested', 'in', 'studying', 'languages?'], ['A', 'car', 'in', 'the', 'parking', 'lot', 'is', 'on', 'fire.'], ['He', 'closely', 'resembles', 'his', 'father.'], ['I', 'missed', 'you', 'kids.'], ['Tom', 'wears', 'jeans', 'every', 'day.'], ['I', "don't", 'want', 'distractions.'], ['I', "don't", 'think', 'they', 'allow', 'that.'], ['We', 'want', 'answers.'], ['What', 'should', 'we', 'do', 'if', 'he', 'comes', 'late?'], ["I'm", 'really', 'unhappy', 'about', 'this.'], ['Whenever', 'I', 'see', 'this,', 'I', 'remember', 'him.'], ['He', 'stopped', 'for', 'a', 'smoke.'], ['Excuse', 'me,', 'does', 'this', 'train', 'go', 'to', 'Washington', 'Square?'], ['He', 'said', 'nothing,', 'which', 'made', 'her', 'angry.'], ['The', 'line', 'is', 'busy.'], ['Tom', 'had', 'a', 'blue', 'coat', 'on.'], ['Tom', 'explained', 'the', 'project', 'to', 'Mary.'], ['Two', 'times', 'seven', 'is', 'fourteen.'], ['I', 'know', 'all', 'that.'], ['I', 'made', 'that', 'one.'], ['We', 'must', 'obey', 'the', 'law.'], ['About', 'how', 'much', 'money', 'do', 'you', 'need?'], ['Take', 'a', 'picture', 'with', 'your', 'phone.'], ["It's", 'a', 'rental.'], ['Would', 'you', 'like', 'to', 'go?'], ['I', 'thought', 'Tom', 'was', 'in', 'school.'], ['How', 'come', "you're", 'not', 'dead?'], ["She's", 'such', 'a', 'lovely', 'girl!'], ["Here's", 'some', 'medicine', 'for', 'diarrhea.'], ['You', 'chose', 'a', 'good', 'one.'], ['You', 'have', 'three', 'choices.'], ["He's", 'a', 'professional', 'photographer.'], ["I've", 'never', 'lost', 'to', 'Tom.'], ['Please', 'help', 'me', 'get', 'a', 'taxi.'], ['Tom', 'usually', 'goes', 'to', 'school', 'by', 'bus.'], ['Have', 'you', 'ever', 'been', 'a', 'witness', 'in', 'a', 'court', 'case?'], ['You', 'had', 'better', 'start', 'at', 'once.'], ["I'd", 'love', 'to', 'go', 'out', 'with', 'you.'], ['That', 'was', 'just', 'icing', 'on', 'the', 'cake.'], ['Do', 'you', 'think', 'Tom', 'will', 'like', 'the', 'concert?'], ['I', 'rang', 'the', 'doorbell.'], ['He', 'behaves', 'like', 'a', 'child.'], ['A', 'helicopter', 'flew', 'overhead.'], ['Tom', 'is', 'a', 'former', 'student', 'of', 'mine.'], ['Do', 'you', 'want', 'me', 'to', 'handle', 'this?'], ["I'm", 'sorry', 'if', 'I', 'disturbed', 'you.'], ['Young', 'as', 'he', 'is,', 'he', 'has', 'a', 'large', 'family', 'to', 'provide', 'for.'], ['Those', 'present', 'at', 'the', 'meeting', 'were', 'surprised', 'at', 'the', 'news.'], ['Stop', 'badgering', 'me.'], ['She', 'turned', 'her', 'face', 'away', 'so', 'he', "wouldn't", 'see', 'her', 'tears.'], ['No', 'one', 'can', 'do', 'that.'], ['The', 'ATM', 'is', 'out', 'of', 'order.'], ["You're", 'too', 'loud.'], ['She', 'will', 'be', 'late', 'for', 'dinner.'], ['Why', 'did', 'you', 'come', 'here', 'today?'], ['I', 'missed', 'you.'], ['Tom', 'took', 'the', 'wrong', 'bus.'], ['A', 'man', 'whose', 'wife', 'is', 'dead', 'is', 'called', 'a', 'widower.'], ['Is', 'life', 'here', 'hard?'], ['He', 'works', 'for', 'a', 'bank.'], ["I'm", 'not', 'going', 'to', 'go.'], ['It', 'was', 'so', 'hot', 'that', 'I', 'thought', 'I', 'was', 'going', 'to', 'pass', 'out.'], ['I', 'almost', 'forgot', 'my', 'passport.'], ['I', "didn't", 'plan', 'on', 'staying', 'here', 'so', 'long.'], ["He's", 'a', 'creationist.'], ['Be', 'nice', 'to', 'her.'], ["Don't", 'you', 'want', 'a', 'little', 'excitement?'], ['I', 'no', 'longer', 'have', 'a', 'headache.'], ['It', 'will', 'grow', 'back.'], ["It's", 'illegal', 'to', 'buy', 'cocaine.'], ['I', "didn't", 'read', 'it', 'all.'], ['Tom', 'never', 'told', 'me', 'why', 'he', "didn't", 'like', 'Mary.'], ["Don't", 'do', 'it', 'again.'], ['How', 'big', 'you', 'are!'], ['This', 'river', 'is', 'very', 'dangerous', 'to', 'swim', 'in.'], ["I'll", 'make', 'you', 'proud', 'of', 'me.'], ["I'm", 'all', 'by', 'myself.'], ['What', 'do', 'you', 'know', 'about', "Tom's", 'girlfriend?'], ['How', 'can', 'you', 'stand', 'it?'], ["You're", 'tough.'], ['I', 'wish', 'you', 'had', 'come', 'with', 'us.'], ['Tom', 'donated', 'a', 'lot', 'of', 'money.'], ['Is', 'that', 'notarized?'], ['I', "didn't", 'know', 'what', 'I', 'should', 'say.'], ['Help', 'me', 'out,', 'would', 'you?'], ['I', 'feel', 'empowered.'], ['Just', 'let', 'me', 'handle', 'this.'], ['Far', 'from', 'hesitating,', 'she', 'willingly', 'offered', 'to', 'help', 'me.'], ['The', 'situation', 'has', 'stabilized.'], ['What', 'has', 'Tom', 'been', 'accused', 'of?'], ['Which', 'browser', 'are', 'you', 'using?'], ["She's", 'rolling', 'in', 'money.'], ['Why', "isn't", 'Tom', 'sleeping?'], ['You', 'had', 'plenty', 'of', 'opportunity.'], ['I', 'wanted', 'to', 'see', 'you,', 'too.'], ['I', 'am', 'ready', 'to', 'help', 'you.'], ["Let's", 'draw', 'straws.'], ['Anyone', 'who', 'says', 'so', 'is', 'a', 'liar.'], ["We're", 'your', 'last', 'hope.'], ['He', 'stopped', 'drinking.'], ['I', 'wanted', 'you', 'to', 'understand', 'what', "you're", 'up', 'against.'], ['From', 'year', 'to', 'year,', 'pollution', 'is', 'worsening.'], ["I'm", 'not', 'signing', 'anything.'], ['We', 'all', 'got', 'distracted.'], ['They', 'supported', 'his', 'right', 'to', 'speak', 'freely.'], ['Is', 'Tom', 'ill?'], ['I', 'watched', 'television', 'instead', 'of', 'studying.'], ['I', 'want', 'to', 'buy', 'a', 'book.'], ['There', 'was', 'another', 'one.'], ['I', "won't", 'be', 'able', 'to', 'eat', 'all', 'this.'], ["Someone's", 'trying', 'to', 'kill', 'me.'], ['Your', "telephone's", 'ringing,', 'Tom.'], ['It', 'was', 'just', 'a', 'passing', 'infatuation.'], ['I', 'never', "should've", 'broken', 'up', 'with', 'Mary.'], ['I', "don't", 'want', 'to', 'hear', 'your', 'theories.'], ['I', 'know', 'this', 'house', 'used', 'to', 'be', 'yours.'], ['My', 'pulse', 'is', 'slow.'], ['It', 'was', 'not', 'my', 'intention', 'to', 'hurt', 'your', 'feelings.'], ['You', "don't", 'seem', 'too', 'surprised.'], ['We', 'should', 'respect', 'our', 'parents.'], ["I'd", 'appreciate', 'that.'], ['Did', 'you', 'have', 'a', 'good', 'time', 'on', 'your', 'trip', 'to', 'London?'], ['I', 'found', 'a', 'pair', 'of', 'gloves', 'under', 'the', 'chair.'], ['Tom', 'is', 'studying', 'French.'], ['Everybody', 'wants', 'to', 'protect', 'you.'], ['Did', 'you', 'know', 'this', 'at', 'the', 'time?'], ['We', 'need', 'to', 'find', 'an', 'effective', 'method.'], ['All', 'the', 'guests', 'have', 'gone', 'home.'], ['He', 'cleared', 'his', 'throat.'], ['I', 'wonder', 'why', "it's", 'so', 'crowded', 'here', 'today.'], ['I', 'want', 'you', 'to', 'go', 'somewhere.'], ['I', 'believe', 'in', 'this', 'method', 'of', 'teaching.'], ['Tom', 'seemed', 'a', 'little', 'jealous.'], ['Tom', 'looks', 'happier', 'today.'], ['I', "didn't", 'sleep', 'much', 'last', 'night.'], ["I'll", 'teach', 'you', 'how', 'to', 'sing.'], ["It's", 'time', 'to', 'eat', 'lunch.'], ['I', 'usually', 'prefer', 'to', 'pay', 'with', 'credit', 'card', 'and', 'not', 'with', 'cash.'], ['I', "don't", 'need', 'any', 'rest.'], ['You', 'recognize', 'her,', "don't", 'you?'], ['I', 'spent', 'a', 'great', 'deal', 'of', 'time', 'dealing', 'with', 'that', 'problem', 'last', 'week.'], ["It's", 'hard', 'to', 'figure', 'out', "who's", 'telling', 'the', 'truth.'], ['Why', 'is', 'this', 'our', 'problem?'], ["I'm", 'glad', 'you', 'called.'], ['This', 'is', "what'll", 'happen.'], ['May', 'I', 'keep', 'this', 'photograph?'], ["That's", 'something', 'that', 'happens', 'quite', 'often.'], ['I', 'never', 'thought', 'I', 'would', 'do', 'that.'], ['Tom', 'was', 'wearing', 'a', 'brown', 'coat.'], ['Stay', 'calm', 'and', 'do', 'your', 'best.'], ["It's", 'your', 'decision.'], ['You', "aren't", 'invited.'], ['I', 'have', 'to', 'go', 'to', 'bed.'], ['I', 'needed', 'to', 'talk', 'to', 'you.'], ['Give', 'me', 'a', 'beer.'], ['Is', 'that', 'what', 'you', 'think', 'I', 'want', 'to', 'hear?'], ['Where', 'did', 'you', 'hide', 'it?'], ["We'll", 'begin', 'work', 'soon.'], ['This', 'is', 'hogwash.'], ['I', "don't", 'take', 'it', 'personally.'], ['Economy', 'cars', 'save', 'you', 'money.'], ['I', 'guess', 'we', 'were', 'happy', 'back', 'then.'], ['How', 'much', 'oil', 'is', 'spilled', 'into', 'the', 'ocean', 'every', 'year?'], ['How', 'long', 'have', 'you', 'been', 'in', 'this', 'country?'], ['These', 'two', 'brothers', 'resemble', 'each', 'other.'], ['He', "didn't", 'do', 'it', 'on', 'purpose.'], ['His', 'room', 'is', 'untidy.'], ['She', 'is', 'busy', 'learning', 'English.'], ['I', 'thought', "you'd", 'gone', 'home.'], ['Is', 'this', 'your', 'car?'], ['I', 'want', 'new', 'business', 'cards.'], ['Tom', 'brushed', "Mary's", 'hair.'], ['Love', 'hurts.'], ['Next', 'time,', 'you', "won't", 'be', 'so', 'lucky.'], ['Why', 'do', 'you', 'need', 'them?'], ['You', "weren't", 'married', 'for', 'long,', 'were', 'you?'], ['He', 'betrayed', 'my', 'confidence.'], ['The', 'man', 'blushed', 'like', 'a', 'boy.'], ['Are', 'you', 'speaking', 'to', 'me?'], ['You', 'have', 'a', 'lot', 'of', 'nerve!'], ["You've", 'gone', 'too', 'far.'], ['My', 'orders', 'are', 'to', 'go', 'with', 'you.'], ['Do', 'you', 'mind', 'if', 'I', 'ask', 'you', 'a', 'couple', 'of', 'questions?'], ['Tom,', "I'm", 'in', 'trouble.', 'I', 'need', 'you', 'to', 'come', 'get', 'me.'], ["They're", 'looking', 'for', 'you.'], ['Where', 'did', 'you', 'learn', 'that?'], ["I've", 'got', 'you.'], ['I', "don't", 'really', 'care', 'about', 'that.'], ['He', 'hurried', 'to', 'the', 'station.'], ['Tom', "doesn't", 'want', 'to', 'live', 'in', 'Boston.'], ['It', 'has', 'cooled', 'off.'], ['Stop', 'acting', 'like', 'a', 'baby.'], ['I', 'have', 'to', 'go', 'now.'], ['Try', 'to', 'eat', 'a', 'little', 'more.'], ['His', 'story', 'may', 'not', 'be', 'true.'], ['He', 'loves', 'you', 'as', 'much', 'as', 'I', 'do.'], ["We're", 'trying', 'to', 'win.'], ['Take', 'the', 'money', 'and', 'run.'], ['In', 'the', 'summer,', 'it', 'is', 'very', 'hot', 'here.'], ['Why', 'are', 'you', 'waiting?'], ['Let', 'me', 'get', 'this', 'straight.'], ['I', 'must', 'organize', 'my', 'thoughts.'], ['Please', 'stop', 'talking.', 'I', 'need', 'to', 'concentrate', 'on', 'my', 'game.'], ["You've", 'got', 'to', 'move.'], ["You've", 'been', 'suspended.'], ['You', "don't", 'seem', 'very', 'satisfied.'], ['Does', 'that', 'suit', 'you?'], ['Someone', 'must', 'have', 'left', 'it', 'there.'], ['Tom', 'arrived', 'safely.'], ["I'm", 'going', 'to', 'do', 'some', 'reading.'], ['Exceptions', 'prove', 'the', 'rule.'], ["Don't", 'you', 'think', 'that', 'Tom', 'was', 'a', 'little', 'weird?'], ['This', 'is', 'classified.'], ["It's", 'a', 'long', 'way', 'from', 'here', 'to', 'school.'], ["Let's", 'learn', 'this', 'poem', 'by', 'heart.'], ['Can', 'I', 'set', 'a', 'place', 'at', 'the', 'table', 'for', 'you?'], ['Are', 'you', 'insane?'], ['I', 'thought', 'my', 'head', 'was', 'going', 'to', 'explode.'], ['We', 'discussed', 'the', 'problem', 'far', 'into', 'the', 'night.'], ['"Will', 'you', 'help', 'me', 'with', 'my', 'English', 'homework?"', '"Certainly."'], ['He', 'might', 'possibly', 'say', 'something', 'ambiguous', 'again.'], ['I', 'have', 'plenty', 'of', 'friends.'], ['I', "don't", 'write', 'the', 'rules.'], ['He', 'is', 'my', 'brother,', 'not', 'father.'], ['Tom', "wasn't", 'wrong,', 'but', 'Mary', 'was.'], ['Should', 'I', 'be', 'jealous?'], ['The', 'book', 'is', 'white.'], ['That', "wasn't", 'exactly', 'my', 'plan.'], ["You're", 'being', 'bossy,', "aren't", 'you?'], ["It's", 'a', 'misunderstanding.'], ["We're", 'going', 'to', 'finish', 'this.'], ['We', 'have', 'to', 'be', 'at', 'work', 'by', 'nine.'], ['He', 'has', 'any', 'number', 'of', 'books.'], ["Don't", 'mind', 'me.', 'Just', 'keep', 'doing', 'what', 'you', 'were', 'doing.'], ['Many', 'families', 'eat', 'dinner', 'while', 'watching', 'TV.'], ['Tom', 'read', 'the', 'story', 'out', 'loud.'], ['I', 'downloaded', 'it.'], ['Keep', 'your', 'hands', 'up.'], ['I', 'know', 'that', 'Tom', 'is', 'a', 'thief.'], ['I', 'have', 'an', 'older', 'brother', 'and', 'a', 'younger', 'sister.'], ["I'm", 'a', 'biology', 'student.'], ['I', 'just', "don't", 'want', 'anybody', 'to', 'get', 'hurt.'], ['Mastering', 'a', 'foreign', 'language', 'is', 'difficult.'], ['Park', 'the', 'car', 'in', 'the', 'shade.'], ['I', 'answered', 'the', 'door.'], ['Our', 'hens', 'laid', 'a', 'lot', 'of', 'eggs', 'yesterday.'], ['It', 'seems', 'warm', 'outside.'], ['Would', 'you', 'like', 'some', 'more', 'cake?'], ["What's", 'wrong', 'with', 'you?'], ['The', 'problem', 'was', 'that', 'I', 'had', 'nothing', 'to', 'say', 'to', 'him.'], ["That's", 'what', 'Tom', 'and', 'I', 'were', 'told', 'three', 'hours', 'ago.'], ['She', 'had', 'a', 'basket', 'full', 'of', 'apples.'], ["There's", 'nothing', 'there.'], ["You've", 'got', 'the', 'wrong', 'person.'], ['Things', 'got', 'out', 'of', 'control.'], ["I'd", 'like', 'to', 'ask', 'you', 'a', 'few', 'more', 'questions.'], ['I', 'want', 'a', 'piece', 'of', 'pie.'], ['If', 'you', "don't", 'know,', 'who', 'does?'], ['Is', 'there', 'anything', 'else', "you'd", 'like?'], ["We'll", 'die', 'if', 'we', 'stay', 'here.'], ['I', 'was', 'really', 'quite', 'stiff.'], ['I', "couldn't", 'find', 'it.'], ['I', 'require', 'your', 'advice.'], ["You're", 'not', 'too', 'late.'], ['Nothing', 'was', 'wrong.'], ["Dinner's", 'ready.'], ['I', "don't", 'like', 'feeling', 'so', 'powerless.'], ['It', 'was', 'really', 'neat.'], ['Tom', "doesn't", 'know', 'that', 'I', "won't", 'do', 'that.'], ['May', 'I', 'speak', 'to', 'you', 'for', 'a', 'moment?'], ["We'll", 'meet', 'in', 'three', 'hours.'], ["We'll", 'find', 'somewhere', 'else', 'to', 'go.'], ['There', 'was', 'a', 'lot', 'of', 'snow.'], ['I', 'went', 'out', 'for', 'a', 'beer', 'with', 'my', 'friends.'], ['I', 'doubt', "that's", 'what', 'really', 'happened.'], ['Why', 'did', 'you', 'like', 'it?'], ["He's", 'hiding', 'in', 'the', 'closet.'], ['Tom', 'looked', 'really', 'uncomfortable.'], ['She', 'put', 'on', 'her', 'hat', 'to', 'go', 'out.'], ['"When', 'does', 'your', 'sister', 'come', 'back', 'from', 'work?"', '"I', "don't", 'know,', 'but', 'I', 'think', "she'll", 'arrive', 'at', 'home', 'a', 'few', 'minutes', 'before', 'me."'], ['Do', 'you', 'have', 'any', 'idea', 'what', 'happened?'], ['Carry', 'this.'], ['You', "don't", 'look', 'so', 'busy.'], ['I', 'liked', 'this', 'striped', 'shirt.'], ['French', 'is', 'a', 'very', 'interesting', 'language.'], ["Don't", 'let', 'this', 'chance', 'slip', 'by.'], ['I', 'feel', 'lost.'], ['We', 'appreciate', 'your', 'help.'], ['Tomorrow,', 'God', 'willing,', "we'll", 'be', 'with', 'your', 'parents.'], ['He', 'took', 'no', 'notice', 'of', 'our', 'warning.'], ['I', 'called', 'home.'], ['Allow', 'me', 'to', 'go.'], ['It', 'has', 'happened', 'before.'], ['He', 'thought', 'that', 'he', 'could', 'climb', 'the', 'mountain.'], ['I', 'want', 'to', 'be', 'certain', 'you', 'are', 'who', 'you', 'say', 'you', 'are.'], ["She's", 'not', 'the', 'kind', 'of', 'girl', 'you', 'think', 'she', 'is.'], ['I', "don't", 'know', 'why', 'you', "don't", 'like', 'him.'], ['I', 'expected', 'to', 'see', 'Tom', 'yesterday.'], ['What', 'are', 'you', 'trying', 'to', 'prove?'], ["I've", 'locked', 'myself', 'out', 'of', 'my', 'house.'], ['Too', 'many', 'sweets', 'make', 'you', 'fat.'], ['Where', 'are', 'we', 'going', 'next?'], ['Get', 'on', 'the', 'bus.'], ['Did', 'I', 'give', 'it', 'to', 'you?'], ['I', 'really', 'have', 'missed', 'you.'], ['I', 'suggest', 'we', 'hurry.'], ['I', 'felt', 'happy.'], ["I'm", 'busy,', 'so', 'I', "can't", 'go.'], ['You', "shouldn't", 'trust', 'Tom.'], ['Daddy,', 'I', "can't", 'walk', 'any', 'more.', 'Carry', 'me.'], ['The', 'beach', 'is', 'swarming', 'with', 'people.'], ['Get', 'it', 'out', 'of', 'here.'], ['She', 'has', 'gone', 'through', 'many', 'difficulties.'], ['I', 'know', 'Tom', 'was', 'right.'], ['Let', 'me', 'see', 'it.'], ["I'll", 'be', 'very', 'happy', 'if', 'I', 'can', 'serve', 'you.'], ['I', 'got', 'up', 'earlier', 'than', 'usual', 'to', 'catch', 'the', 'first', 'train.'], ['How', 'do', 'you', 'spend', 'your', 'time?'], ['I', 'think', "it's", 'all', 'right', 'now.'], ["You're", 'safe', 'as', 'long', 'as', 'you', 'stay', 'here.'], ['I', 'felt', 'cheated.'], ['Let', 'me', 'grab', 'my', 'bag.'], ['All', 'the', 'villagers', 'went', 'out', 'into', 'the', 'hills', 'to', 'look', 'for', 'a', 'missing', 'cat.'], ['Does', 'she', 'have', 'a', 'piano?'], ['Tom', 'used', 'to', 'live', 'in', 'Boston.'], ['That', 'mountain', 'is', 'about', 'three', 'thousand', 'meters', 'high.'], ['It', 'was', 'a', 'relief.'], ['Do', 'you', 'have', 'an', 'extra', 'key?'], ['Is', 'there', 'a', 'drink', 'minimum?'], ['Are', 'you', 'working', 'today?'], ['I', 'need', 'a', 'bigger', 'challenge.'], ['Looking', 'at', 'his', 'face,', 'you', 'could', 'tell', 'that', 'he', 'was', 'annoyed.'], ["I'm", 'accustomed', 'to', 'this.'], ["She's", 'one', 'tough', 'cookie.'], ['Thanks', 'very', 'much.'], ['I', 'wonder', 'why', 'she', 'is', 'so', 'worried.'], ['We', 'considered', 'going,', 'but', 'finally', 'decided', 'against', 'it.'], ["We'll", 'go', 'when', 'it', 'quits', 'raining.'], ["I'm", 'wearing', 'sunglasses.'], ['I', 'was', 'in', 'London', 'last', 'month.'], ['He', 'is', 'good', 'at', 'soccer.'], ['Tom', "won't", 'let', 'Mary', 'do', 'anything', 'she', 'wants', 'to', 'do.'], ['I', "don't", 'know', 'her', 'address.'], ['I', 'hope', 'you', 'two', 'are', 'very', 'happy.'], ["Napoleon's", 'headquarters', 'were', 'in', 'an', 'unused', 'windmill.'], ['He', 'took', 'a', 'taxi', 'in', 'order', 'not', 'to', 'miss', 'the', 'train.'], ['Their', 'houses', 'are', 'located', 'near', 'the', 'sea.'], ['Please', 'help', 'yourself', 'to', 'the', 'salad.'], ['He', 'was', 'snoring', 'loudly', 'while', 'he', 'slept.'], ['You', "can't", 'tell', 'anyone', 'about', 'this.'], ['Let', 'Tom', 'decide.'], ['We', 'spent', 'the', 'day', 'in', 'the', 'open', 'air.'], ['She', 'saw', 'herself', 'in', 'the', 'mirror.'], ['My', 'phone', 'was', 'out', 'of', 'order.'], ['Can', 'I', 'tell', 'you', 'something', 'very', 'personal?'], ['At', 'last,', 'he', 'realized', 'his', 'error.'], ['Did', 'you', 'sew', 'this', 'by', 'hand?'], ['I', 'admit', 'it.'], ['This', 'flower', 'is', 'beautiful,', "isn't", 'it?'], ['Did', 'I', 'really', 'do', 'that?'], ['Yours', 'is', 'better.'], ['That', 'part', 'is', 'frustrating.'], ['I', "haven't", 'always', 'been', 'a', 'teacher.'], ['Tom', 'is', 'environmentally', 'conscious.'], ["I'm", 'totally', 'drunk.'], ["He's", 'a', 'bit', 'jealous.'], ['He', 'was', 'not', 'aware', 'of', 'the', 'danger.'], ['I', 'suggest', 'we', 'continue.'], ['She', 'knelt', 'beside', 'him', 'and', 'asked', 'him', 'what', 'his', 'name', 'was.'], ['How', 'did', 'I', 'get', 'here?'], ['Keep', 'looking.'], ['The', 'train', 'stopped', 'because', 'of', 'the', 'storm.'], ['Tom', 'will', 'say', 'no.'], ['He', 'has', 'been', 'sick', 'for', 'a', 'long', 'time.'], ['Tom', 'told', 'Mary', 'to', 'tell', 'the', 'truth.'], ['Thanks', 'very', 'much', 'for', 'having', 'me', 'to', 'dinner', 'the', 'other', 'night.'], ['He', 'is', 'well', 'spoken', 'of', 'by', 'everybody.'], ['I', 'know', 'that', 'I', 'can', 'do', 'more.'], ["Don't", 'put', 'the', 'cart', 'before', 'the', 'horse.'], ['The', 'neighbors', 'will', 'call', 'the', 'police', 'if', 'you', "don't", 'turn', 'the', 'music', 'down.'], ['We', "don't", 'trust', 'Tom.'], ['May', 'God', 'bless', 'you.'], ['He', 'fought', 'against', 'racial', 'discrimination.'], ['I', 'thought', 'Tom', 'did', 'a', 'nice', 'job.'], ["It's", 'not', 'real', 'money.'], ['We', 'need', 'to', 'find', 'somebody', 'who', 'can', 'help', 'us.'], ['Am', 'I', 'bothering', 'you?'], ['We', 'could', 'keep', 'it', 'a', 'secret.'], ['I', 'think', "you're", 'being', 'a', 'little', 'too', 'careful.'], ['Work', 'is', 'behind', 'schedule.'], ['He', 'had', 'the', 'gift', 'of', 'prophecy.'], ['Sadly,', 'many', 'Japanese', 'people', 'died.'], ['Tom', 'beckoned', 'me', 'to', 'come', 'in.'], ['I', "didn't", 'want', 'to', 'believe', 'it.'], ['I', 'think', 'he', 'regrets', 'having', 'divorced', 'his', 'wife.'], ['Get', 'your', 'gear.'], ['Tom', 'filled', 'the', 'bucket', 'with', 'ice.'], ['Say', 'the', 'alphabet', 'backwards.'], ['Do', 'you', 'want', 'to', 'go', 'to', 'the', 'zoo?'], ['I', 'love', 'your', 'house.'], ['People', 'often', 'refer', 'to', 'themselves', 'in', 'the', 'third', 'person', 'when', 'talking', 'to', 'children.'], ['Do', 'you', 'want', 'me', 'to', 'teach', 'you', 'some', 'swear', 'words?'], ['Everywhere', 'he', 'stopped,', 'the', 'people', 'welcomed', 'him', 'warmly.'], ['Everyone', 'is', 'silent.'], ["It's", 'garbage.'], ["I'm", 'a', 'surfer.'], ['Tom', 'hid', 'it', 'behind', 'the', 'door.'], ['I', 'just', "can't", 'understand', 'you', 'sometimes.'], ["It's", 'so', 'hot', 'outside,', 'you', 'could', 'fry', 'an', 'egg.'], ["I'm", 'going', 'to', 'study', 'French', 'next', 'semester.'], ["We're", 'sure', 'of', 'that.'], ['The', 'sea', 'was', 'calm.'], ['It', 'was', 'a', 'wonderful', 'surprise.'], ['He', 'seems', 'to', 'have', 'no', 'sense', 'of', 'humor.'], ["You're", 'right,', 'I', 'think.'], ["It's", 'difficult', 'to', 'learn', 'Greek.'], ['How', 'often', 'do', 'you', 'shave?'], ['He', 'was', 'sitting', 'there.'], ["I'm", 'not', 'an', 'only', 'child.'], ["I'll", 'be', 'on', 'my', 'feet', 'tomorrow.'], ['When', 'I', 'told', 'him', 'that,', 'he', 'got', 'furious.'], ["We're", 'housesitting.'], ['We', 'were', 'shocked', 'at', 'the', 'news', 'of', 'his', 'death.'], ["I'm", 'about', 'the', 'same', 'age', 'as', 'you.'], ['I', 'was', 'unprepared.'], ['I', 'was', 'thrown', 'out', 'of', 'the', 'house', 'with', 'everything', 'I', 'owned.'], ['He', 'has', 'a', 'cold.'], ["We're", 'sneaky.'], ['His', 'wish', 'is', 'to', 'go', 'to', 'America.'], ['She', 'despises', 'him.'], ['I', 'hear', 'a', 'phone', 'ringing.'], ['How', 'did', 'you', 'get', 'interested', 'in', 'art?'], ['I', 'usually', 'get', 'up', 'at', 'six.'], ['Tom', 'has', 'never', 'been', 'overweight.'], ['I', 'just', 'wanted', 'to', 'write', 'songs.'], ["I'm", 'sorry', 'I', 'yelled', 'at', 'you.'], ['I', 'told', 'the', 'news', 'to', 'everyone', 'I', 'met.'], ['He', 'is', 'by', 'far', 'the', 'best', 'student.'], ['Do', 'you', 'like', 'the', 'corsage?'], ['The', 'Tatoeba', 'Project,', 'which', 'can', 'be', 'found', 'online', 'at', 'tatoeba.org,', 'is', 'working', 'on', 'creating', 'a', 'large', 'database', 'of', 'example', 'sentences', 'translated', 'into', 'many', 'languages.'], ["Don't", 'forget', 'to', 'turn', 'the', 'light', 'off.'], ['I', 'think', 'he', 'has', 'enough', 'intelligence', 'to', 'understand', 'it.'], ["We're", 'not', 'invited.'], ['If', 'I', 'were', 'in', 'your', 'place,', 'I', 'would', 'not', 'do', 'so.'], ['What', 'did', 'you', 'do', 'at', 'school', 'today?'], ['He', 'is', 'always', 'complaining', 'about', 'his', 'low', 'salary.'], ['I', 'think', "that's", 'Tom.'], ['We', "can't", 'do', 'what', 'Tom', 'has', 'asked', 'us', 'to', 'do.'], ['You', "aren't", 'allowed', 'to', 'park', 'there.'], ['He', 'thinks', 'only', 'of', 'making', 'money.'], ['Nothing', 'would', 'make', 'me', 'happier', 'than', 'to', 'see', 'you', 'happy.'], ['Mom', "didn't", 'mention', 'it.'], ['When', 'did', 'you', 'begin', 'learning', 'English?'], ['Why', 'are', 'you', 'so', 'good', 'at', 'explaining', 'things?'], ['I', 'have', 'to', 'solve', 'this', 'problem.'], ['I', 'think', 'Tom', 'is', 'going', 'to', 'come', 'back.'], ['She', 'is', 'the', 'one', 'who', 'feeds', 'our', 'dog.'], ['Rice', 'is', 'the', 'chief', 'crop', 'in', 'this', 'area.'], ['She', 'is', 'good-natured.'], ['Did', 'I', 'wake', 'you', 'up?'], ['Tom', "can't", 'swim', 'very', 'well', 'yet.'], ['I', 'want', 'you', 'to', 'understand', 'this', "isn't", 'going', 'to', 'be', 'easy.'], ['Gas', 'was', 'escaping', 'from', 'a', 'crack', 'in', 'the', 'pipe.'], ['I', 'am', 'sure', 'of', 'his', 'winning', 'the', 'speech', 'contest.'], ['Do', 'we', 'know', 'you?'], ['I', 'want', 'soup.'], ['Everything', 'is', 'set.'], ["I'm", 'pretty', 'sure', "that's", "Tom's", 'goal.'], ['It', 'is', 'high', 'time', 'you', 'went', 'to', 'bed.'], ['With', 'a', 'little', 'more', 'effort,', 'he', 'would', 'have', 'succeeded.'], ['She', 'ripped', 'her', 'dress', 'on', 'a', 'branch.'], ['Tom', 'hopes', 'that', 'Mary', 'will', 'come', 'next', 'weekend.'], ['A', 'number', 'of', 'people', 'were', 'drowned.'], ['She', 'dumped', 'me.'], ["Don't", 'leave', 'them', 'alone.'], ['She', 'always', 'says', 'nice', 'things', 'about', 'him,', 'especially', 'when', "he's", 'around.'], ['How', 'is', 'that', 'possible?'], ['They', 'say', 'that', 'he', 'is', 'the', 'richest', 'person', 'in', 'the', 'world.'], ['We', 'became', 'good', 'friends.'], ["I'll", 'go', 'and', 'get', 'your', 'coat.'], ['Do', 'you', 'think', "you'll", 'stay', 'long?'], ['You', 'look', 'good', 'in', 'black.'], ['All', 'we', 'can', 'do', 'is', 'wait.'], ["I'm", 'not', 'proud', 'of', 'that.'], ['Tom', 'needs', 'to', 'tell', 'Mary', 'what', 'he', 'wants.'], ["I'm", 'almost', 'as', 'tall', 'as', 'Tom.'], ['The', 'cost', 'of', 'living', 'in', 'Tokyo', 'is', 'very', 'high.'], ['Stay', 'very', 'still.'], ['I', "didn't", 'do', 'too', 'well', 'on', "today's", 'test.'], ['We', 'have', 'to', 'slow', 'down.'], ["You'll", 'get', 'into', 'trouble.'], ["I'll", 'do', 'it', 'with', 'you.'], ['He', 'has', 'an', 'inferiority', 'complex.'], ['I', 'have', 'only', 'one', 'sister.'], ['We', 'laugh', 'a', 'lot.'], ['My', 'brother', 'has', 'died.'], ['I', 'have', 'to', 'go', 'to', 'sleep.'], ['My', 'car', 'ran', 'out', 'of', 'gas.'], ['You', 'may', 'not', 'believe', 'it,', 'but', 'it', 'is', 'nonetheless', 'true.'], ['There', 'are', 'seven', 'days', 'in', 'a', 'week.'], ['I', 'got', 'another', 'message', 'from', 'Tom', 'today.'], ['He', 'was', 'excommunicated.'], ['Come', 'the', 'day', 'after', 'tomorrow.'], ['Tom', 'put', 'the', 'coins', 'into', 'the', 'box.'], ['What', 'a', 'disaster!'], ['I', 'translated', 'the', 'poem', 'the', 'best', 'I', 'could.'], ['I', 'think', 'we', 'need', 'to', 'be', 'very', 'careful', 'not', 'to', 'hurt', "Tom's", 'feelings.'], ["Shouldn't", 'you', 'call', 'the', 'police?'], ['We', 'have', 'suppliers.'], ['Tom', 'and', 'Mary', 'value', 'their', 'privacy.'], ['If', 'Tom', 'were', 'taller,', 'he', 'could', 'open', 'the', 'door.'], ["I'm", 'trying', 'to', 'clean', 'the', 'house.'], ['I', 'was', 'too', 'tired', 'to', 'go', 'on', 'working.'], ["I'm", 'sick', 'and', 'tired', 'of', 'eating', 'zucchinis', 'every', 'day.'], ['How', 'stupid', 'of', 'me!'], ['Tom', 'lived', 'the', 'high', 'life', 'until', 'the', 'money', 'ran', 'out.'], ['Call', 'me', 'when', "it's", 'done.'], ['I', 'never', 'stop', 'thinking', 'about', 'you.'], ['He', 'moved', 'the', 'desk', 'to', 'the', 'right.'], ['I', 'own', 'a', 'yacht.'], ['Tom', 'saw', 'Mary.'], ["What's", 'the', 'good', 'news?'], ['Tom', 'came', 'by', 'himself.'], ['The', 'first', 'lesson', 'is', 'easy.'], ['I', "didn't", 'eat', 'enough.'], ['Tom', 'was', 'guilty', 'of', 'spreading', 'lies', 'about', 'Mary.'], ['He', 'looks', 'exactly', 'like', 'his', 'brother.'], ['Do', 'you', 'have', 'an', 'opinion?'], ["I'm", 'delighted', 'to', 'meet', 'you.'], ['I', "don't", 'feel', 'like', 'doing', 'anything', 'tonight.'], ['I', "don't", 'understand', 'and', "I'm", 'not', 'used', 'to', 'not', 'understanding.', 'Please', 'explain', 'it', 'once', 'more.'], ["Let's", 'not', 'do', 'anything', 'that', 'might', 'upset', 'Tom.'], ["Don't", 'give', 'it', 'a', 'second', 'thought.'], ['I', 'like', 'both', 'watching', 'and', 'playing', 'sports.'], ["You're", 'so', 'predictable.'], ['The', 'bicycle', 'is', 'mine.'], ['The', 'cat', 'was', 'basking', 'in', 'the', 'sun.'], ['I', 'also', 'wanted', 'to', 'know.'], ['Have', 'a', 'nice', 'trip.'], ['He', 'has', 'a', 'car', 'which', 'I', 'gave', 'to', 'him.'], ['The', 'rumor', 'that', 'they', 'would', 'get', 'married', 'spread', 'at', 'once.'], ['Hang', 'on.', "We'll", 'be', 'right', 'there.'], ['He', 'has', 'a', 'lot', 'of', 'books', 'on', 'history.'], ['Tom', 'wanted', 'a', 'divorce.'], ['Men', 'do', 'not', 'exist', 'in', 'this', 'world', 'to', 'become', 'rich,', 'but', 'to', 'become', 'happy.'], ['Could', 'you', 'not', 'do', 'that', 'here?'], ['I', 'see', 'nothing', 'wrong', 'with', 'this.'], ['Can', 'you', 'think', 'of', 'any', 'better', 'way', 'to', 'do', 'this?'], ['This', 'is', 'where', 'my', 'dad', 'works.'], ["I'm", 'glad', 'to', 'hear', 'that.'], ['Welcome', 'to', 'the', 'club.'], ['They', 'want', 'to', 'tell', 'you', 'their', 'story.'], ["I'd", 'like', 'to', 'hear', 'you', 'play', 'the', 'piano.'], ['I', "didn't", 'want', 'to', 'be', 'seen.'], ['Tom', 'never', 'trusted', 'Mary.'], ["I'll", 'get', 'him', 'to', 'carry', 'my', 'suitcase', 'upstairs.'], ['Stop', 'what', "you're", 'doing.'], ["What's", 'that', 'thing', 'you', 'have', 'in', 'your', 'hand?'], ['I', 'always', 'make', 'it', 'a', 'point', 'to', 'paint', 'things', 'as', 'they', 'are.'], ['Why', "didn't", 'you', 'tell', 'us', 'that?'], ['Time', 'flies.'], ['You', "don't", 'have', 'to', 'wait', 'until', 'the', 'end.'], ['I', 'asked', 'them', 'to', 'fix', 'my', 'car.'], ['Dozens', 'of', 'letters', 'are', 'awaiting', 'you.'], ['How', 'is', 'your', 'family', 'doing?'], ['It', "won't", 'hurt.'], ["It's", 'an', 'incredible', 'sight.'], ['A', 'picture', 'of', 'the', 'fugitive', 'was', 'plastered', 'all', 'over', 'the', 'newspapers.'], ['I', "don't", 'know', "what's", 'the', 'matter', 'with', 'me.'], ['How', 'can', 'you', 'be', 'sure', 'of', 'that?'], ['This', 'summer', 'resort', 'is', 'no', 'longer', 'as', 'popular', 'as', 'it', 'used', 'to', 'be.'], ['I', 'need', 'the', 'keys.'], ["You're", 'very', 'clever.'], ['He', 'followed', 'my', 'advice.'], ['I', 'am', 'not', 'equal', 'to', 'the', 'task.'], ['I', 'think', 'that', 'I', 'know', 'you.'], ['I', 'wanted', 'to', 'buy', 'you', 'something', 'nice.'], ['He', "doesn't", 'speak', 'my', 'language.'], ['I', "don't", 'think', 'I', 'have', 'what', 'it', 'takes', 'to', 'be', 'a', 'teacher.'], ['No', 'one', 'doubts', 'her', 'fitness', 'for', 'the', 'post.'], ['Do', 'you', 'have', 'a', 'pen', 'I', 'could', 'use?'], ["Don't", 'be', 'afraid', 'to', 'get', 'your', 'feet', 'wet.'], ['Are', 'you', 'aware', 'that', 'Okinawa', 'is', 'closer', 'to', 'China', 'than', 'to', 'Honshu?'], ['I', "don't", 'really', 'understand', 'why.'], ['I', "didn't", 'know', 'what', 'to', 'do', 'first.'], ['When', 'is', 'he', 'coming', 'back?'], ["I'll", 'pray', 'for', 'you.'], ['You', 'have', 'no', 'idea', 'how', 'tired', 'I', 'am', 'of', 'all', 'this', 'complaining.'], ['You', 'always', 'take', 'things', 'too', 'easy.'], ['I', 'am', 'afraid', 'to', 'jump', 'over', 'the', 'ditch.'], ['Tom', 'has', 'volunteered', 'to', 'help', 'us.'], ["It's", 'snowing', 'again.'], ['Everyone', 'always', 'asks', 'me', 'that.'], ["I'm", 'all', 'set.'], ['I', 'set', 'myself', 'realistic', 'goals.'], ['I', 'had', 'to', 'pay', 'a', 'large', 'sum', 'of', 'money', 'to', 'get', 'it', 'back.'], ['It', 'stinks.'], ['You', 'can', 'come', 'home.'], ["We're", 'incorrect.'], ['Tom', 'is', 'a', '33-year-old', 'man.'], ['Tom', 'sealed', 'the', 'room.'], ['Get', 'off', 'at', 'the', 'next', 'stop', 'and', 'take', 'a', 'bus', 'headed', 'to', 'the', 'airport.'], ['Tom', 'finally', 'decided', 'to', 'try', 'jumping', 'over', 'the', 'stream.'], ['I', 'was', 'watching.'], ['I', 'expected', 'you', 'to', 'be', 'here', 'for', 'lunch.'], ['He', 'died', 'yesterday.'], ["I'm", 'not', 'wearing', 'any', 'underwear.'], ['I', 'think', "that's", 'horrible.'], ["That's", 'why', 'I', 'sent', 'for', 'you.'], ['What', 'year', 'were', 'you', 'born?'], ['This', 'changes', 'nothing.'], ['That', 'should', 'please', 'everyone.'], ['I', 'know', "it's", 'unrealistic', 'to', 'expect', 'Tom', 'to', 'do', 'that.'], ['This', 'is', 'the', 'right', 'answer.'], ['I', 'tried', 'to', 'listen', 'to', 'him', 'carefully.'], ['You', 'need', 'sleep.'], ['You', 'have', 'a', 'great', 'imagination.'], ['Speak', 'clearly.'], ["I'm", 'sure', "you'll", 'do', 'very', 'well.'], ["That's", 'what', "I'm", 'asking', 'you', 'to', 'do.'], ['I', 'want', 'you', 'to', 'help', 'me', 'with', 'my', 'homework.'], ['Nowadays', 'children', 'do', 'not', 'play', 'outdoors.'], ['He', 'left', 'the', 'motor', 'running.'], ['I', 'hope', 'you', 'stop', 'telling', 'me', 'lies.'], ['Please', 'tell', 'everyone', "I'm", 'sorry.'], ['I', 'gave', 'my', 'seat', 'to', 'the', 'old', 'lady.'], ['It', 'seems', 'that', 'no', 'one', 'knew', 'the', 'truth.'], ['The', 'town', 'where', 'I', 'was', 'born', 'is', 'beautiful.'], ['I', 'know', 'that', 'she', "doesn't", 'know', 'who', 'I', 'am.'], ['Let', 'me', 'buy', 'you', 'a', 'drink.'], ['He', 'was', 'pleasantly', 'surprised.'], ["I'm", 'successful.'], ['Stop', 'making', 'a', 'fool', 'of', 'yourself.', 'Everyone', 'is', 'laughing', 'at', 'you.'], ['Job', 'security', 'became', 'a', 'major', 'worry.'], ['Never', 'tell', 'anyone.'], ["I'd", 'like', 'to', 'be', 'friends.'], ['If', 'you', "can't", 'come,', 'you', 'should', 'let', 'me', 'know', 'ahead', 'of', 'time.'], ["You're", 'going', 'to', 'be', 'a', 'father.'], ['A', 'mere', 'glance', 'is', 'not', 'enough', 'for', 'us', 'to', 'tell', 'one', 'from', 'the', 'other.'], ['Tom', 'scratched', 'his', 'name', 'off', 'the', 'list.'], ['Tom', 'is', 'no', 'longer', 'jealous.'], ['Company', 'attorneys', 'are', 'working', 'around', 'the', 'clock', 'to', 'complete', 'the', 'merger.'], ["You'll", 'be', 'asked', 'why', 'you', 'want', 'to', 'be', 'a', 'teacher.'], ['Put', 'it', 'back', 'where', 'you', 'found', 'it.'], ['I', 'want', 'to', 'know', 'what', 'this', 'is', 'all', 'about.'], ['What', 'do', 'you', 'base', 'your', 'theory', 'on?'], ['Ask', 'me', 'tomorrow.'], ["I'm", 'bringing', 'home', 'a', 'pizza.'], ['You', 'never', 'know', "who's", 'watching.'], ["I'd", 'be', 'delighted.'], ['Come', 'and', 'get', 'it.'], ["I'm", 'not', 'worried', 'about', 'Tom.'], ['I', 'just', 'want', 'to', 'go', 'home', 'and', 'sleep.'], ['Love', 'is', 'blinding', 'you.'], ["Don't", 'spread', 'yourself', 'too', 'thin.'], ['I', 'got', 'up', 'at', 'six-thirty', 'this', 'morning.'], ['He', 'will', 'either', 'come', 'or', 'call', 'me.'], ["I'm", 'sure', "you're", 'going', 'to', 'like', 'this.'], ["Here's", 'the', 'money', 'I', 'owe', 'you.'], ['I', 'postponed', 'the', 'event.'], ['Hold', 'the', 'ball', 'with', 'both', 'hands.'], ['My', 'English', 'teacher', 'recommended', 'that', 'I', 'read', 'these', 'books.'], ['We', 'traveled', 'all', 'over', 'the', 'country.'], ["It's", 'time', 'you', 'got', 'married.'], ['I', 'thought', 'you', 'were', 'having', 'a', 'good', 'time.'], ["We're", 'moving', 'next', 'month.'], ['Everyone', 'pretended', 'not', 'to', 'listen.'], ['It', 'was', 'exciting.'], ['I', "didn't", 'want', 'to', 'look', 'foolish.'], ['He', "isn't", 'an', 'American.'], ['I', 'was', 'born', 'here.'], ['I', 'want', 'to', 'share', 'it', 'with', 'you.'], ['Tom', 'thinks', "you're", 'cute,', 'but', "he's", 'too', 'shy', 'to', 'say', 'anything.'], ['That', 'is', 'surprising.'], ['I', 'have', 'no', 'hair', 'on', 'my', 'head.'], ['I', "don't", 'think', 'I', 'can', 'wait', 'any', 'longer.'], ['The', 'constant', 'border', 'wars', 'between', 'England', 'and', 'Scotland', 'came', 'to', 'an', 'end.'], ['I', 'would', 'like', 'to', 'visit', 'France', 'someday.'], ["I'm", 'going', 'to', 'ignore', 'that.'], ['Do', 'you', 'have', 'enough', 'money?'], ['Why', 'do', 'you', 'look', 'so', 'gloomy?'], ["Don't", 'make', 'a', 'noise.'], ["Don't", 'laugh.'], ['I', 'know', 'Tom', 'is', 'all', 'right', 'now.'], ['Why', 'are', 'you', 'here?'], ['At', 'last,', 'they', 'met', 'face', 'to', 'face.'], ["It's", 'a', 'matter', 'of', 'national', 'pride.'], ["I've", 'already', 'rescheduled', 'my', 'appointment', 'twice.'], ['I', 'just', 'want', 'to', 'be', 'your', 'friend,', 'nothing', 'more.'], ['Our', 'dreams', 'came', 'true.'], ['There', 'was', 'only', 'one', 'case', 'of', 'chicken', 'pox', 'at', 'the', 'school.'], ['I', 'said', 'that', "wasn't", 'what', 'I', 'meant.'], ['Could', 'you', 'call', 'me', 'later?'], ["I'm", 'helping', 'people', 'to', 'buy', 'things', 'online.'], ['I', 'prefer', 'the', 'black', 'one.'], ['I', 'made', 'that', 'decision.'], ['He', 'is', 'in', 'need', 'of', 'money.'], ["They're", 'speaking', 'French.'], ['I', 'stole', 'a', 'gun.'], ['You', "don't", 'look', 'Japanese.'], ["I'm", 'free!'], ['He', "doesn't", 'have', 'any', 'friends', 'to', 'play', 'with.'], ['I', 'weighed', 'it.'], ['A', 'cop', 'was', 'killed.'], ['That', 'was', 'the', 'hardest', 'thing', 'I', 'ever', 'did', 'in', 'my', 'life.'], ["Let's", 'get', 'on', 'with', 'the', 'meeting.'], ['I', "don't", 'think', 'Tom', 'can', 'deal', 'with', 'the', 'situation.'], ['The', 'employee', 'was', 'escorted', 'off', 'the', 'premises.'], ["You're", 'funny.'], ['They', 'heard', 'it', 'on', 'the', 'radio.'], ['I', 'have', 'enough', 'money', 'to', 'buy', 'it.'], ["I'm", 'no', 'longer', 'sleepy.'], ["I've", 'been', 'here', 'for', 'a', 'while.'], ["It's", 'raining', 'cats', 'and', 'dogs', 'here.'], ['The', 'risk', 'is', 'too', 'great.'], ['I', 'wanted', 'to', 'discuss', 'this', 'with', 'you', 'yesterday,', 'but', 'you', "didn't", 'seem', 'to', 'want', 'to', 'listen.'], ['She', 'turned', 'down', 'my', 'offer.'], ['I', 'have', 'lunch', 'at', 'noon.'], ['She', 'came', 'here', 'to', 'see', 'me.'], ['How', 'can', 'you', 'be', 'so', 'callous?'], ['I', 'thought', 'you', 'were', 'working.'], ['I', 'promise', "I'll", 'try.'], ["I'm", 'going', 'to', 'go', 'buy', 'a', 'ticket,', 'so', 'please', 'watch', 'my', 'bags', 'for', 'a', 'minute.'], ['Anything', "you're", 'good', 'at', 'contributes', 'to', 'happiness.'], ['I', 'know', 'that', 'I', 'can', 'trust', 'you.'], ['Tom', 'sang', 'better', 'than', 'Mary', 'did.'], ['His', 'job', 'is', 'to', 'teach', 'English.'], ['Tom', 'has', 'many', 'toys.'], ['I', "didn't", 'deserve', 'to', 'go', 'to', 'prison.'], ['They', 'admired', 'the', 'lovely', 'scenery.'], ["He's", 'three', 'years', 'older', 'than', 'her.'], ['It', 'sounded', 'easy.'], ['His', 'criticisms', 'were', 'out', 'of', 'place.'], ['I', 'asked', 'for', 'a', 'seat', 'in', 'the', 'no-smoking', 'section.'], ['Are', 'you', 'coming', 'to', 'the', 'party', 'tonight?'], ['"Whose', 'cows', 'are', 'these?"', '"They', 'are', 'my', 'grandmother\'s."'], ['I', "don't", 'know', 'what', "he'll", 'do.'], ['Send', 'me', 'a', 'postcard.'], ['We', 'want', 'to', 'have', 'a', 'large', 'family.'], ['I', 'wanted', 'to', 'come.'], ['I', 'saw', 'a', 'plane.'], ['I', 'apologize', 'for', 'my', 'rudeness.'], ['I', "didn't", 'want', 'you', 'to', 'get', 'involved.'], ['I', 'tried.'], ["It's", 'revolting.'], ['He', "doesn't", 'show', 'his', 'true', 'feelings.'], ['After', 'that,', 'he', 'went', 'home.'], ['I', "didn't", 'know', 'what', 'it', 'was', 'at', 'the', 'time.'], ['A', 'guide', 'conducted', 'the', 'visitors', 'round', 'the', 'museum.'], ['They', 'went', 'there.'], ['This', 'is', 'a', 'hard', 'job.'], ['This', 'looks', 'good.'], ['Take', 'your', 'hand', 'out', 'of', 'your', 'pocket.'], ['Just', 'tell', 'me', 'what', 'you', 'want.'], ['Tom', 'was', 'killed', 'by', 'a', 'land', 'mine.'], ["I've", 'been', 'sent', 'to', 'relieve', 'you.'], ['This', 'knife', "doesn't", 'cut', 'well.'], ['They', 'will', 'have', 'a', 'good', 'laugh', 'when', 'they', 'see', 'you', 'like', 'this.'], ['This', 'is', 'cool.'], ['I', "don't", 'know', 'if', 'I', 'should', 'stay', 'or', 'run.'], ['The', 'flowers', 'will', 'brighten', 'up', 'the', 'table.'], ['We', "can't", 'hold', 'the', 'enemy', 'off', 'much', 'longer.'], ['Will', 'you', 'do', 'it?'], ['Call', 'if', 'you', 'need', 'me.'], ['Why', 'are', 'people', 'scared', 'of', 'you?'], ['Tom', "didn't", 'know', 'who', 'Mary', 'wanted', 'to', 'give', 'the', 'bottle', 'of', 'wine', 'to.'], ['You', "can't", 'ask', 'us', 'to', 'do', 'nothing.'], ['Slip', 'on', 'your', 'shoes.'], ['He', 'became', 'the', 'company', 'president', 'when', 'he', 'was', 'thirty.'], ['She', 'is', 'not', 'ashamed', 'of', 'her', 'misconduct.'], ['I', "haven't", 'got', 'a', 'chance.'], ['The', 'shower', 'is', 'broken.'], ['He', 'drank', 'a', 'bottle', 'of', 'wine.'], ['We', "didn't", 'see', 'any', 'children', 'at', 'all.'], ['I', "can't", 'understand', 'the', 'meaning.'], ['Will', 'you', 'go', 'with', 'us?'], ['He', 'touched', 'my', 'shoulder.'], ['I', "don't", 'know', 'what', 'your', 'problem', 'is.'], ['May', 'I', 'be', 'honest?'], ['I', 'hate', 'being', 'alone', 'on', "Valentine's", 'Day.'], ['Doing', 'something', 'only', 'half-heartedly', 'is', 'the', 'worst', 'thing', 'you', 'can', 'do.'], ["What's", 'all', 'this', 'noise?'], ['Why', 'did', 'you', 'eat', 'that?'], ['Air', 'is', 'lighter', 'than', 'water.'], ['The', 'old', 'man', 'begged', 'me', 'for', 'money.'], ['All', 'of', 'a', 'sudden,', 'it', 'began', 'raining.'], ["Don't", 'leave', 'me', 'alone,', 'please.'], ['If', "you're", 'going', 'to', 'apologize,', 'you', 'should', 'do', 'it', 'right', 'away.'], ['She', 'asked', 'him', 'why', 'he', 'was', 'crying.'], ['He', 'will', 'not', 'listen', 'to', 'me.'], ['Can', 'we', 'stick', 'to', 'the', 'facts,', 'please?'], ['He', 'always', 'plays', 'well.'], ['I', "haven't", 'said', 'yes', 'yet.'], ['That', 'job', 'bores', 'me', 'to', 'death.'], ['What', "don't", 'you', 'have?'], ["It's", 'half', 'past', 'eight.'], ['The', 'pen', 'is', 'on', 'the', 'table.'], ['I', "don't", 'care', 'what', 'she', 'eats.'], ['The', 'plan', 'has', 'failed.'], ['Why', 'were', 'you', 'so', 'busy', 'yesterday?'], ['You', "shouldn't", 'pop', 'your', 'bubble', 'gum', 'in', 'class.'], ['The', 'cops', 'are', 'gone.'], ['How', 'did', 'you', 'get', 'hurt?'], ['You', "don't", 'have', 'to', 'be', 'tall', 'to', 'play', 'basketball.'], ['He', 'negotiated', 'a', 'lower', 'price', 'with', 'the', 'real', 'estate', 'agent.'], ['I', 'want', 'to', 'be', 'an', 'actor.'], ['I', 'think', 'I', 'understand', 'what', "Tom's", 'trying', 'to', 'say.'], ['I', 'thought', 'Tom', 'was', 'at', 'school.'], ['Tom', 'filled', 'out', 'the', 'form.'], ["That's", 'the', 'last', 'thing', 'I', 'would', 'do.'], ['She', 'has', 'nothing', 'to', 'do', 'with', 'that', 'affair.'], ['I', 'wonder', 'if', 'he', 'will', 'come.'], ['I', 'always', 'believe', 'you.'], ['Whatever', 'I', 'do,', 'she', 'says', 'I', 'can', 'do', 'better.'], ['Would', 'you', 'like', 'something', 'to', 'eat?'], ['Your', 'lives', 'will', 'be', 'spared', 'if', 'you', 'surrender.'], ['He', 'is', 'tall', 'and', 'handsome.'], ['I', 'want', 'to', 'try', 'something', 'else.'], ['Even', 'if', 'you', 'are', 'busy,', 'you', 'should', 'keep', 'your', 'promise.'], ['I', 'like', 'shopping', 'on', 'Ebay.'], ['I', "didn't", 'think', 'Tom', 'would', 'be', 'able', 'to', 'do', 'that.'], ['I', 'can', 'handle', 'it', 'myself.'], ['Keep', 'running.'], ['That', 'speech', 'lost', 'Tom', 'the', 'election.'], ['He', 'was', 'standing', 'there', 'with', 'a', 'vacant', 'look.'], ["You're", 'very', 'timid.'], ['Are', 'you', 'crazy?'], ['I', 'had', 'something', 'else', 'on', 'my', 'mind.'], ["It's", 'not', 'possible,', 'is', 'it?'], ['Tom', 'always', 'tries', 'to', 'do', 'what', 'he', 'thinks', 'is', 'right.'], ['This', 'is', 'very', 'exciting.'], ['You', 'are', 'gorgeous.'], ['You', "don't", 'look', 'like', 'your', 'dad.'], ['Is', 'this', 'your', 'pencil?'], ['I', 'have', 'nothing', 'to', 'do', 'today.'], ['Tom', 'and', 'Mary', 'looked', 'at', 'each', 'other,', 'and', 'then', 'suddenly', 'they', 'started', 'kissing.'], ['Here', 'we', 'are.'], ["Don't", 'overdo', 'it.'], ['I', 'think', 'we', 'can', 'manage.'], ["Don't", 'be', 'so', 'choosy.'], ['Does', 'it', 'matter', 'to', 'you?'], ['It', 'was', 'all', 'your', 'imagination.'], ['We', "should've", 'phoned', 'ahead', 'and', 'reserved', 'a', 'table.'], ['Cheese', 'is', 'easy', 'to', 'cut', 'with', 'a', 'knife.'], ['Do', 'I', 'have', 'to', 'undress?'], ['Your', 'mother', 'and', 'father', 'are', 'dead.'], ['And', 'what', 'exactly', 'were', 'you', 'doing?'], ['You', 'deserve', 'to', 'be', 'congratulated.'], ['This', 'blue', 'sweater', 'is', 'very', 'pretty.'], ['Every', 'bride', 'is', 'beautiful', 'on', 'her', 'wedding', 'day.'], ['Black', 'looks', 'good', 'on', 'you.'], ['Are', 'you', 'a', 'psychologist?'], ['What', 'should', 'you', 'do', 'if', 'you', 'are', 'bitten', 'by', 'a', 'cobra?'], ['I', 'suppose', 'you', 'want', 'me', 'to', 'help.'], ['What', 'do', 'you', 'learn', 'at', 'school?'], ['Hand', 'it', 'over.'], ['She', 'is', 'a', 'student.'], ['Tom', 'got', 'rid', 'of', 'his', 'old', 'car.'], ['Is', 'it', 'going', 'to', 'rain', 'today?'], ['He', 'may', 'have', 'told', 'a', 'lie.'], ['What', 'sorts', 'of', 'weapons', 'did', 'they', 'have?'], ['I', 'dropped', 'out', 'of', 'college.'], ['Meet', 'me', 'at', 'the', 'hotel', 'bar.'], ['Who', 'do', 'you', 'have', 'to', 'do', 'that', 'with?'], ['She', 'ignored', 'him', 'all', 'day.'], ["They'll", 'be', 'here', 'tonight.'], ["I'm", 'not', 'flexible', 'enough', 'to', 'sit', 'in', 'the', 'lotus', 'position.'], ["I'd", 'like', 'to', 'open', 'a', 'savings', 'account.'], ['Who', 'helps', 'her?'], ['The', 'nation', 'needed', 'more', 'and', 'better', 'teachers.'], ['I', 'turned', 'off', 'the', 'radio.'], ['Did', 'you', 'tell', 'everybody', 'all', 'about', 'me?'], ["Who's", 'your', 'father?'], ['I', 'just', "can't", 'resist', 'chocolate.'], ['It', 'reminds', 'me', 'of', 'my', 'childhood.'], ["You're", 'not', 'the', 'only', 'one', 'who', "doesn't", 'believe', 'Tom.'], ['Will', 'you', 'buy', 'me', 'some', 'bread,', 'please?'], ['I', 'called', 'in', 'sick', 'this', 'morning.'], ["Don't", 'talk', 'to', 'him', 'while', "he's", 'studying.'], ['How', 'did', 'you', 'get', 'out', 'of', 'your', 'room?'], ['That', 'guy', 'is', 'completely', 'nuts!'], ['I', "didn't", 'do', 'much', 'work', 'today.'], ['How', 'about', 'stopping', 'the', 'car', 'and', 'taking', 'a', 'rest?'], ["It's", 'just', 'a', 'game.'], ['I', 'know', 'Tom', 'is', 'a', 'cat', 'lover.'], ['I', 'have', 'to', 'borrow', 'some', 'money.'], ['Why', 'did', 'they', 'hire', 'you?'], ['He', 'read', 'the', 'article', 'over', 'and', 'over', 'again.'], ['He', 'struck', 'up', 'friendships', 'with', 'the', 'most', 'unlikely', 'people.'], ["We're", 'facing', 'a', 'much', 'bigger', 'problem', 'than', 'that.'], ['What', 'do', 'you', 'need', 'the', 'money', 'for?'], ['Where', 'did', 'you', 'buy', 'that', 'hat?'], ['I', 'thought', 'I', 'was', 'going', 'crazy.'], ['I', 'need', 'space.'], ['He', 'studied', 'interior', 'decoration.'], ['Tom', 'says', 'he', "doesn't", 'like', 'chocolate', 'ice', 'cream.'], ['My', 'camera', 'is', 'different', 'from', 'yours.'], ['She', 'took', 'her', 'book.'], ['He', 'attaches', 'importance', 'to', 'this', 'matter.'], ['The', 'old', 'rules', "don't", 'apply.'], ['I', 'want', 'to', 'see', 'what', "I'm", 'up', 'against.'], ['Please', 'be', 'careful.'], ['What', 'else', 'can', 'you', 'do?'], ['She', 'is', 'a', 'pretty', 'girl.'], ['I', 'want', 'to', 'cry.'], ['This', 'coat', 'fits', 'you.'], ['Tell', 'us', 'exactly', 'what', 'happened.'], ['I', 'think', "it's", 'time', 'for', 'me', 'to', 'change', 'jobs.'], ['I', 'give', 'you', 'everything', 'you', 'ask', 'for,', 'but', 'you', 'never', 'seem', 'satisfied.'], ['My', 'sister', 'and', 'I', 'went', 'to', 'the', 'castle.'], ['There', 'were', 'more', 'spectators', 'than', 'I', 'had', 'expected.'], ['Will', 'you', 'please', 'shut', 'the', 'door?'], ["I'm", 'thinking', 'of', 'the', 'plan.'], ['She', 'demanded', 'to', 'see', 'the', 'manager.'], ["We'll", 'do', 'the', 'same', 'for', 'you.'], ['The', 'rain', 'is', 'wonderful.'], ["What's", 'Tom', 'drinking?'], ['How', 'will', 'you', 'change', 'this?'], ['I', "don't", 'really', 'have', 'a', 'gun.'], ['They', 'did', 'not', 'listen.'], ["Tom's", 'died.'], ["Who's", 'ready', 'for', 'more?'], ['I', 'thought', 'you', 'were', 'older', 'than', 'me.'], ['In', 'Haiti,', 'there', 'was', 'a', 'large', 'earthquake.'], ['She', 'wrote', 'to', 'him', 'to', 'tell', 'him', 'that', 'she', "couldn't", 'come', 'to', 'visit', 'next', 'summer.'], ['Why', "won't", 'my', 'dog', 'eat', 'dog', 'food?'], ['I', 'really', 'appreciate', 'your', 'offer', 'to', 'help', 'me', 'clean', 'out', 'my', 'garage.'], ['The', 'war', 'has', 'taken', 'a', 'terrible', 'toll', 'on', 'the', 'civilian', 'population.'], ['What', 'is', 'a', 'life', 'worth', 'living?'], ['Do', 'you', 'have', 'the', 'painting?'], ['Tom', 'asked', 'Mary', 'to', 'pass', 'him', 'the', 'gravy.'], ['I', "couldn't", 'understand', 'the', 'announcement', 'that', 'was', 'just', 'made.'], ['I', 'liked', 'your', 'idea', 'and', 'adopted', 'it.'], ['They', 'basked', 'in', 'the', 'sun.'], ['Does', 'anyone', 'here', 'speak', 'Japanese?'], ['He', 'likes', 'his', 'coffee', 'black.'], ['They', 'admired', 'the', 'lovely', 'scenery.'], ['I', 'love', 'your', 'son.'], ["It's", 'your', 'only', 'chance.'], ['Tom', 'knew', 'what', 'Mary', 'was', 'supposed', 'to', 'do.'], ["That's", 'a', 'really', 'wonderful', 'plan.'], ['Do', 'you', 'think', 'anyone', 'can', 'see', 'me?'], ['Our', 'teacher', 'looks', 'very', 'young.'], ['Can', 'you', 'swim?'], ['Make', 'a', 'sentence', 'with', 'each', 'of', 'these', 'words.'], ['You', "don't", 'have', 'to', 'apologize.'], ['Are', 'you', 'busy', 'now?'], ['She', 'must', 'have', 'visited', 'England', 'last', 'summer.'], ["They're", 'all', 'thieves.'], ['I', "can't", 'blame', 'you.', 'It', 'was', 'my', 'fault.'], ["What's", 'asphalt', 'made', 'of?'], ["Let's", 'take', 'a', 'look', 'at', 'this.'], ['I', 'hate', 'cops', 'like', 'him.'], ["We're", 'not', 'old.'], ['He', 'explained', 'the', 'facts', 'at', 'length.'], ['Tom', "didn't", 'want', 'to', 'kiss', 'Mary.'], ['Can', 'you', 'still', 'remember', 'where', 'we', 'first', 'met?'], ['It', 'was', 'stupid', 'of', 'me', 'to', 'believe', 'that!'], ["Don't", 'ask', 'questions,', 'just', 'come', 'with', 'me.'], ['I', 'know', "you're", 'still', 'in', 'love', 'with', 'me.'], ["I'm", 'gradually', 'getting', 'better', 'at', 'guessing', "people's", 'ages.'], ['Steel', 'production', 'reached', 'an', 'estimated', '100', 'million', 'tons', 'last', 'year.'], ['This', 'place', 'was', 'bombed', 'during', 'the', 'war.'], ['Slaves', 'did', 'most', 'of', 'the', 'work.'], ["Tom's", 'lying.'], ['I', 'use', 'it.'], ['The', 'water', 'is', 'rising.'], ['I', 'really', 'want', 'you', 'to', 'hug', 'me.'], ['What', 'does', 'not', 'kill', 'me,', 'makes', 'me', 'stronger.'], ["I'll", 'let', 'you', 'do', 'that.'], ['Was', 'that', 'an', 'insult?'], ['My', 'skirt', 'is', 'too', 'long.'], ["You're", 'not', 'entirely', 'wrong.'], ['I', 'completely', 'forgot', 'it.'], ['If', 'your', 'feet', 'get', 'wet,', "you'll", 'catch', 'a', 'cold.'], ['I', 'will', 'get', 'you', 'a', 'bike', 'for', 'your', 'birthday.'], ['Have', 'you', 'ever', 'been', 'on', 'TV?'], ['What', 'you', 'make', 'is', 'small', 'potatoes', 'compared', 'to', 'the', "boss's", 'salary.'], ['I', 'remember', 'this', 'word.'], ['He', 'pushed', 'his', 'nose', 'against', 'the', 'window.'], ['She', 'knows', 'everything', 'about', 'cooking.'], ['Do', 'you', 'have', 'plans', 'for', 'dinner?'], ["I'm", 'all', 'done.'], ['Yes.', 'We', 'should', 'be', 'very', 'careful.'], ['Tom', 'poured', 'some', 'cereal', 'into', 'a', 'bowl.'], ["Don't", 'interrupt', 'me.'], ['I', "can't", 'really', 'describe', 'it.'], ['I', "don't", 'know', 'where', "they're", 'from.'], ['When', 'did', 'you', 'learn', 'to', 'swim?'], ['I', 'thought', 'maybe', 'that', 'would', 'be', 'enough.'], ["There's", 'always', 'a', 'first', 'time', 'for', 'everything.'], ['Thank', 'you', 'for', 'today.'], ['The', 'telephone', 'rang', 'several', 'times.'], ["He's", 'a', 'DJ.'], ["You're", 'probably', 'tired.'], ['Tom', 'is', "Mary's", 'youngest', 'son.'], ['I', 'was', 'badly', 'wounded.'], ['Is', 'it', 'an', 'action', 'movie?'], ['You', 'only', 'live', 'once.'], ['I', 'am', 'so', 'sorry.'], ['From', 'time', 'to', 'time,', 'I', 'want', 'to', 'relax', 'and', 'forget', 'everything.'], ['There', 'is', 'a', 'strong', 'bond', 'between', 'the', 'brothers.'], ['I', 'love', 'the', 'way', 'you', 'think.'], ['He', 'was', 'obviously', 'drunk.'], ['It', "doesn't", 'matter', 'to', 'us', 'if', 'you', 'take', 'a', 'photo', 'from', 'the', 'outside.'], ['Have', 'you', 'ever', 'had', 'a', 'heart', 'attack?'], ["That's", 'probably', 'safer.'], ['They', 'love', 'coffee.'], ['I', 'went', 'there', 'yesterday.'], ['Tom', 'won', 'a', 'large', 'sum', 'of', 'money.'], ["I'm", 'going', 'to', 'start', 'with', 'this', 'one.'], ['The', 'effect', 'was', 'quite', 'different', 'from', 'what', 'was', 'intended.'], ['I', 'had', 'no', 'idea', 'this', 'bracelet', 'was', 'stolen.'], ['Tom', "doesn't", 'like', 'to', 'sing.'], ["I'd", 'like', 'to', 'go', 'out', 'with', 'you.'], ['It', 'was', 'like', 'something', 'out', 'of', 'a', 'movie.'], ['If', "she'd", 'known', 'the', 'results,', "she'd", 'have', 'been', 'shocked.'], ['Why', 'do', 'you', 'want', 'to', 'be', 'a', 'nurse?'], ['She', 'forgot', 'that', 'she', 'bought', 'him', 'a', 'present.'], ['We', 'heard', 'the', 'door', 'close.'], ['Awesome!'], ['Why', "aren't", 'you', 'answering', 'me?'], ['The', 'old', 'man', 'died', 'last', 'week.'], ['I', 'helped', 'you', 'when', 'you', 'needed', 'help.'], ['This', 'should', 'surprise', 'no', 'one.'], ['Tom', 'is', 'my', 'personal', 'assistant.'], ["I'm", 'sorry', 'that', "I've", 'made', 'you', 'so', 'unhappy.'], ['I', 'know', 'exactly', 'who', 'it', 'is.'], ['Two', 'families', 'live', 'in', 'that', 'house.'], ["I'm", 'wondering', 'whether', 'to', 'take', 'on', 'that', 'job.'], ['I', 'wonder', 'how', 'many', 'people', 'saw', 'Tom', 'doing', 'that.'], ['He', 'writes', 'scripts', 'for', 'TV', 'shows.'], ['You', 'seem', 'a', 'little', 'desperate.'], ["I'm", 'too', 'tired', 'to', 'argue.'], ['Anybody', 'home?'], ['He', 'found', 'me', 'a', 'nice', 'tie.'], ["How's", 'Tom?'], ['What', 'do', 'I', 'have', 'to', 'lose?'], ['We', 'all', 'know', 'what', 'happened', 'here.'], ['I', 'like', 'you', 'as', 'a', 'friend.'], ['Do', 'your', 'own', 'job.'], ['My', 'mother', 'spends', 'a', 'lot', 'of', 'money', 'on', 'clothes.'], ['Keep', 'focused', 'on', 'your', 'work.'], ["Don't", 'let', 'go.', 'Hold', 'on', 'tight.'], ['You', 'may', 'stay', 'here', 'if', 'you', 'want', 'to.'], ['Paper', 'burns', 'quickly.'], ['Beautiful', 'day,', "isn't", 'it?'], ['Japanese', 'houses', 'are', 'built', 'of', 'wood', 'and', 'they', 'catch', 'fire', 'easily.'], ['He', 'had', 'few', 'teeth.'], ['The', 'situation', 'is', 'getting', 'worse', 'and', 'worse', 'day', 'by', 'day.'], ['I', 'was', 'going', 'to', 'work.'], ['Have', 'you', 'ever', 'seen', 'a', 'whale?'], ['Will', 'you', 'ever', 'forgive', 'me?'], ["We've", 'run', 'out', 'of', 'beer.'], ['I', 'hear', 'you', 'know', 'how', 'to', 'speak', 'French.'], ['Get', 'back', 'in', 'the', 'house.'], ['I', "don't", 'like', 'your', 'tone.'], ['He', 'died', 'before', 'the', 'ambulance', 'arrived.'], ['Bring', 'it', 'back', 'when', "you're", 'done.'], ['I', 'hate', 'school.'], ['This', 'house', 'is', 'large', 'enough', 'for', 'your', 'family', 'to', 'live', 'in.'], ['I', 'am', 'an', 'artist.'], ['I', 'made', 'them', 'myself.'], ['They', 'relaxed', 'around', 'the', 'campfire.'], ['Please', 'read', 'the', 'instructions.'], ['I', "don't", 'recall', 'you', 'saying', 'anything', 'about', 'that.'], ["It's", 'about', 'time', 'you', 'went', 'to', 'school.'], ['He', 'studies', 'American', 'history.'], ['I', "don't", 'know', 'how', 'to', 'draw', 'a', 'bird.'], ["You're", 'going', 'to', 'have', 'to', 'call', 'Tom.'], ['I', 'want', 'to', 'make', 'sure', 'that', "doesn't", 'happen.'], ['Who', 'are', 'you', 'and', 'what', 'do', 'you', 'want?'], ['They', 'did', 'not', 'give', 'up', 'hope.'], ['Flash', 'photography', 'is', 'not', 'permitted', 'beyond', 'this', 'point.'], ['I', 'thought', "you'd", 'be', 'pleased.'], ['We', 'wonder', 'why.'], ['She', 'demanded', 'to', 'see', 'the', 'manager.'], ['When', 'did', 'you', 'plant', 'these', 'trees?'], ['What', 'are', 'your', 'pet', 'peeves?'], ["That's", 'exactly', 'what', 'Tom', 'said.'], ['You', 'run', 'very', 'fast.'], ['Who', 'is', 'the', 'man', 'that', 'you', 'were', 'talking', 'with?'], ["I'm", 'rarely', 'invited', 'to', 'parties.'], ['We', 'were', 'winning.'], ["It's", 'so', 'different', 'now.'], ['Always', 'keep', 'your', 'workplace', 'organized.'], ["I'm", 'really', 'busy', 'today,', 'otherwise', 'I', 'would', 'accept.'], ['You', "don't", 'know', 'what', 'this', 'is,', 'do', 'you?'], ['Just', 'tell', 'us', 'the', 'truth.'], ['Did', 'you', 'choose', 'an', 'interesting', 'book', 'for', 'your', 'son?'], ['Can', 'I', 'rent', 'rackets?'], ['I', 'have', 'a', 'schedule', 'to', 'keep.'], ['Did', 'I', 'miss', 'the', 'turn?'], ['Tom', 'tried', 'to', 'conceal', 'the', 'truth.'], ['You', 'were', 'so', 'strong.'], ['We', 'never', 'do', 'that.'], ['Some', 'people', 'believe', 'they', 'can', 'become', 'rich', 'without', 'having', 'to', 'work.'], ['He', 'was', 'small,', 'but', 'strong.'], ['Tom', 'is', 'afraid', 'of', 'me,', "isn't", 'he?'], ['I', "don't", 'like', 'to', 'clean.'], ['Can', 'you', 'read', 'this', 'without', 'your', 'glasses?'], ['Who', 'broke', 'the', 'news', 'of', 'her', 'death', 'to', 'you?'], ['He', 'likes', 'me', 'and', 'I', 'like', 'him', 'too.'], ['He', 'is', 'earning', 'twice', 'my', 'salary.'], ['How', 'could', 'he', 'possibly', 'think', 'that', 'would', 'work?'], ['She', 'knows', 'everything.'], ['Get', 'on', 'your', 'knees.'], ['My', 'uncle', 'died', 'of', 'cancer.'], ['He', 'understands', 'her', 'problems', 'more', 'or', 'less.'], ['Tom', 'has', 'shoulder-length', 'hair', 'dyed', 'red.'], ['This', 'is', 'Italy.'], ['I', "don't", 'remember', 'anything', 'happening.'], ['A', 'considerable', 'amount', 'of', 'money', 'was', 'appropriated', 'for', 'the', 'national', 'defense.'], ['A', 'cup', 'of', 'coffee,', 'please.'], ['It', 'was', 'almost', 'funny.'], ["That's", 'all', 'I', 'care', 'about.'], ["He's", 'going', 'bald.'], ["Don't", 'believe', 'her', 'because', 'she', 'always', 'lies.'], ['Since', 'it', 'was', 'so', 'hot,', 'we', 'went', 'swimming.'], ['When', 'did', 'you', 'find', 'out', 'that', 'Tom', "didn't", 'have', 'to', 'do', 'that?'], ['I', 'never', 'dreamed', 'that', 'I', 'would', 'meet', 'her', 'again.'], ['I', 'want', 'your', 'answer', 'by', 'the', 'end', 'of', 'the', 'day.'], ['Why', 'were', 'you', 'absent', 'yesterday?'], ['I', "wasn't", 'drunk.'], ['They', 'look', 'bored.'], ['Tom', "isn't", 'your', 'brother.'], ['Tom', 'and', 'Mary', 'flew', 'to', 'Boston.'], ["I've", 'never', 'met', 'a', 'man', 'as', 'stupid', 'as', 'you.'], ['I', 'decorated', 'it.'], ['Tom', 'kicked', 'Mary.'], ['Do', 'you', 'have', 'a', 'problem?'], ['I', 'opened', 'an', 'account', 'at', 'a', 'nearby', 'bank.'], ['Does', 'Tom', 'have', 'to', 'be', 'present?'], ['I', 'still', 'have', 'a', 'job', 'to', 'do.'], ['How', 'will', 'I', 'pay', 'my', 'debts', 'now?'], ['Tom', 'thinks', 'that', 'Mary', "doesn't", 'get', 'enough', 'sleep.'], ["I'm", 'just', 'a', 'child.'], ["I'm", 'glad', "you're", 'doing', 'better.'], ['How', 'do', 'I', 'know', "you're", 'not', 'bluffing?'], ['Chances', 'are', 'the', 'bill', 'will', 'be', 'rejected.'], ['I', "don't", 'like', 'to', 'talk', 'about', 'Tom.'], ['Tom,', 'do', 'you', 'still', 'love', 'me?'], ['I', "don't", 'enjoy', 'riddles.'], ['He', "can't", 'sing', 'well.'], ['I', 'need', 'sleep.'], ['He', 'told', 'me', 'to', 'meet', 'him', 'at', 'his', 'house.'], ['I', 'noticed', 'him', 'sitting', 'with', 'his', 'back', 'against', 'the', 'wall.'], ['I', 'know', 'Tom', 'is', 'usually', 'punctual.'], ["You're", 'not', 'good', 'at', 'this.'], ["I'm", 'not', 'sure', 'I', 'have', 'enough', 'time', 'to', 'clean', 'my', 'room', 'before', 'I', 'go', 'to', 'school.'], ['He', 'balanced', 'himself', 'on', 'a', 'log.'], ['Tom', 'wondered', 'whether', 'it', 'would', 'be', 'hard', 'to', 'find', 'a', 'job', 'in', 'Boston.'], ['Bring', 'me', 'the', 'menu,', 'please.'], ['I', 'want', 'to', 'do', 'that', 'now.'], ['Tom', 'took', 'out', 'his', 'cell', 'phone', 'so', 'that', 'he', 'could', 'take', 'a', 'selfie.'], ['How', 'many', 'hours', 'of', 'sleep', 'do', 'you', 'need?'], ['There', 'really', 'is', 'no', 'comparison.'], ["It's", 'popular', 'with', 'students.'], ['He', 'has', 'left', 'already.'], ["I've", 'known', 'that', 'all', 'along.'], ['Leave', 'no', 'stone', 'unturned.'], ['Your', 'glasses', 'fell', 'on', 'the', 'floor.'], ["I'm", 'always', 'learning', 'something', 'new.'], ['They', 'agreed', 'on', 'a', 'price.'], ['The', 'spinal', 'column', 'is', 'composed', 'of', 'twenty-four', 'bones.'], ['I', "don't", 'feel', 'at', 'ease', 'here.'], ['Even', 'children', 'know', 'that.'], ['She', 'looked', 'him', 'right', 'in', 'the', 'eye.'], ['I', "couldn't", 'stand', 'the', 'cold.'], ['Look', 'at', 'the', 'price.'], ['I', 'think', 'Tom', 'is', 'ready.'], ['I', 'think', 'I', 'could', 'get', 'used', 'to', 'living', 'here.'], ["It's", 'a', 'curse.'], ["You'll", 'be', 'crying', 'before', 'long.'], ["Let's", 'worry', 'about', 'that', 'later.'], ["That's", 'a', 'really', 'shallow', 'thing', 'to', 'say.'], ['I', 'heard', 'what', 'happened', 'at', 'school.'], ['I', 'was', 'a', 'witness.'], ['I', 'was', 'on', 'time', 'for', 'dinner.'], ['Tom', 'sipped', 'some', 'tea.'], ['Do', 'you', 'know', 'what', "it's", 'called?'], ["I'm", 'alone.'], ['I', 'know', 'Tom', 'is', 'a', 'bit', 'tipsy.'], ['How', 'can', 'I', 'make', 'him', 'stop?'], ['Do', 'you', 'like', 'it', 'all?'], ['I', "don't", 'like', 'swimming', 'in', 'salt', 'water.'], ['This', 'room', 'is', 'too', 'big.'], ['They', 'kept', 'him', 'waiting', 'outside', 'for', 'a', 'long', 'time.'], ['He', 'seems', 'to', 'have', 'lived', 'in', 'Spain.'], ["Where's", 'the', 'entrance', 'to', 'the', 'museum?'], ['They', 'took', 'food', 'and', 'clothing.'], ['We', 'have', 'a', 'lot', 'of', 'earthquakes', 'in', 'Japan.'], ['My', 'mother', 'was', 'usually', 'very', 'busy.'], ["He's", 'dating', 'my', 'daughter.'], ['I', 'am', 'exhausted.'], ["It's", 'going', 'to', 'rain.', 'Look', 'at', 'those', 'dark', 'clouds.'], ['She', "doesn't", 'care', 'how', 'she', 'dresses.'], ['Turn', 'on', 'the', 'ignition.'], ["Don't", 'come', 'into', 'my', 'room.'], ['They', 'did', 'not', 'listen.'], ['You', 'know', 'what', 'they', 'say.'], ["Where's", 'your', 'school?'], ['I', 'withdrew', 'my', 'application.'], ['His', 'house', 'is', 'there', 'on', 'the', 'right.'], ['A', 'heavy', 'snow', 'fell', 'in', 'Kyoto', 'for', 'the', 'first', 'time', 'in', 'ages.'], ['Get', 'out', 'of', 'my', 'sight.'], ["I'm", 'sorry', 'that', 'I', "didn't", 'reply', 'sooner.'], ['They', 'did', 'it', 'in', 'front', 'of', 'the', 'staff.'], ['I', 'can', 'understand', 'why', 'you', "don't", 'want', 'to', 'eat', 'there.'], ["Don't", 'bother', 'to', 'call', 'me.'], ['He', 'went', 'above', 'and', 'beyond', 'the', 'call', 'of', 'duty.'], ['Forty', 'people', 'were', 'present.'], ['Why', "don't", 'you', 'sit', 'down?'], ['He', 'could', 'not', 'hold', 'back', 'his', 'tears.'], ['When', 'will', 'the', 'world', 'come', 'to', 'an', 'end?'], ["He's", 'a', 'filthy', 'liar.'], ['Can', 'you', 'read', 'that?'], ['They', "can't", 'all', 'be', 'full.'], ['I', 'fell', 'down', 'the', 'stairs', 'in', 'my', 'haste.'], ['When', 'her', 'husband', 'died,', 'she', 'felt', 'like', 'killing', 'herself.'], ['How', 'can', 'I', 'upload', 'a', 'photo', 'to', 'your', 'website?'], ['My', 'hair', 'is', 'too', 'long.'], ['There', 'are', 'people', 'who', 'are', 'afraid', 'of', 'spiders.'], ['How', 'many', 'times', 'do', 'I', 'have', 'to', 'tell', 'you', 'not', 'to', 'eat', 'candy', 'just', 'before', 'dinner?'], ['You', 'should', 'eat', 'something', 'a', 'little', 'more', 'nutritious.'], ['You', 'should', 'follow', 'his', 'advice.'], ['We', 'can', 'hear', 'the', 'dog', 'barking.'], ['I', 'thought', 'you', 'were', 'older', 'than', 'me.'], ['Could', 'you', 'find', 'a', 'room', 'for', 'my', 'sister?'], ['I', 'understand', 'how', 'angry', 'Tom', 'must', 'feel.'], ['He', 'has', 'a', 'head', 'on', 'his', 'shoulders.'], ['What', 'would', 'you', 'do,', 'if', 'you', 'lost', 'your', 'job?'], ['My', 'mother', 'died', 'when', 'I', 'was', 'a', 'child.'], ["I'm", 'glad', 'to', 'see', 'that', "you're", 'happy.'], ['Your', 'zipper', 'is', 'open.'], ['Why', 'are', 'all', 'these', 'people', 'here?'], ['Do', 'you', 'have', 'a', 'mobile', 'phone?'], ['She', 'still', 'buys', 'milk.'], ['Tom', 'practices', 'the', 'piano', 'at', 'least', 'thirty', 'minutes', 'every', 'day.'], ['I', "don't", 'know', 'why', "you're", 'all', 'so', 'upset.'], ["Don't", 'use', 'too', 'much', 'glue.'], ['You', "don't", 'look', 'like', 'your', 'dad.'], ["He's", 'a', 'carbon', 'copy', 'of', 'his', 'father.'], ['They', 'adore', 'Tom.'], ["Let's", 'sing', 'a', 'song.'], ['I', 'think', 'my', 'German', "isn't", 'very', 'good.'], ['These', 'allegations', 'are', 'false.'], ['Tom', 'is', 'an', 'architect.'], ["What's", 'the', 'good', 'of', 'having', 'a', 'car', 'if', 'you', "don't", 'drive?'], ['I', 'am', 'sure', 'of', 'his', 'success.'], ["I'm", 'making', 'breakfast', 'now.'], ['He', 'rushed', 'into', 'the', 'room', 'with', 'his', 'coat', 'on.'], ['Your', 'feet', 'will', 'lead', 'you', 'to', 'where', 'your', 'heart', 'is.'], ['It', 'is', 'difficult', 'planning', 'meals', 'for', 'so', 'many', 'people.'], ['Ubuntu', 'is', 'a', 'popular', 'Linux', 'distribution.'], ['You', 'need', 'to', 'take', 'care', 'of', 'the', 'dog.'], ['She', 'cooks', 'for', 'him', 'every', 'day,', 'but', 'he', "doesn't", 'appreciate', 'it.'], ['The', 'drug', 'problem', 'is', 'international.'], ['I', 'never', 'speak', 'French', 'anymore.'], ['You', 'were', 'very', 'busy,', "weren't", 'you?'], ['The', 'mayor', "didn't", 'like', 'what', 'the', 'journalists', 'wrote.'], ["I'm", 'single.'], ['I', 'missed', 'the', 'bus.'], ['I', 'think', 'I', 'can', 'do', 'it.'], ["Don't", 'climb', 'up', 'the', 'wall.'], ["I'm", 'just', 'a', 'little', 'dizzy.'], ['Running', 'is', 'good', 'exercise.'], ["You're", 'going', 'to', 'ruin', 'your', 'eyes.'], ['Would', 'you', 'mind', 'if', 'I', 'swam', 'in', 'your', 'pool?'], ['Tom', 'often', 'manipulates', 'people.'], ['I', 'think', 'I', 'really', 'learned', 'a', 'lot.'], ["I'll", 'be', 'seventeen', 'next', 'year.'], ['I', 'want', 'Tom', 'to', 'be', 'here', 'for', 'Christmas.'], ["I've", 'been', 'drinking', 'too', 'much', 'coffee.'], ['I', 'want', 'Tom', 'to', 'hear', 'your', 'story.'], ['Would', 'you', 'like', 'to', 'go', 'to', 'the', 'aquarium', 'with', 'me?'], ['I', 'do', 'that', 'a', 'lot.'], ['Not', 'all', 'birds', 'build', 'nests.'], ["Don't", 'hesitate', 'to', 'ask', 'your', 'teacher', 'a', 'question.'], ['His', 'body', 'was', 'covered', 'with', 'brown', 'fur.'], ['You', 'may', 'stay', 'here', 'with', 'me.'], ["I'm", 'prepared.'], ['Are', 'you', 'two', 'going', 'out', 'together?'], ["It's", 'too', 'early', 'to', 'get', 'up.'], ['I', 'just', 'wanted', 'to', 'let', 'you', 'know', 'I', 'have', 'a', 'date.'], ['A', 'dog', 'is', 'a', "man's", 'best', 'friend.'], ["I'd", 'prefer', 'a', 'window', 'seat.'], ['I', "don't", 'know', 'what', 'the', 'meeting', 'will', 'be', 'about.'], ['Your', 'French', 'is', 'improving.'], ["Don't", 'make', 'a', 'sound.'], ['I', 'just', "don't", 'want', 'you', 'to', 'get', 'hurt.'], ['Can', 'he', 'do', 'this', 'job?'], ['It', 'was', 'raining', 'so', 'hard', 'that', 'we', 'had', 'to', 'put', 'off', 'our', 'departure.'], ['She', 'is', 'certain', 'to', 'come', 'on', 'time.'], ["You're", 'contagious.'], ['The', 'day', 'is', 'almost', 'over.'], ['My', 'class', 'was', 'canceled.'], ['He', 'is', 'over', '80', 'kilos.'], ['He', 'held', 'his', 'breath', 'while', 'watching', 'the', 'match.'], ['I', "don't", 'like', 'to', 'laugh.'], ['Have', 'you', 'ever', 'ridden', 'a', 'mule?'], ['Is', 'there', 'anything', 'else', 'you', 'want', 'from', 'me?'], ['Can', 'you', 'see', 'that', 'small', 'house?'], ['Tom', 'needed', 'his', "parents'", 'approval.'], ['He', 'picked', 'up', 'a', 'mirror', 'and', 'looked', 'at', 'his', 'tongue.'], ["I'm", 'ready', 'to', 'leave', 'now.'], ['I', "don't", 'know', 'who', "you're", 'talking', 'about.'], ['Not', 'having', 'a', 'telephone', 'is', 'an', 'inconvenience.'], ["I'd", 'like', 'to', 'thank', 'you', 'for', 'coming', 'today.'], ['I', 'feel', 'funny.'], ['I', 'have', 'to', 'do', 'this', 'alone.'], ['I', 'want', 'to', 'go', 'fishing.'], ["What's", 'your', 'theory', 'on', 'what', 'happened?'], ['I', 'know', 'a', 'little', 'Spanish.'], ['What', 'are', 'you', 'hiding?'], ['How', 'do', 'you', 'use', 'this', 'camera?'], ['Is', 'there', 'anything', 'you', 'want', 'to', 'add', 'to', 'what', 'I', 'just', 'said?'], ["I'd", 'like', 'you', 'to', 'meet', 'my', 'husband.'], ['I', 'should', 'ask,', "shouldn't", 'I?'], ['It', 'went', 'off', 'smoothly.'], ['How', 'did', 'you', 'accomplish', 'all', 'this?'], ['My', 'older', 'brother', 'is', 'watching', 'TV.'], ['I', 'really', 'misjudged', 'you.'], ["We've", 'run', 'out', 'of', 'kerosene.'], ["Don't", 'repeat', 'that.'], ['I', 'hate', 'working.'], ['Tom', 'went', 'home', 'for', 'the', 'weekend.'], ['Everyone', 'likes', 'them.'], ['Is', 'anyone', 'else', 'home?'], ['Have', 'you', 'been', 'told', 'when', 'you', 'are', 'expected', 'to', 'be', 'here?'], ['I', 'want', 'you', 'to', 'take', 'this', 'medicine.'], ['Where', 'did', 'you', 'learn', 'to', 'shoot?'], ["I'll", 'be', 'in', 'the', 'attic.'], ['Maybe', 'it', 'was', 'fate.'], ['Have', 'you', 'checked', 'the', 'engine?'], ['Do', 'you', 'have', 'a', 'copy?'], ['I', 'think', 'I', 'can', 'beat', "Tom's", 'record.'], ['I', 'was', 'outraged', 'by', 'his', 'answer.'], ["I'm", 'afraid', 'the', 'rumor', 'is', 'true.'], ['I', 'have', 'to', 'do', 'it', 'by', 'myself.'], ['How', 'can', 'I', 'deactivate', 'my', 'account', 'on', 'this', 'site?'], ['I', 'enjoy', 'working', 'here.'], ["It's", 'obvious.'], ['Did', 'you', 'paint', 'this?'], ['Call', 'me', 'back.'], ['I', 'think', 'Tom', 'is', 'a', 'coward.'], ['Who', 'is', 'this', 'lady?'], ['Tom', 'came', 'back', 'from', 'Australia.'], ['We', 'have', 'enough.'], ["Tom's", 'harmless.'], ['Our', 'daughter', 'burned', 'her', 'finger', 'with', 'a', 'match.'], ['I', 'know', 'that', 'I', 'should', 'stay.'], ['Our', 'company', 'has', 'a', 'long,', 'long', 'history.'], ['This', 'is', 'extremely', 'worrying.'], ['You', 'should', 'see', 'what', 'Tom', 'can', 'do.'], ['You', "haven't", 'even', 'tried.'], ['I', 'caught', 'him', 'cheating', 'on', 'the', 'exam.'], ['She', 'gave', 'birth', 'to', 'her', 'first', 'child', 'at', 'twenty', 'years', 'old.'], ['They', 'danced', 'all', 'night', 'long.'], ["I'm", 'on', 'a', 'diet.'], ['I', 'like', 'picnics.'], ["That's", 'the', 'worst', 'thing', 'that', 'could', 'possibly', 'happen.'], ['I', 'said', 'thanks.'], ['The', 'water', 'is', 'hot.'], ['Make', 'sure', 'to', 'back', 'up', 'all', 'your', 'files.'], ['Wish', 'me', 'luck.'], ['This', 'hut', 'is', 'a', 'very', 'special', 'place.'], ['Everyone', 'was', 'glued', 'to', 'the', 'TV', 'set', 'as', 'the', 'election', 'results', 'came', 'in.'], ['You', 'are', 'taller', 'than', 'she', 'is.'], ['It', 'was', 'very', 'quick.'], ['I', 'just', 'wanted', 'to', 'listen', 'to', 'some', 'music.'], ['What', 'kind', 'of', 'funeral', 'do', 'you', 'want?'], ['I', 'just', 'think', 'you', 'should', 'be', 'more', 'careful,', "that's", 'all.'], ['You', 'need', 'to', 'stay', 'awake.'], ['The', 'strange', 'object', 'in', 'the', 'sky', 'could', 'be', 'seen', 'with', 'the', 'unaided', 'eye.'], ['Could', 'you', 'come', 'to', "tomorrow's", 'meeting?'], ['Tom', 'could', 'see', 'that', 'Mary', 'was', 'crying.'], ['I', 'want', 'you', 'to', 'grow', 'up.'], ["I'm", 'all', 'yours.'], ['Why', "didn't", 'you', 'call', 'me', 'last', 'night?'], ['What', 'do', 'you', 'have', 'in', 'your', 'bag?'], ['My', 'father', 'visited', 'my', 'uncle', 'in', 'the', 'hospital.'], ["Don't", 'you', 'know', 'his', 'name?'], ['Is', 'Tom', 'OK?'], ['What', 'do', 'you', 'mean', 'by', 'it?'], ['Please', 'take', 'your', 'time', 'before', 'deciding', 'what', 'to', 'do.'], ['I', 'have', 'a', 'feeling', 'that', 'something', 'horrible', 'is', 'about', 'to', 'happen.'], ['He', 'looks', 'just', 'like', 'a', 'skeleton.'], ['He', 'seems', 'to', 'be', 'rich.'], ['He', 'abuses', 'his', 'authority.'], ['It', 'began', 'to', 'snow.'], ['You', 'were', 'perfect.'], ['He', 'set', 'out', 'for', 'Tokyo', 'this', 'morning.'], ['Maybe', 'it', "wasn't", 'Tom.'], ['I', 'hope', "I'll", 'see', 'you', 'again.'], ['I', 'would', 'tend', 'to', 'agree', 'with', 'that.'], ['Sorry', 'about', 'the', 'mess.'], ['"Shut', 'up,"', 'he', 'whispered.'], ['Stop', 'playing', 'hard', 'to', 'get.'], ['I', 'thought', 'you', 'had', 'homework.'], ['Delicious', 'refreshments', 'were', 'served.'], ['Everyone', 'could', 'easily', 'see', 'his', 'disappointment.'], ['Where', 'are', 'your', 'grandsons?'], ['His', "child's", 'life', 'is', 'in', 'danger.'], ['Close', 'your', 'eyes.'], ['Will', 'you', 'try', 'to', 'play', 'the', 'trumpet?'], ['He', 'was', 'ignorant', 'of', 'the', 'fact.'], ['The', 'vegetation', 'was', 'thick', 'and', 'lush.'], ['I', "don't", 'want', 'you', 'to', 'go', 'away.'], ['Every', 'student', 'of', 'biology,', 'anatomy,', 'anthropology,', 'ethnology', 'or', 'psychology', 'is', 'familiar', 'with', 'these', 'facts.'], ['The', 'man', 'who', 'came', 'to', 'visit', 'you', "didn't", 'say', 'who', 'he', 'was.'], ["They'll", 'take', 'care', 'of', 'Tom.'], ['You', 'know', 'that', 'better', 'than', 'I', 'do.'], ['What', 'did', 'he', 'do', 'yesterday?'], ['How', 'could', 'I', 'refuse?'], ["Let's", 'sit', 'on', 'the', 'grass.'], ['I', 'need', 'protection.'], ['He', 'hit', 'a', 'ball', 'with', 'the', 'bat.'], ['I', 'appreciated', 'it.'], ["I'm", 'happy', 'enough.'], ["She's", 'waiting', 'for', 'you', 'at', 'home.'], ['Do', 'you', 'live', 'around', 'here?'], ['Tom', "doesn't", 'know', 'what', 'Mary', 'wants', 'to', 'eat', 'for', 'dinner.'], ['We', 'understand', 'that', 'completely.'], ['How', 'did', 'you', 'learn', 'about', 'that', 'news?'], ['It', 'was', 'not', 'very', 'cold', 'yesterday.'], ['This', 'is', 'the', 'guest', 'room.'], ['Tell', 'Tom', "I'll", 'be', 'there', 'as', 'soon', 'as', 'I', 'can.'], ['Some', 'days', 'seem', 'to', 'just', 'drag', 'on', 'and', 'last', 'forever.'], ['Where', 'did', 'the', 'money', 'really', 'come', 'from?'], ['He', 'admitted', 'his', 'mistakes.'], ['What', 'does', 'that', 'have', 'to', 'do', 'with', 'me?'], ['Lay', 'it', 'on', 'the', 'table.'], ['Are', 'you', 'at', 'work?'], ['Do', 'you', 'really', 'want', 'to', 'win?'], ['Keep', 'a', 'cool', 'head.'], ['Stop', 'talking.'], ['You', 'should', 'return', 'what', 'you', 'borrow.'], ['It', 'takes', 'a', 'thief', 'to', 'catch', 'a', 'thief.'], ["We're", 'going', 'down.'], ['These', 'are', 'difficult', 'questions.'], ['I', 'have', 'no', 'time', 'to', 'explain', 'this', 'in', 'detail.'], ['Will', 'you', 'help', 'me', 'with', 'my', 'French', 'homework?'], ['Is', 'that', 'your', 'cat?'], ['Are', 'there', 'any', 'bananas?'], ['I', 'had', 'to', 'do', 'everything', 'on', 'my', 'own.'], ["I'll", 'stay', 'home', 'tomorrow.'], ["I'd", 'like', 'to', 'sit', 'here', 'for', 'a', 'while.'], ['Zero', 'comes', 'before', 'one.'], ['You', 'always', 'said', 'you', 'wanted', 'to', 'become', 'a', 'scientist.', 'Why', "didn't", 'you?'], ['Is', 'there', 'anybody', 'here', 'you', "don't", 'know?'], ['Everyone', 'ate', 'the', 'same', 'thing.'], ['Rwandan', 'rebels', 'are', 'pushing', 'their', 'offensive', 'south', 'as', 'fighting', 'continues', 'in', 'the', 'capital', 'Kigali.'], ["I'd", 'like', 'a', 'raise.'], ['You', 'must', 'control', 'yourself.'], ['She', 'called', 'him', 'a', 'fool.'], ['What', 'did', 'you', 'do', 'with', 'the', 'camera?'], ['I', "don't", 'want', 'you', 'to', 'be', 'hurt.'], ['She', 'is', 'completely', 'deaf', 'in', 'her', 'left', 'ear.'], ['She', 'was', 'satisfied', 'with', 'the', 'result.'], ['He', 'ran', 'away', 'when', 'he', 'saw', 'me.'], ['I', 'have', 'enough', 'money', 'to', 'buy', 'it.'], ['What', 'am', 'I', 'supposed', 'to', 'tell', 'Tom', 'now?'], ['I', 'talked', 'to', 'Tom', 'and', "he's", 'OK.'], ["I'm", 'spontaneous.'], ['Take', 'a', 'wild', 'guess.'], ['Bring', 'your', 'student', 'ID!'], ["I'm", 'leaving.'], ['He', 'stood', 'up', 'and', 'took', 'a', 'deep', 'breath.'], ['How', 'do', 'you', 'heat', 'the', 'house?'], ['Tom', 'only', 'listens', 'to', 'me.'], ["It's", 'brand', 'new.'], ['That', 'may', 'not', 'be', 'necessary.'], ['He', 'offered', 'his', 'seat', 'to', 'an', 'old', 'woman.'], ['I', 'found', 'it', 'necessary', 'to', 'ask', 'for', 'help.'], ['Is', 'it', 'important?'], ['This', 'is', 'cheap.'], ['Can', 'you', 'spare', 'a', 'buck?'], ['They', 'were', 'different.'], ["I'd", 'like', 'to', 'stay', 'here', 'for', 'a', 'few', 'more', 'days.'], ['I', 'bought', 'it', 'yesterday.'], ['I', 'thought', "it'd", 'get', 'easier.'], ['I', 'did', 'not', 'understand', 'him', 'at', 'all.'], ['When', 'the', 'last', 'customer', 'leaves,', 'we', 'close', 'the', 'doors.'], ['What', 'difference', 'does', 'it', 'make', 'if', 'people', 'are', 'looking', 'at', 'us?'], ['I', 'sighed.'], ["I'm", 'planning', 'to', 'stay', 'at', 'the', 'Hillside', 'Hotel.'], ['I', 'had', 'to', 'work', 'last', 'weekend.'], ['He', 'is', 'very', 'talented.'], ['I', 'think', 'he', 'likes', 'you.'], ['I', 'beg', 'your', 'pardon?'], ['We', 'cried', 'together.'], ['It', 'took', 'him', 'several', 'weeks', 'to', 'recover', 'from', 'the', 'shock.'], ['Are', 'you', 'sure', "you're", 'warm', 'enough?'], ['I', "don't", 'want', 'to', 'live', 'by', 'myself.'], ['I', "can't", 'tell', 'you', 'what', 'to', 'do.'], ['I', "don't", 'deserve', 'to', 'live.'], ["Nobody's", 'in', 'the', 'classroom', 'now.'], ['Can', 'you', 'drive', 'a', 'manual', 'transmission?'], ['Look', 'at', 'that', 'red', 'building.'], ['We', "didn't", 'need', 'to', 'call', 'the', 'doctor.'], ['I', 'never', 'drink', 'alone.'], ['Roses', 'smell', 'sweet.'], ['Why', 'did', 'you', 'side', 'with', 'him', 'instead', 'of', 'me?'], ['My', 'son', 'still', 'believes', 'in', 'Santa', 'Claus.'], ['The', 'house', 'is', 'said', 'to', 'be', 'haunted.'], ['The', 'world', 'seems', 'to', 'get', 'smaller.'], ['They', 'make', 'a', 'great', 'team.'], ['Stop', 'being', 'so', 'nice', 'to', 'me.'], ['I', 'know', 'Tom', 'is', 'done.'], ['This', 'text', 'is', 'hard', 'to', 'read.'], ['Put', 'on', 'your', 'pajamas', 'and', 'go', 'to', 'bed.'], ['A', 'small', 'gain', 'is', 'better', 'than', 'a', 'great', 'loss.'], ['Tom', 'has', 'been', 'dating', 'Mary', 'for', 'about', 'three', 'years.'], ['He', 'likes', 'taking', 'walks.'], ['What', 'about', 'his', 'girlfriend?'], ["I'd", 'like', 'to', 'talk', 'with', 'you.'], ['I', 'just', 'want', 'to', 'say', "I'm", 'glad', "you're", 'here.'], ['I', 'always', 'catch', 'colds', 'in', 'the', 'winter.'], ['How', 'long', 'do', 'I', 'have', 'to', 'wait', 'for', 'delivery?'], ['What', 'do', 'you', 'like', 'to', 'cook', 'the', 'most?'], ["I've", 'never', 'seen', 'a', 'whale', 'that', 'big.'], ['We', 'always', 'have', 'a', 'choice.'], ['Let', 'us', 'take', 'care', 'of', 'this.'], ['The', 'cops', 'are', 'searching', 'for', 'the', 'missing', 'documents.'], ['She', 'forgot', 'that', 'she', 'bought', 'him', 'a', 'present.'], ['The', 'Jacksons', 'have', 'three', 'dogs', 'and', 'three', 'cats.'], ["I've", 'been', 'in', 'trouble', 'before.'], ['I', 'got', 'lucky.'], ['She', 'was', 'deceived', 'by', 'a', 'friend.'], ['Most', 'of', 'these', 'are', "Tom's."], ['I', "don't", 'like', 'goat', 'cheese.'], ['Father', 'bought', 'me', 'a', 'motorcycle.'], ['You', 'said', 'you', "didn't", 'care.'], ['Your', "hair's", 'beautiful.'], ["It's", 'too', 'late', 'to', 'shut', 'the', 'stable', 'door', 'after', 'the', 'horse', 'has', 'bolted.'], ['Do', 'you', 'like', 'it?'], ['She', 'used', 'to', 'pray', 'before', 'going', 'to', 'bed.'], ['I', 'enjoy', 'his', 'company.'], ["Don't", 'attack', 'me.'], ['It', 'would', 'be', 'counter-productive', 'to', 'do', 'such', 'a', 'thing.'], ['World', 'War', 'I', 'broke', 'out', 'in', '1914.'], ['I', 'saw', 'them.'], ['I', "wasn't", 'able', 'to', 'find', 'Tom', 'anywhere.'], ['He', 'was', 'given', 'the', 'benefit', 'of', 'the', 'doubt.'], ['Put', 'your', 'hands', 'in', 'the', 'air.'], ['I', 'want', 'to', 'stay', 'with', 'you.'], ['You', 'really', 'should', 'buy', 'a', 'new', 'car.'], ['Be', 'very', 'careful.'], ["Don't", 'say', 'a', 'word', 'to', 'me.'], ['Price', 'is', 'not', 'an', 'issue.'], ['That', 'ended', 'better', 'than', 'I', 'expected.'], ['The', 'lovers', 'exchanged', 'numerous', 'letters.'], ['Without', 'further', 'ado,', 'let', 'me', 'introduce', "tonight's", 'guest.'], ["I'll", 'be', 'with', 'you', 'in', 'a', 'minute.'], ['The', 'power', 'plant', 'supplies', 'the', 'remote', 'district', 'with', 'electricity.'], ["They're", 'armed.'], ['I', 'feel', 'terrible.'], ['I', "don't", 'know', 'why', 'they', 'do', 'it.'], ['I', 'want', 'my', 'bicycle', 'back.'], ["That's", 'a', 'question', "I've", 'asked', 'myself.'], ["Let's", 'get', 'some', 'food.'], ["I'm", 'not', 'comfortable', 'with', 'this.'], ['The', 'magician', 'made', 'birds', 'appear', 'and', 'disappear.'], ['How', 'are', 'things', 'at', 'work?'], ['I', 'could', 'do', 'nothing.'], ["I've", 'got', 'a', 'plastic', 'cup.'], ['Strictly', 'speaking,', 'the', 'tomato', 'is', 'a', 'fruit.'], ['Show', 'me', 'another', 'watch.'], ['Neither', 'of', 'us', 'can', 'speak', 'French.'], ['Tom', 'lives', 'in', 'a', 'cabin', 'in', 'the', 'woods.'], ['Mary', 'is', "Tom's", 'girlfriend.'], ["What's", 'the', 'most', 'interesting', 'place', "you've", 'ever', 'visited?'], ['They', "didn't", 'act', 'quickly.'], ["I'm", 'at', 'Tokyo', 'Station', 'now.'], ['We', 'want', 'what', 'we', 'want.'], ['I', 'think', 'the', 'time', 'is', 'right', 'to', 'introduce', 'this', 'product.'], ['Absolutely', 'nothing', 'is', 'permanent', 'in', 'life.'], ["I'm", 'proud', 'of', 'the', 'work', "I've", 'done', 'here.'], ['I', 'want', 'you', 'to', 'take', 'care', 'of', 'Tom', 'for', 'a', 'little', 'while.'], ["Today's", 'your', 'birthday,', "isn't", 'it?'], ['What', 'has', 'become', 'of', 'him?'], ['I', 'should', 'be', 'happy.'], ['"Says', 'who?"', '"Says', 'me."'], ['Tell', 'Tom', 'that', 'I', "don't", 'need', 'his', 'help.'], ['I', 'have', 'to', 'learn', 'many', 'words', 'and', 'phrases', 'by', 'heart.'], ['The', 'child', 'is', 'sleeping', 'on', 'his', 'stomach.'], ['Are', 'you', 'a', 'registered', 'voter?'], ['Why', 'was', 'I', 'the', 'only', 'one', 'asking', 'questions?'], ['What', 'relieves', 'the', 'pain?'], ['I', 'feel', 'like', 'my', 'head', 'is', 'going', 'to', 'explode.'], ['I', 'think', 'they', 'like', 'you.'], ['What', 'a', 'mess!'], ['Tom', 'is', 'a', 'well-known', 'singer.'], ['I', 'just', "don't", 'want', 'you', 'to', 'get', 'upset.'], ['Why', 'did', 'you', 'listen', 'to', 'them?'], ['I', 'expect', 'him', 'to', 'help', 'me.'], ['I', 'think', 'my', 'job', 'is', 'pointless.'], ["They're", 'not', 'happy.'], ["We're", 'on', 'the', 'right', 'floor.'], ['Maybe', 'we', 'should', 'call', 'the', 'whole', 'thing', 'off.'], ["He's", 'a', 'slowpoke.'], ['They', 'look', 'confused.'], ["I've", 'decided', 'to', 'quit', 'my', 'job', 'at', 'the', 'end', 'of', 'this', 'month.'], ['Have', 'a', 'nice', 'vacation.'], ["Who's", 'that', 'cute', 'guy', 'I', 'saw', 'you', 'with', 'yesterday?'], ['I', "didn't", 'expect', 'to', 'see', 'you', 'at', 'a', 'place', 'like', 'this.'], ['Could', 'you', 'please', 'tell', 'me', 'again', 'what', 'school', 'you', 'graduated', 'from?'], ['Tom', 'had', 'a', 'five', "o'clock", 'shadow.'], ["It's", 'a', 'nice', 'town.'], ['She', 'is', 'collecting', 'material', 'for', 'a', 'book.'], ['Atoms', 'are', 'in', 'everything.'], ["I'd", 'like', 'to', 'take', 'advantage', 'of', 'this', 'opportunity.'], ['He', 'will', 'take', 'over', 'the', 'business', 'when', 'his', 'father', 'retires.'], ['I', 'would', 'like', 'to', 'kiss', 'you.'], ['In', 'Japan,', 'bowing', 'is', 'common', 'courtesy.'], ['I', "don't", 'know', 'what', "I'd", 'do', 'without', 'you.'], ["That's", 'all', 'we', 'can', 'ask.'], ["He's", 'not', 'a', 'bad', 'boy.'], ['She', 'hit', 'me,', 'not', 'him.'], ['The', 'wedding', 'will', 'be', 'held', 'in', 'a', '17th', 'century', 'church.'], ['She', 'failed', 'every', 'time', 'she', 'tried.'], ['Do', 'you', 'want', 'some', 'help?'], ['You', 'were', 'always', 'very', 'kind.'], ['I', 'was', 'fired', 'last', 'week.'], ['He', 'has', 'brought', 'shame', 'upon', 'his', 'family.'], ['Hey', 'man,', 'take', 'it', 'easy.', "I'm", 'just', 'messing', 'with', 'you.'], ['What', 'should', 'we', 'buy', 'with', 'this', 'money?'], ["Don't", 'forget', 'to', 'bring', 'your', 'student', 'ID.'], ['By', 'the', 'time', 'he', 'retires,', 'my', 'father', 'will', 'have', 'worked', 'for', 'almost', 'thirty', 'years.'], ['That', 'twenty-kilometer', 'run', 'really', 'wiped', 'me', 'out.'], ['I', 'know', 'it', 'by', 'heart.'], ["Aren't", 'you', 'annoyed', 'by', 'that?'], ['I', 'still', "haven't", 'learned', 'to', 'drive', 'a', 'car.'], ["Don't", 'worry.', "We'll", 'figure', 'everything', 'out.'], ["I'd", 'like', 'to', 'get', 'off', 'at', 'the', 'next', 'stop.'], ["You're", 'worried,', "aren't", 'you?'], ["Don't", 'make', 'me', 'do', 'it', 'again.'], ['I', 'accept', 'your', 'offer.'], ['I', "can't", 'believe', 'that', 'actually', 'happened.'], ['I', "can't", 'let', 'you', 'go', 'in', 'there', 'alone.'], ["I'd", 'like', 'you', 'to', 'wear', 'this.'], ['Tom', 'is', 'going', 'to', 'have', 'a', 'good', 'time,', "I'm", 'sure.'], ['You', 'seem', 'a', 'little', 'nervous.'], ['I', 'thought', 'your', 'parents', 'liked', 'me.'], ['We', 'know', 'that', "you're", 'sick.'], ['I', 'just', 'wanted', 'a', 'shoulder', 'to', 'cry', 'on.'], ['I', 'went', 'to', 'my', 'bedroom', 'and', 'cried.'], ['All', 'the', 'money', 'was', 'gone.'], ['Tom', 'stopped', 'reading', 'for', 'a', 'moment.'], ['How', 'do', 'you', 'not', 'understand?'], ['I', "didn't", 'really', 'think', 'it', 'would', 'happen.'], ['Do', 'you', 'want', 'a', 'banana?'], ['I', 'know', 'exactly', 'how', 'it', 'was.'], ['We', 'kept', 'them', 'quiet.'], ['Could', 'I', 'help', 'you?'], ['He', 'studied', 'hard.'], ['This', 'is', 'a', 'miracle.'], ['There', 'was', 'a', 'cat', 'on', 'the', 'table.'], ['She', 'looked', 'at', 'a', 'few', 'dresses', 'and', 'picked', 'the', 'most', 'expensive', 'one.'], ['She', 'watched', 'him', 'draw', 'a', 'picture.'], ['I', 'like', 'these', 'chairs.'], ['The', 'wind', 'is', 'blowing', 'from', 'the', 'north.'], ['I', 'figured', 'a', 'change', 'of', 'scenery', 'might', 'do', 'us', 'good.'], ['Honesty', 'is', 'not', 'always', 'the', 'best', 'policy.'], ['The', 'food', 'is', 'cold.'], ['I', "don't", 'know', 'if', 'they', 'still', 'live', 'there.'], ['They', 'have', 'plenty', 'of', 'money.'], ["I'll", 'mow', 'the', 'lawn', 'tomorrow', 'if', "it's", 'not', 'raining.'], ['She', 'complained', 'of', 'a', 'headache.'], ["Don't", 'forget', 'to', 'turn', 'off', 'the', 'gas', 'before', 'going', 'out.'], ["You're", 'very', 'resourceful.'], ['We', 'all', 'want', 'to', 'be', 'desired.'], ['I', "don't", 'know', 'what', 'I', 'owe', 'you.'], ['Would', 'you', 'like', 'a', 'newspaper', 'or', 'magazine?'], ['I', 'was', 'wondering', 'if', 'I', 'could', 'take', 'a', 'vacation', 'next', 'week.'], ['You', "don't", 'seem', 'too', 'worried.'], ['Please', 'get', 'here', 'at', 'least', 'fifteen', 'minutes', 'before', 'the', 'meeting', 'starts.'], ['They', 'worked', 'jointly', 'on', 'this', 'project.'], ['I', 'had', 'a', 'good', 'coach.'], ["Shouldn't", 'you', 'be', 'telling', 'us', 'that?'], ['The', 'table', 'in', 'that', 'room', 'is', 'very', 'nice.'], ["I'm", 'not', 'going', 'to', 'argue', 'with', 'you.'], ["We'll", 'try', 'to', 'get', 'there', 'as', 'soon', 'as', 'possible.'], ['I', 'got', 'a', 'bonus.'], ['He', 'came', 'back', 'two', 'days', 'later.'], ['He', 'is', 'enrolled', 'at', 'that', 'university.'], ['You', 'still', 'have', 'a', 'lot', 'to', 'learn', 'about', 'women.'], ['I', 'have', 'to', 'talk', 'to', 'somebody.'], ['I', "can't", 'believe', 'you', 'did', 'this', 'by', 'yourself.'], ['What', 'are', 'you', 'getting', 'so', 'upset', 'about?'], ['I', 'went', 'by', 'bus', 'as', 'far', 'as', 'London.'], ['They', 'have', 'come.'], ['His', 'crime', 'deserved', 'the', 'death', 'penalty.'], ['This', 'tea', 'is', 'too', 'sweet', 'for', 'me.'], ['California', 'and', 'Nevada', 'border', 'on', 'each', 'other.'], ['I', 'want', 'you', 'to', 'find', 'out.'], ['I', 'want', 'to', 'study', 'German.'], ['You', "can't", 'give', 'up,', 'Tom.'], ['He', 'was', 'deprived', 'of', 'his', 'civil', 'rights.'], ['Thank', 'you', 'for', 'this', 'report.'], ['I', 'will', 'not', 'be', 'defeated.'], ['I', "can't", 'give', 'you', 'the', 'answer', 'today.'], ['He', 'had', 'a', 'book', 'in', 'his', 'hand.'], ['Remain', 'seated,', 'please.'], ['Our', 'school', 'has', 'about', 'one', 'thousand', 'students.'], ['Perhaps', 'Tom', "should've", 'done', 'that.'], ['They', 'set', 'a', 'new', 'record', 'for', 'the', 'longest', 'kiss.'], ['I', 'know', 'how', 'busy', 'you', 'are.'], ['Tom', 'is', 'always', 'lying.'], ["I'm", 'on', 'duty.'], ['Can', 'eating', 'just', 'vegetables', 'help', 'you', 'lose', 'weight?'], ['We', 'carried', 'out', 'that', 'plan.'], ["Don't", 'lie', 'to', 'me.'], ['We', 'met', 'a', 'few', 'weeks', 'ago.'], ['Can', 'I', 'have', 'something', 'to', 'eat?'], ['Start', 'the', 'car.'], ['Tom', 'is', 'overemotional.'], ['My', 'dog', 'has', 'fleas.'], ['Why', 'did', 'you', 'change', 'your', 'mind?'], ['I', 'just', "don't", 'want', 'to', 'fight', 'with', 'you.'], ["That's", 'a', 'good', 'approach.'], ['Be', 'nicer', 'to', 'your', 'brother.'], ['The', 'dictionary', 'on', 'the', 'desk', 'is', "Tom's."], ['He', 'is', 'afraid', 'that', 'he', 'will', 'die.'], ['Answer', 'at', 'once', 'when', 'spoken', 'to.'], ['Get', 'in', 'touch', 'with', 'me', 'as', 'soon', 'as', 'you', 'arrive', 'here.'], ['They', 'met', 'each', 'other', 'halfway.'], ['We', 'have', 'been', 'waiting', 'here', 'for', 'hours.'], ['She', "doesn't", 'hate', 'him.', 'In', 'fact,', 'she', 'loves', 'him.'], ['Tom', 'no', 'longer', 'trusts', 'anyone.'], ['He', 'shall', 'die.'], ['A', 'girl', 'phoned', 'me.'], ['She', 'was', 'too', 'tired', 'to', 'work.'], ['We', 'agreed', 'among', 'ourselves.'], ['I', 'want', 'to', 'show', 'you', 'something', "I've", 'been', 'working', 'on.'], ['She', "doesn't", 'have', 'as', 'much', 'patience', 'as', 'you', 'do.'], ['I', 'confused', 'her', 'with', 'her', 'sister.'], ['You', 'may', 'as', 'well', 'tell', 'me', 'the', 'truth.'], ['I', 'have', 'to', 'go', 'to', 'the', 'office.'], ['I', 'was', 'sorry.'], ['Tom', 'sipped', 'his', 'coffee.'], ['Your', 'ideas', 'are', 'different', 'from', 'mine.'], ['Tom', 'usually', 'plays', 'a', 'drum', 'solo', 'at', 'least', 'once', 'every', 'time', 'his', 'band', 'gives', 'a', 'concert.'], ['I', 'met', 'an', 'old', 'man', 'who', 'says', 'that', "he's", 'never', 'eaten', 'at', 'a', 'restaurant', 'in', 'his', 'whole', 'life.'], ['I', 'think', 'time', 'will', 'solve', 'the', 'problem.'], ['I', 'want', 'to', 'thank', 'you', 'for', 'helping', 'me.'], ['His', 'jokes', 'had', 'us', 'in', 'stitches.'], ['Could', 'we', 'have', 'a', 'minute', 'of', 'silence?'], ['Tom', 'looks', 'very', 'bored.'], ['Keep', 'an', 'eye', 'on', 'the', 'girls.'], ['I', 'saw', 'a', 'light', 'far', 'away.'], ['My', 'father', 'works', 'in', 'a', 'factory.'], ['I', "didn't", 'want', 'anyone', 'to', 'know', 'I', 'was', 'here.'], ["There's", 'a', 'table.'], ['I', "can't", 'stand', 'it', 'any', 'longer.'], ['My', 'girlfriend', "doesn't", 'like', 'scary', 'movies.'], ["I'd", 'like', 'to', 'spend', 'more', 'time', 'with', 'you.'], ['Does', 'this', 'thing', 'actually', 'work?'], ['She', 'gives', 'him', 'the', 'creeps.'], ["Let's", 'talk', 'about', 'your', 'family.'], ['I', "don't", 'believe', 'you.'], ['Do', 'I', 'look', 'pale', 'to', 'you?'], ["You're", 'invited.'], ["I'm", 'surprised', 'that', 'I', "don't", 'have', 'to', 'do', 'what', 'you', 'have', 'to', 'do.'], ["I've", 'messed', 'up.'], ['Tom', 'bought', 'three', 'bottles', 'of', 'red', 'wine.'], ['This', "doesn't", 'happen', 'often.'], ['I', 'just', "don't", 'want', 'your', 'dog', 'in', 'my', 'house.'], ['Why', 'do', 'you', 'hate', 'me', 'so', 'much?'], ['You', 'had', 'no', 'choice.'], ['I', 'loved', 'that.'], ["I've", 'made', 'a', 'couple', 'of', 'friends', 'here.'], ['Words', 'express', 'thoughts.'], ['Cars', 'arrived', 'there', 'one', 'after', 'another.'], ['His', 'suggestion', 'is', 'worth', 'considering.'], ['He', 'regained', 'consciousness', 'and', 'was', 'able', 'to', 'talk.'], ['Tom', 'felt', 'ill', 'at', 'ease.'], ['They', 'had', 'been', 'thinking', 'about', 'it', 'for', 'some', 'time.'], ['Tom', 'was', 'brokenhearted.'], ['Did', 'you', 'call', 'the', 'police?'], ['I', 'noticed', 'you', "weren't", 'at', 'home', 'last', 'night.'], ['His', 'name', 'is', 'mud.'], ['I', 'still', 'have', 'to', 'finish', 'painting', 'the', 'fence.'], ['I', 'wanted', 'to', 'know', 'why', 'you', "didn't", 'come', 'yesterday.'], ['The', 'novel', 'takes', 'place', 'in', 'Victorian', 'England.'], ['Come', 'quickly!'], ['Your', 'phone', 'is', 'ringing', 'again.'], ['That', 'is', 'no', 'business', 'of', 'his.'], ['Why', "didn't", 'you', 'call', 'me', 'last', 'night?'], ['They', 'said', "they're", 'thirsty.'], ['I', 'should', 'have', 'known', 'better', 'than', 'to', 'call', 'him.'], ['I', 'was', 'incredibly', 'bored.'], ['We', 'heard', 'the', 'door', 'shut.'], ['You', "shouldn't", 'have', 'gone', 'fishing', 'today.'], ['See', 'if', 'my', 'answer', 'is', 'correct.'], ['I', 'found', 'a', 'buyer', 'for', 'your', 'house.'], ['I', 'think', "it's", 'important', 'to', 'keep', 'a', 'promise.'], ['She', 'must', 'have', 'told', 'a', 'lie.'], ['Snacking', 'between', 'meals', 'is', 'a', 'bad', 'habit.'], ['Do', 'you', 'find', 'the', 'work', 'too', 'hard?'], ['This', 'is', 'a', 'recipe', 'for', 'disaster.'], ['We', 'all', 'have', 'our', 'secrets.'], ['I', 'feel', 'like', "I've", 'known', 'you', 'forever.'], ['I', 'arranged', 'for', 'a', 'car', 'to', 'meet', 'you', 'at', 'the', 'airport.'], ['It', 'was', 'very', 'cold.'], ['Being', 'handsome', 'also', 'has', 'its', 'downside.'], ['I', "should've", 'asked.'], ["I'm", 'pretty', 'sure', 'that', 'Tom', "doesn't", 'know', 'Mary.'], ['You', "didn't", 'need', 'to', 'tell', 'me', 'that.'], ['He', 'went', 'traveling', 'in', 'search', 'of', 'adventure.'], ['What', 'kinds', 'of', 'beers', 'do', 'you', 'have?'], ['I', 'want', 'to', 'eat', 'a', 'steak.'], ['Why', 'are', 'we', 'even', 'talking', 'about', 'this?'], ['What', 'do', 'you', 'consider', 'your', 'greatest', 'achievement?'], ['My', 'native', 'language', 'is', 'French.'], ["It's", 'Monday.'], ["That's", 'the', 'building', 'where', 'my', 'father', 'works.'], ['Will', 'you', 'join', 'us?'], ['The', 'dog', 'started', 'barking.'], ['I', 'feel', 'so', 'happy', 'when', "I'm", 'with', 'you.'], ['The', 'housing', 'situation', 'shows', 'no', 'hope', 'of', 'improvement.'], ['I', "don't", 'like', 'it.'], ['I', 'paid', 'him', 'on', 'the', 'spot', 'for', 'his', 'work.'], ["Don't", 'lie.', 'Be', 'honest.'], ["I'm", 'just', 'tired.'], ["I'm", 'thin,', 'but', 'not', 'too', 'thin.'], ['How', 'did', 'you', 'kill', 'the', 'guards?'], ['I', 'think', "I'm", 'gonna', 'go', 'to', 'sleep.'], ['Be', 'quiet', 'for', 'a', 'moment.'], ['Her', 'father', 'became', 'an', 'invalid', 'as', 'a', 'result', 'of', 'a', 'heart', 'attack.'], ['I', 'have', 'no', 'doubt', 'about', 'it.'], ["You're", 'killing', 'me.'], ['Choose', 'three', 'books', 'at', 'random.'], ['Tom', 'is', 'cautious.'], ['I', 'looked', 'around', 'hoping', 'to', 'spot', 'a', 'friendly', 'face.'], ['Do', 'you', 'think', "Mary's", 'skirt', 'is', 'too', 'short?'], ["I'm", 'very', 'grateful', 'for', 'your', 'help.'], ['The', 'artistic', 'beauty', 'of', 'the', 'garden', 'is', 'truly', 'amazing.'], ['She', 'is', 'familiar', 'with', 'the', 'subject.'], ['I', 'left', 'a', 'note', 'on', 'your', 'door', 'this', 'morning.'], ["He's", 'agreed', 'to', 'do', 'the', 'job.'], ['No', 'one', 'I', 'know', 'goes', 'there', 'anymore.'], ['Do', 'you', 'like', 'sports?'], ['Has', 'something', 'happened?'], ['I', 'am', 'now', 'under', 'a', "doctor's", 'care.'], ['Thank', 'you', 'for', 'the', 'pleasant', 'evening.'], ['I', 'got', 'up', 'very', 'early', 'this', 'morning.'], ['Did', 'you', 'get', 'a', 'good', 'look', 'at', 'his', 'face?'], ['Tom', 'can', 'run', 'faster', 'than', 'you.'], ["They're", 'very', 'close', 'friends.'], ['That', 'was', 'pretty', 'awesome.'], ['He', 'got', 'a', 'broken', 'jaw', 'and', 'lost', 'some', 'teeth.'], ['What', 'if', 'something', 'goes', 'wrong?'], ['No', 'one', 'warned', 'me.'], ['I', 'am', 'so', 'exhausted!'], ['Tom', 'stayed', 'in', 'Boston', 'for', 'three', 'days.'], ["I'm", 'glad', 'I', 'have', 'a', 'friend', 'like', 'you', 'to', 'confide', 'in.'], ['A', 'number', 'of', 'people', 'were', 'drowned.'], ['How', 'did', 'you', 'know', 'where', "I'd", 'be?'], ['The', 'natives', 'saw', 'an', 'airplane', 'then', 'for', 'the', 'first', 'time.'], ["I'm", 'glad', 'you', "weren't", 'injured.'], ["It's", 'a', 'good', 'story.'], ['I', 'know', 'what', "they're", 'doing.'], ['She', 'is', 'trying', 'to', 'prove', 'the', 'existence', 'of', 'ghosts.'], ['I', 'hope', 'to', 'participate.'], ['You', 'are', 'not', 'a', 'coward.'], ["We're", 'sincere.'], ['I', "don't", 'like', 'the', 'dark.'], ['I', "don't", 'know', 'what', 'this', 'is', 'about.'], ['Tom', 'told', 'me', 'about', 'the', 'fire.'], ['I', 'appreciate', 'the', 'thought.'], ['Try', 'not', 'to', 'splatter', 'the', 'ink.'], ["I'm", 'glad', 'to', 'be', 'of', 'some', 'help', 'to', 'you.'], ['I', "don't", 'feel', 'so', 'smart.'], ['I', "didn't", 'mean', 'to', 'surprise', 'you.'], ['If', 'you', 'had', 'a', 'time', 'machine,', 'which', 'year', 'would', 'you', 'visit?'], ['What', 'did', 'you', 'do', 'then?'], ["That's", 'a', 'big', 'fat', 'lie.'], ["That's", 'why', 'I', 'trust', 'you.'], ['Someone', 'should', 'talk', 'to', 'him', 'and', 'tell', 'him', "what's", 'what.'], ['You', 'have', 'a', 'little', 'fever', 'today,', "don't", 'you?'], ['I', 'wonder', 'what', 'the', 'secret', 'ingredient', 'is.'], ['I', 'thought', 'you', 'were', 'smart.'], ['If', 'you', 'have', 'something', 'to', 'say,', 'say', 'it', 'to', 'my', 'face.'], ['Could', 'you', 'please', 'kiss', 'a', 'little', 'bit', 'more', 'slowly?'], ['Now', "it's", 'your', 'turn.'], ['Where', 'are', 'you', 'living?'], ['We', 'should', 'always', 'obey', 'laws.'], ['It', 'feels', 'like', 'a', 'dream.'], ["Can't", 'we', 'go', 'with', 'Tom?'], ['Everything', 'went', 'well', 'with', 'him.'], ['We', 'learn', 'a', 'lot', 'from', 'experience.'], ['He', 'scraped', 'the', 'mud', 'off', 'his', 'boots.'], ['What', 'time', 'does', 'your', 'class', 'end?'], ['I', 'like', 'English.'], ['She', 'ignores', 'him', 'completely.'], ['Do', 'you', 'like', 'black', 'cats?'], ['Tom', 'goes', 'swimming', 'almost', 'every', 'day.'], ['I', 'usually', 'take', 'a', 'shower', 'in', 'the', 'evening.'], ['What', 'number', 'bus', 'do', 'I', 'take?'], ['Tom', 'is', 'on', 'his', 'phone.'], ['Please', 'tell', 'Tom', 'Mary', 'called.'], ['As', 'far', 'as', 'I', 'know,', 'that', 'never', 'happened.'], ['They', 'went', 'whale', 'watching.'], ['Let', 'me', 'know', 'when', 'you', 'get', 'the', 'package.'], ["It's", 'not', 'a', 'big', 'room,', 'but', "it's", 'beautiful.'], ['My', 'father', 'will', 'support', 'me', 'financially.'], ['The', 'conference', 'ended', 'at', 'five.'], ['Tom', 'is', 'a', 'doctor.'], ["They're", 'arguing.'], ['Who', 'closed', 'the', 'window?'], ['Shut', 'the', 'door,', 'please.'], ['I', 'lent', 'him', 'a', 'CD.'], ['I', 'told', 'you', 'to', 'call', 'me.'], ["We'll", 'all', 'be', 'here', 'for', 'you.'], ['More', 'and', 'more', 'married', 'couples', 'share', 'household', 'chores.'], ["Let's", 'get', 'rid', 'of', 'all', 'this', 'stuff.'], ['It', 'is', 'good', 'to', 'be', 'a', 'winner.'], ['I', 'still', 'have', 'work', 'to', 'do.'], ['I', 'remember', 'it', 'as', 'if', 'it', 'were', 'yesterday.'], ["That's", 'too', 'much!'], ["I've", 'been', 'watching', 'you', 'study.'], ["It's", 'illegal', 'to', 'buy', 'cocaine.'], ['I', 'wore', 'a', 'hat', 'yesterday', 'because', 'it', 'was', 'very', 'cold.'], ['Tom', "isn't", 'welcome', 'in', 'my', 'house', 'anymore.'], ['Your', 'brother', 'is', 'very', 'angry.'], ['Whatever', 'will', 'be,', 'will', 'be.'], ['What', 'happened', 'to', 'that', 'friend', 'of', 'yours', 'that', 'you', 'introduced', 'me', 'to', 'last', 'weekend?'], ['You', 'were', 'incompetent.'], ['He', 'saved', 'money', 'for', 'the', 'trip.'], ["It's", 'the', 'fastest', 'train', 'in', 'the', 'world.'], ["They'll", 'stop', 'at', 'nothing', 'to', 'achieve', 'their', 'political', 'goals.'], ['Who', 'do', 'you', 'want', 'to', 'talk', 'to?'], ['He', 'used', 'to', 'love', 'her.'], ['I', 'thought', 'you', 'were', 'one', 'of', 'us.'], ['I', 'really', 'should', 'know', 'the', 'answer.'], ['The', 'bed', 'is', 'very', 'comfortable.'], ['Tom', "isn't", 'my', 'enemy.'], ['Have', 'you', 'ever', 'given', 'money', 'to', 'a', 'beggar?'], ['Your', 'troubles', 'are', 'just', 'beginning.'], ["She's", 'unfit', 'for', 'the', 'job.'], ['We', 'want', 'to', 'help', 'Tom.'], ['When', 'you', 'meet', 'someone', 'for', 'the', 'first', 'time,', 'be', 'careful', 'about', 'how', 'close', 'you', 'stand', 'to', 'that', 'person.'], ["Don't", 'tempt', 'me.'], ['When', 'are', 'you', 'going', 'back', 'to', 'your', 'own', 'country?'], ['My', 'baggage', 'is', 'missing.'], ["I've", 'always', 'wanted', 'to', 'meet', 'your', 'younger', 'brother.'], ["I'm", 'beginning', 'to', 'regret', 'it.'], ['Did', 'the', 'car', 'look', 'old?'], ['In', 'case', 'I', 'am', 'late,', 'you', "don't", 'have', 'to', 'wait', 'for', 'me.'], ['A', 'car', 'hit', 'Tom.'], ['I', 'read', 'comic', 'books.'], ['There', 'was', 'a', 'big', 'gold', 'star', 'on', 'the', 'door.'], ['What', 'direction', 'are', 'you', 'going?'], ["We're", 'even.'], ['For', 'a', 'long', 'time,', 'I', 'used', 'to', 'believe', 'the', 'same', 'thing', 'you', 'do.'], ["We're", 'here', 'with', 'our', 'children.'], ["I'd", 'like', 'a', 'cup', 'of', 'tea,', 'please.'], ['I', "can't", 'stand', 'staying', 'indoors.'], ['We', 'like', 'Tom.'], ['I', 'wish', 'to', 'speak', 'to', 'Tom.'], ['I', 'find', 'this', 'disgusting.'], ['I', 'know', "you're", 'not', 'planning', 'on', 'staying', 'here', 'for', 'a', 'long', 'time.'], ['There', 'are', 'many', 'words', 'that', 'I', "don't", 'understand.'], ['I', "can't", 'convey', 'my', 'feelings', 'in', 'words.'], ['When', 'did', 'you', 'get', 'there?'], ['What', 'were', 'you', 'doing', 'before', 'this?'], ['Tom', 'woke', 'up', 'around', 'noon.'], ['Let', 'me', 'check.'], ["Let's", 'just', 'not', 'talk', 'anymore.'], ['I', 'have', 'no', 'explanation.'], ['I', 'had', 'to', 'go', 'back', 'home.'], ['I', 'wake', 'him', 'up', 'at', '6', 'every', 'morning.'], ['He', 'broke', 'the', 'door', 'open.'], ['Nearly', 'all', 'Japanese', 'have', 'dark', 'hair.'], ["That's", 'discouraging.'], ['I', 'was', 'puzzled', 'about', 'what', 'to', 'do', 'next.'], ["I'm", 'getting', 'hungry.'], ['You', "don't", 'need', 'to', 'go', 'unless', 'you', 'want', 'to.'], ['The', 'radio', 'is', 'too', 'loud.'], ['Did', 'you', 'have', 'fun', 'tonight?'], ['Would', 'you', 'please', 'tell', 'this', 'gentleman', 'who', 'I', 'am?'], ['They', 'were', 'satisfied', 'with', 'the', 'meals.'], ['How', 'is', 'the', 'investigation', 'going?'], ["I'll", 'eat', 'anything.'], ['It', "wasn't", 'interesting', 'at', 'all.'], ['What', 'a', 'bizarre', 'idea!'], ['You', 'are', 'important.'], ['What', 'train', 'you', 'are', 'going', 'to', 'take?'], ["Don't", 'ever', 'say', 'her', 'name.'], ['I', 'love', 'the', 'way', 'you', 'kiss.'], ["I'm", 'giving', 'you', 'one', 'more', 'chance.'], ['Sit', 'here.'], ['She', 'spends', 'over', 'a', 'third', 'of', 'her', 'time', 'doing', 'paperwork.'], ['I', 'was', 'on', 'patrol.'], ['She', 'bought', 'him', 'a', 'camera.'], ['Photography', 'is', 'an', 'expensive', 'hobby.'], ['Why', "don't", 'you', 'have', 'a', 'party?'], ["What's", 'that', 'look', 'like', 'to', 'you?'], ["I'm", 'sorry,', 'but', 'I', "didn't", 'catch', 'what', 'you', 'said.'], ['Tom', 'is', 'in', 'a', 'state', 'of', 'shock.'], ['That', "isn't", 'to', 'my', 'liking.'], ['Two', 'men', 'are', 'trying', 'to', 'figure', 'out', "what's", 'wrong', 'with', 'the', 'car.'], ["It's", 'difficult', 'to', 'help', 'people', 'who', "can't", 'admit', 'they', 'need', 'help.'], ['Trust', 'Tom.'], ['Speaking', 'in', 'public', 'makes', 'me', 'nervous.'], ["You're", 'very', 'wise.'], ["I've", 'just', 'arrived', 'at', 'the', 'station.'], ["We're", 'not', 'safe.'], ["They're", 'looking', 'for', 'you.'], ['Is', 'this', 'going', 'to', 'work?'], ['When', 'we', 'started', 'out,', 'our', 'band', 'could', 'only', 'find', 'small', 'clubs', 'in', 'small', 'cities', 'that', 'would', 'hire', 'us.'], ['Was', 'that', 'all', 'you', 'saw?'], ['I', 'think', 'you', 'did', 'very', 'well.'], ['I', 'would', 'like', 'a', 'cup', 'of', 'coffee.'], ["It'll", 'go', 'away.'], ["We'll", 'make', 'the', 'decision', 'for', 'you.'], ['She', 'says', 'I', 'need', 'a', 'fresh', 'start.'], ['He', 'went', 'to', 'the', 'dentist.'], ['Once', 'outside,', 'I', 'gave', 'a', 'deep', 'sigh', 'of', 'relief.'], ['It', 'was', 'a', 'little', 'scary.'], ['I', 'would', 'like', 'to', 'address', 'two', 'questions.'], ['The', 'boys', 'in', 'the', 'village', 'laughed', 'at', 'me.'], ["You're", 'probably', 'tired.'], ['Tom', "doesn't", 'agree', 'with', 'you.'], ['This', 'forum', 'is', 'great.'], ['I', "can't", 'tell', 'you', 'how', 'happy', 'I', 'am', 'that', "you've", 'come', 'to', 'visit', 'us.'], ['Could', 'you', 'explain', 'to', 'me', 'why', 'you', 'think', 'these', 'rules', "don't", 'apply', 'anymore?'], ['When', 'will', 'you', 'get', 'through', 'with', 'work?'], ['Sooner', 'or', 'later,', 'we', 'all', 'are', 'going', 'to', 'die.'], ["Let's", 'go', 'to', 'an', 'all-you-can-eat', 'place', 'and', 'have', 'a', 'big', 'dinner.'], ["Didn't", 'your', 'parents', 'teach', 'you', 'anything?'], ['Get', 'away', 'from', 'me.'], ['What', 'do', 'you', 'want', 'to', 'see', 'while', "you're", 'here?'], ['You', 'cannot', 'prevent', 'him', 'from', 'drinking.'], ["I'm", 'closing', 'the', 'door.'], ['Why', "don't", 'you', 'return', 'to', 'your', 'quarters?'], ['I', 'want', 'to', 'sit', 'by', 'the', 'window.'], ["It's", 'now', 'your', 'turn.'], ['I', 'had', 'a', 'weird', 'dream', 'last', 'night.'], ['We', 'discussed', 'the', 'problem', 'for', 'a', 'long', 'time.'], ['Is', 'this', 'understandable?'], ['We', 'were', 'in', 'the', 'living', 'room', 'when', 'we', 'heard', 'the', 'gunshot.'], ['He', 'said', 'he', 'was', 'poor.'], ['I', 'know', 'Tom', 'is', 'gullible.'], ["I'll", 'handle', 'everything.'], ['Tom', 'can', 'probably', 'understand', 'French.'], ['I', 'am', 'truly', 'sorry.'], ['Take', 'away', 'this', 'box.'], ["Don't", 'disturb', 'me.'], ["I'm", 'getting', 'old.'], ['As', 'you', 'make', 'your', 'bed,', 'so', 'you', 'must', 'lie', 'in', 'it.'], ["I'm", 'very', 'glad', 'to', 'see', 'you', 'again.'], ['I', 'talked', 'to', 'the', 'girl', 'you', 'told', 'me', 'about.'], ['I', 'really', 'wanted', 'to', 'believe', 'it', 'was', 'true.'], ["I'm", 'not', 'qualified', 'for', 'this', 'internship.'], ['He', 'went', 'into', 'the', 'bank.'], ['Please', 'do', 'not', 'kill', 'me.'], ['When', 'I', 'heard', 'the', 'news,', 'I', 'cried.'], ['I', "don't", 'want', 'you', 'to', 'be', 'upset.'], ['I', "wasn't", 'entirely', 'sure', 'myself.'], ['You', 'have', 'to', 'obey', 'your', 'parents.'], ['I', 'spent', 'hours', 'reading', 'books.'], ['You', 'know', 'the', 'drill.'], ['I', 'peeled', 'the', 'potatoes.'], ['When', 'will', 'you', 'go?'], ['What', 'happened', 'today?'], ['Why', "didn't", 'you', 'tell', 'me', 'that', 'Tom', 'was', 'here?'], ['Help', 'me', 'and', 'I', 'will', 'help', 'you.'], ["What's", 'the', 'weather', 'like', 'where', 'you', 'are?'], ['I', 'guess', 'it', "doesn't", 'make', 'any', 'difference', 'which', 'swimming', 'club', 'I', 'join.'], ['I', 'just', 'met', 'him.'], ['You', 'can', 'borrow', 'my', 'car', 'anytime.'], ['I', 'love', 'summer', 'rain.'], ['I', 'will', 'do', 'anything', 'but', 'that.'], ['I', 'called', 'my', 'neighbors', 'over', 'for', 'dinner.'], ['You', "don't", 'know', 'what', "you're", 'doing.'], ["They're", 'twins.'], ['This', 'is', 'unusual.'], ['The', 'little', 'boy', 'said', 'hello', 'to', 'me.'], ['He', 'gathered', 'up', 'his', 'things', 'and', 'left.'], ['Dr.', 'Smith', 'has', 'a', 'lot', 'of', 'patients.'], ["I'd", 'rather', 'not', 'answer', 'that', 'question.'], ['Tom', 'is', 'an', 'old', 'man.'], ['I', 'told', 'you', 'so.'], ['She', 'wants', 'me', 'to', 'go', 'with', 'her.'], ['I', 'saw', 'the', 'teacher', 'walk', 'across', 'the', 'street.'], ['Please', 'help', 'yourself.'], ['My', "name's", 'Tom.', "What's", 'yours?'], ['Be', 'serious.'], ["Don't", 'touch', 'that', 'dial.'], ['He', 'is', 'always', 'complaining.'], ['If', 'you', "don't", 'want', 'me', 'to', 'stay', 'here,', "I'll", 'leave.'], ['How', 'is', 'it', 'that', "you're", 'always', 'so', 'full', 'of', 'energy?'], ['I', 'need', 'to', 'warn', 'my', 'mom.'], ['We', 'bought', 'a', 'pound', 'of', 'tea.'], ['You', 'need', 'to', 'decide', 'what', 'kind', 'of', 'person', 'you', 'want', 'to', 'be.'], ['Who', 'else', 'helped', 'you?'], ['He', 'sounds', 'angry.'], ['I', 'do', 'not', 'sleep', 'well.'], ['Traveling', 'is', 'easy', 'these', 'days.'], ['Have', 'you', 'put', 'on', 'sunscreen?'], ['Tom', 'is', 'still', 'in', 'his', 'uniform.'], ['Everyone', 'wants', 'to', 'go', 'to', 'heaven,', 'but', 'nobody', 'wants', 'to', 'die.'], ['I', 'like', 'the', 'way', 'you', 'think.'], ['I', 'left', 'the', 'key', 'in', 'the', 'room.'], ["Don't", 'you', 'ever', 'say', 'that', 'again.'], ["You're", 'a', 'teacher,', 'right?'], ["That's", 'what', "I'm", 'here', 'for.'], ['I', 'hate', 'being', 'shouted', 'at.'], ['Life', 'is', 'short.'], ['She', 'whispered', 'to', 'me', 'that', 'she', 'was', 'hungry.'], ['Just', 'do', 'the', 'job.'], ["I'd", 'like', 'to', 'get', 'started', 'right', 'away.'], ['He', 'has', 'knowledge', 'and', 'experience', 'as', 'well.'], ['I', 'can', 'understand', 'your', 'point', 'of', 'view.'], ['He', 'plays', 'the', 'piano', 'better', 'than', 'me.'], ['My', 'premonition', 'turned', 'out', 'to', 'be', 'right.'], ['You', 'should', 'know', 'better.'], ['Bigger', 'is', 'not', 'always', 'better.'], ['Is', 'your', 'watch', 'correct?'], ["We're", 'not', 'going', 'anywhere.'], ['The', 'tree', 'in', 'front', 'of', 'the', 'library', 'was', 'struck', 'by', 'lightning.'], ["Aren't", 'you', 'surprised', 'to', 'see', 'me?'], ['I', 'drank', 'a', 'glass', 'of', 'milk', 'this', 'morning.'], ['Look', 'me', 'in', 'the', 'eyes', 'and', 'tell', 'me', 'you', "didn't", 'do', 'it.'], ['Do', 'you', 'still', 'not', 'understand?'], ['If', 'you', 'wish,', "I'll", 'ask.'], ['When', 'I', 'phone', 'them', 'nobody', 'answers.'], ['Sorry', 'I', "didn't", 'reply', 'sooner.'], ['I', 'never', 'knew', 'my', 'father.'], ['What', 'do', 'you', 'plan', 'on', 'doing', 'with', 'the', 'money?'], ['I', 'will', 'not', 'do', 'it', 'again.'], ['I', 'thought', 'the', 'ending', 'was', 'perfect.'], ['He', 'agreed', 'to', 'give', 'us', 'an', 'interview.'], ['I', 'want', 'this', 'dog.'], ['All', 'share', 'the', 'blame.'], ['He', 'likes', 'geography', 'and', 'history.'], ['She', 'asked', 'him', 'to', 'marry', 'her.'], ['I', 'need', 'to', 'talk', 'to', 'you', 'privately.'], ['Tom,', 'may', 'I', 'have', 'some', 'money?'], ["It's", 'better', 'than', 'doing', 'nothing.'], ['He', 'died', 'suddenly.'], ['His', 'advice', "didn't", 'help', 'much.'], ['Primitive', 'calculating', 'machines', 'existed', 'long', 'before', 'computers', 'were', 'developed.'], ['Tom', 'had', 'his', 'wallet', 'stolen', 'while', 'he', 'was', 'in', 'Boston.'], ['I', 'talked', 'to', 'everybody.'], ['Just', 'mind', 'your', 'own', 'business,', 'please.'], ['My', 'class', 'was', 'canceled.'], ['Tom', 'arrived', 'first.'], ['Do', 'you', 'play', 'tennis', 'well?'], ['I', 'have', 'a', 'plan.'], ["You're", 'faithful.'], ['I', "wasn't", 'able', 'to', 'believe', 'him', 'at', 'first.'], ['They', 'did', 'not', 'keep', 'their', 'word.'], ['Everybody', 'makes', 'mistakes,', "don't", 'they?'], ['All', 'of', 'her', 'songs', 'became', 'hits.'], ['No', 'one', 'uses', 'that', 'word', 'anymore.'], ['He', 'sometimes', 'comes', 'to', 'see', 'me.'], ["They're", 'a', 'good', 'team.'], ['The', 'shop', 'was', 'busy.'], ['Please', 'sign', 'here.'], ["That's", 'what', 'you', 'should', 'do.'], ['I', 'hope', "she's", 'safe.'], ['Tom', 'was', 'a', 'bad', 'person.'], ['We', 'sent', 'out', 'the', 'invitations', 'yesterday.'], ['It', 'was', 'very', 'disappointing.'], ['Tom', 'needs', 'our', 'help.'], ['I', 'want', 'to', 'be', 'doing', 'a', 'good', 'job.'], ['You', "don't", 'have', 'to', 'respond.'], ["Where's", 'your', 'captain?'], ['This', 'dictionary', 'is', 'my', "sister's."], ['Bourbon', 'is', 'made', 'from', 'corn.'], ["I'm", 'sure', 'my', 'parents', "won't", 'let', 'me', 'go', 'by', 'myself.'], ['I', 'have', 'no', 'food.'], ['He', "doesn't", 'resemble', 'either', 'of', 'his', 'parents.'], ['Thanks', 'in', 'advance.'], ['That', 'should', 'be', 'enough', 'for', 'you.'], ['What', 'does', 'it', 'feel', 'like', 'to', 'always', 'have', 'people', 'following', 'you', 'around?'], ['It', 'all', 'makes', 'sense.'], ['There', 'were', 'soldiers', 'on', 'these', 'ships.'], ['Have', 'you', 'ever', 'gone', 'skinny', 'dipping?'], ['I', 'have', 'plenty', 'of', 'friends.'], ['She', 'was', 'surprised', 'at', 'his', 'appearance.'], ['Tom', 'is', 'telling', 'you', 'the', 'truth.'], ['My', 'job', 'is', 'dull', 'and', 'boring.'], ['Tom', 'helped', 'his', 'son', 'get', 'dressed.'], ['I', 'want', 'to', 'go', 'back', 'to', 'doing', 'what', 'I', 'was', 'doing', 'before', 'you', 'interrupted', 'me.'], ['She', 'attacked', 'him', 'with', 'her', 'fists.'], ["That's", 'one', 'of', 'them.'], ['Tom', 'has', 'canceled', 'his', 'trip.'], ['Tom', "wasn't", 'in', 'a', 'hurry.'], ['You', 'can', 'get', 'from', 'Washington', 'to', 'New', 'York', 'by', 'train.'], ["Where's", 'the', 'pan', 'lid?'], ["I'm", 'in', 'the', 'tennis', 'club.'], ["Don't", 'forget', 'to', 'turn', 'off', 'the', 'TV', 'before', 'you', 'go', 'to', 'sleep.'], ['I', 'guess', "it's", 'impossible', 'for', 'me', 'to', 'learn', 'how', 'to', 'play', 'the', 'oboe.'], ['Let', 'me', 'off', 'at', 'the', 'train', 'station,', 'please.'], ['Steam', 'is', 'coming', 'out', 'of', 'the', 'engine.'], ['I', 'like', 'cookies.'], ['How', 'did', 'your', 'dog', 'get', 'in', 'here?'], ['There', 'are', 'two', 'kinds', 'of', 'work', 'in', 'the', 'world--head', 'work', 'and', 'hand', 'work;', 'mental', 'and', 'manual.'], ['Tell', 'Tom', 'that', 'I', "won't", 'be', 'there.'], ['I', 'went', 'on', 'vacation,', 'and', 'my', 'plants', 'are', 'still', 'alive.'], ['I', 'slept', 'very', 'well', 'last', 'night.'], ['He', 'makes', 'it', 'a', 'point', 'to', 'remember', 'each', 'one', 'of', 'our', 'birthdays.'], ['Weigh', 'your', 'words', 'well.'], ['You', "aren't", 'invited.'], ['I', "don't", 'like', 'horror', 'movies.'], ['We', 'were', 'studying', 'all', 'afternoon.'], ["I'm", 'invited', 'to', 'dinner', 'this', 'evening.'], ['I', 'think', "we've", 'seen', 'enough.'], ['Stop', 'being', 'stupid.'], ['I', 'have', 'someplace', 'to', 'go.'], ['A', 'captain', 'controls', 'his', 'ship', 'and', 'its', 'crew.'], ['My', 'uncles', 'live', 'in', 'London.'], ['It', 'was', 'hard', 'to', 'believe.'], ['Tom', 'asked', 'Mary', 'to', 'get', 'him', 'a', 'cup', 'of', 'coffee.'], ["It's", 'too', 'big.'], ['He', 'is', 'taller', 'than', 'his', 'father.'], ['Can', 'I', 'take', 'a', 'message?'], ['I', 'really', 'want', 'to', 'stay.'], ['What', 'do', 'you', 'think', 'the', 'audience', 'wants?'], ['I', 'knew', 'I', 'wanted', 'you', 'the', 'moment', 'I', 'saw', 'you.'], ['I', 'think', 'Tom', 'is', 'insane.'], ['Get', 'the', 'door,', 'will', 'you?'], ['We', 'have', 'a', 'serious', 'problem', 'on', 'our', 'hands.'], ['Tom', "didn't", 'want', 'to', 'do', 'anything.'], ['You', 'can', 'pour', 'the', 'wine', 'into', 'the', 'glass.'], ['I', 'think', 'you', 'know', 'what', 'you', 'should', 'do.'], ['His', 'dad', 'calls', 'him', 'Tom.'], ['The', 'noise', 'is', 'going', 'to', 'wake', 'the', 'baby.'], ["Somebody's", 'in', 'trouble.'], ['I', "can't", 'make', 'myself', 'understood', 'in', 'German.'], ['I', 'acted', 'on', 'his', 'advice.'], ['No', 'one', 'in', 'their', 'right', 'mind', 'would', 'walk', 'in', 'those', 'woods', 'at', 'night.'], ['Could', 'you', 'speak', 'more', 'slowly,', 'please?'], ['Anything', 'is', 'infinitely', 'better', 'than', 'nothing.'], ['Everyone', 'is', 'unique.'], ['They', "don't", 'really', 'care.'], ['I', 'used', 'to', 'play', 'tennis', 'with', 'him', 'on', 'Sunday.'], ['We', 'chose', 'a', 'hotel', 'near', 'the', 'subway.'], ["I'm", 'the', 'only', 'one', 'planning', 'on', 'doing', 'that.'], ['I', 'want', 'to', 'know', 'what', 'love', 'is.'], ['One', 'of', 'my', 'friends', 'died', 'last', 'week.'], ['I', 'know', 'something', 'you', "don't."], ['My', 'friend', 'said', 'he', 'had', 'bought', 'a', 'new', 'watch.'], ['Are', 'you', 'vegetarian?'], ['No', 'one', 'has', 'anything.'], ['There', 'were', 'too', 'many', 'of', 'them.'], ['This', 'could', 'take', 'a', 'while.'], ["Who's", 'your', 'boyfriend?'], ["I'm", 'not', 'miserable.'], ['She', 'advised', 'him', 'not', 'to', 'drive', 'too', 'fast,', 'but', 'he', "wouldn't", 'listen', 'to', 'her.'], ['Is', 'there', 'something', 'in', 'particular', 'that', 'you', 'want', 'to', 'drink?'], ['She', "couldn't", 'suppress', 'her', 'emotions.'], ['The', 'team', 'needs', 'me.'], ["I'm", 'going', 'to', 'stop', 'trying', 'to', 'be', 'friendly', 'with', 'you.'], ['Turn', 'right', 'at', 'the', 'next', 'intersection.'], ['How', 'many', 'hotels', 'do', 'you', 'think', 'there', 'are', 'in', 'Boston?'], ['How', 'many', 'hours', 'a', 'day', 'do', 'you', 'watch', 'TV?'], ['It', "doesn't", 'matter', 'whether', 'you', 'come', 'or', 'not.'], ['We', 'can', 'not', 'agree', 'with', 'you', 'on', 'this', 'point.'], ["I'd", 'love', 'to', 'visit', 'Boston.'], ['Everybody', 'gets', 'old.'], ["She's", 'busy', 'now,', 'so', 'she', "can't", 'talk', 'with', 'you.'], ["You're", 'very', 'resourceful.'], ['Are', 'you', 'a', 'morning', 'person?'], ['What', 'would', 'you', 'like', 'for', 'dessert?'], ["I'm", 'not', 'an', 'expert.'], ['This', 'is', 'something', 'I', 'must', 'face', 'alone.'], ["I'm", 'sure', 'she', 'will', 'turn', 'up', 'soon.'], ['Is', 'Tom', 'supposed', 'to', 'be', 'doing', 'that?'], ['How', 'much', 'time', 'did', 'we', 'lose?'], ['I', "haven't", 'seen', 'him', 'since', 'then.'], ['I', "don't", 'feel', 'like', 'it.'], ['I', "don't", 'like', 'dancing.'], ['"I\'m', 'the', 'happiest', 'man', 'in', 'the', 'world,"', 'Tom', 'said', 'to', 'himself.'], ['You', 'must', 'be', 'very', 'special.'], ['I', 'think', "it's", 'time', 'for', 'me', 'to', 'buy', 'my', 'daughter', 'a', 'decent', 'computer.'], ['I', 'wanted', 'to', 'be', 'a', 'journalist.'], ['The', 'plane', 'increased', 'speed.'], ['Tom', 'banged', 'the', 'table', 'with', 'his', 'fist.'], ['I', 'got', 'lost', 'in', 'the', 'snow.'], ['She', 'always', 'says', 'nice', 'things', 'about', 'him.'], ['Keep', 'driving.'], ['She', 'punished', 'her', 'children.'], ['I', 'hope', 'this', 'good', 'weather', 'continues.'], ['There', 'is', 'a', 'traffic', 'jam', 'on', 'the', 'highway.'], ['Smoking', 'stinks.'], ['He', 'did', 'the', 'best', 'he', 'could.'], ['The', 'prices', 'remain', 'as', 'they', 'were.'], ['Who', 'would', 'notice?'], ['What', 'inspires', 'you', 'most?'], ["I'm", 'lucky', 'to', 'have', 'you', 'as', 'a', 'friend.'], ['He', 'fumbled', 'with', 'the', 'keys', 'before', 'finding', 'the', 'right', 'one.'], ['Tom', 'is', 'taking', 'his', 'final', 'exam.'], ['He', 'can', 'cook', 'as', 'well', 'as', 'his', 'wife.'], ['Are', 'you', 'good', 'at', 'speaking', 'French?'], ["That's", 'more', 'than', 'I', 'expected.'], ["There's", 'no', 'other', 'choice.'], ["I'm", 'sorry,', 'but', 'I', "can't", 'lend', 'you', 'my', 'car', 'next', 'weekend.'], ['There', 'are', 'lots', 'of', 'animals', 'in', 'the', 'park.'], ['I', 'felt', 'so', 'uncomfortable.'], ['He', 'studied', 'the', 'way', 'birds', 'fly.'], ['Try', 'not', 'to', 'look', 'so', 'nervous.'], ['I', 'think', 'you', 'should', 'change', 'your', 'eating', 'habits.'], ['I', 'like', 'music', 'and', 'English.'], ["Don't", 'waste', 'your', 'time', 'thinking', 'about', 'it.'], ['Did', 'you', 'find', 'a', 'solution?'], ['I', 'will', 'work.'], ['I', 'know', 'you', 'have', 'a', 'girlfriend.'], ['I', 'want', 'you', 'to', 'be', 'a', 'bridesmaid.'], ["You're", 'not', 'going', 'to', 'believe', 'this.'], ["I'm", 'very', 'busy.'], ['He', 'is', 'much', 'taller', 'than', 'I', 'am.'], ['It', 'is', 'not', 'until', 'we', 'lose', 'our', 'health', 'that', 'we', 'realize', 'the', 'value', 'of', 'it.'], ['It', 'snowed', 'all', 'day', 'yesterday.'], ['You', 'had', 'better', 'have', 'your', 'eyes', 'examined.'], ['I', 'made', 'these.'], ['My', 'uncle', 'gave', 'me', 'his', 'car.'], ['How', 'did', 'you', 'become', 'interested', 'in', 'studying', 'languages?'], ["We've", 'all', 'seen', 'it.'], ["Let's", 'do', 'it', 'your', 'way.'], ['Tom', 'is', 'just', 'trying', 'to', 'make', 'ends', 'meets.'], ['We', 'have', 'checked.'], ['My', 'jeans', 'shrank.'], ['All', 'of', 'these', 'letters', 'are', 'addressed', 'to', 'you.'], ['War', 'is', 'not', 'inevitable.'], ['Cherry', 'trees', 'are', 'planted', 'along', 'the', 'street.'], ['Please', 'tell', 'me', 'your', 'opinion.'], ['Can', 'we', 'speak', 'French?'], ['How', 'about', 'going', 'to', 'see', 'a', 'movie', 'tonight?'], ['A', 'lot', 'of', 'people', 'hate', 'you', 'already.'], ['The', 'professor', 'is', 'making', 'a', 'phone', 'call.'], ['I', "don't", 'think', 'I', 'can', 'help', 'you.'], ["I've", 'heard', 'a', 'lot', 'about', 'you.'], ['We', 'need', 'to', 'reinforce', 'the', 'roof.'], ["Don't", 'leave', 'this', 'room.'], ['You', 'should', 'have', 'spoken', 'more', 'politely.'], ['What', 'sort', 'of', 'people', 'hang', 'out', 'at', 'a', 'place', 'like', 'this?'], ['None', 'of', 'the', 'teachers', 'could', 'solve', 'the', 'problem.'], ["It's", 'true', 'that', 'Americans', 'love', 'pizza.'], ['No', "one's", 'home.'], ['I', 'really', 'like', 'hard', 'boiled', 'eggs.'], ['We', 'had', 'a', 'secret', 'meeting.'], ['I', 'got', 'what', 'you', 'asked', 'for.'], ["Let's", 'take', 'a', 'trip.'], ['I', 'know', "you're", 'smarter', 'than', 'me.'], ['Be', 'a', 'good', 'boy.'], ['How', 'could', 'they', 'have', 'done', 'it?'], ['How', 'can', 'I', 'get', 'to', 'the', 'nearest', 'post', 'office?'], ['Are', 'you', 'still', 'there?'], ['She', 'raced', 'him', 'down', 'the', 'hill.'], ['I', "can't", 'put', 'up', 'with', 'his', 'violence', 'any', 'longer.'], ['What', 'a', 'beautiful', 'scene!'], ['You', "can't", 'use', 'this', 'washing', 'machine.'], ["We've", 'run', 'enough', 'for', 'one', 'day.'], ['He', 'searched', 'all', 'day', 'for', 'the', 'letter.'], ['To', 'tell', 'the', 'truth,', 'we', 'got', 'married', 'last', 'year.'], ['You', 'should', 'try', 'to', 'write', 'more', 'legibly.'], ["We're", 'working', 'on', 'a', 'limited', 'budget.'], ['You', 'only', 'have', 'to', 'ask', 'for', 'it.'], ['The', 'workers', 'are', 'on', 'strike.'], ['Is', 'there', 'any', 'reason', 'not', 'to', 'go?'], ['The', 'man', 'you', 'saw', 'yesterday', 'was', 'my', 'uncle.'], ['She', 'wiped', 'away', 'her', 'tears.'], ['Hi,', 'guys.'], ["You're", 'fashionable.'], ['Are', 'you', 'ready', 'to', 'work?'], ['No', 'one', 'noticed.'], ['The', 'conclusion', 'is', 'crystal', 'clear.'], ['I', 'looked', 'in', 'my', 'closet', 'for', 'something', 'to', 'wear.'], ['All', 'our', 'attempts', 'failed.'], ['Tom', "won't", 'give', 'in.'], ['Wine', 'helps', 'digest', 'food.'], ["I've", 'got', 'to', 'do', 'this', 'right', 'now.'], ["I'm", 'terrible', 'at', 'tennis.'], ['Tom', 'wrote', 'to', 'a', 'friend.'], ['One', "can't", 'help', 'many,', 'but', 'many', 'can', 'help', 'one.'], ['They', 'know', 'us.'], ['Tom', 'put', 'too', 'much', 'sugar', 'in', 'my', 'coffee.'], ['If', 'you', 'go', 'out', 'so', 'lightly', 'dressed,', "you'll", 'catch', 'a', 'cold.'], ["We'd", 'like', 'separate', 'checks.'], ["Don't", 'be', 'upset.'], ['I', 'worked', 'in', 'Boston', 'for', 'three', 'years.'], ['Excuse', 'me,', 'but', 'could', 'you', 'scoot', 'over', 'a', 'little', 'bit,', 'please?'], ['Be', 'more', 'careful', 'from', 'now', 'on.'], ['I', 'really', 'love', 'cats.'], ['I', 'can', 'place', 'the', 'palms', 'of', 'my', 'hands', 'on', 'the', 'floor', 'without', 'bending', 'my', 'knees.'], ['I', 'know', 'Tom', 'will', 'be', 'fair.'], ['Some', 'of', 'us', 'might', 'be', 'willing', 'to', 'go.'], ['He', 'used', 'all', 'his', 'strength', 'to', 'crawl', 'out', 'of', 'the', 'wrecked', 'car.'], ['I', 'disagree', 'completely.'], ['Look', 'at', "Tom's", 'shoes.'], ['I', "can't", 'believe', "we're", 'going', 'to', 'lose.'], ['Why', 'is', 'it', 'my', 'fault?'], ['What', 'were', 'they', 'doing', 'here?'], ['Thanks', 'so', 'much.'], ['I', "don't", 'really', 'have', 'a', 'gun.'], ['There', 'is', 'a', 'small', 'pond', 'in', 'our', 'garden.'], ['I', 'could', 'hear', 'doors', 'slamming.'], ['I', 'beg', 'to', 'differ.'], ["I'm", 'glad', "I'm", 'not', 'a', 'dog.'], ["We're", 'going', 'to', 'do', 'everything', 'we', 'can.'], ['That', 'was', 'just', 'what', 'I', 'needed.'], ['You', "can't", 'get', 'rid', 'of', 'it.'], ['His', 'lectures', 'are', 'very', 'long.'], ['You', 'seem', 'happy.'], ['We', 'were', 'disappointed.'], ["I've", 'never', 'been', 'abroad.'], ['I', 'want', 'to', 'go', 'to', 'Boston.'], ['Stop', 'Tom.'], ['I', 'read', 'a', 'book', 'as', 'I', 'walked.'], ['He', 'was', 'jealous', 'of', 'their', 'happiness.'], ['It', 'was', 'boring.'], ['I', 'met', 'her', 'in', 'the', 'winter', 'of', 'last', 'year.'], ['I', 'borrowed', 'the', 'book', 'from', 'this', 'library.'], ["Don't", 'they', 'drive', 'you', 'mad?'], ['What', 'a', 'jerk!'], ["I'm", 'happy', 'you', 'two', 'are', 'friends', 'again.'], ["I'd", 'like', 'to', 'find', 'out', 'what', 'this', 'is.'], ['He', 'can', 'play', 'the', 'guitar.'], ["I'm", 'fine.', 'How', 'about', 'you?'], ['Japan', 'is', 'not', 'what', 'it', 'was', '15', 'years', 'ago.'], ['We', 'were', 'friends.'], ['When', 'was', 'the', 'last', 'time', 'that', 'you', 'did', 'something', 'for', 'the', 'first', 'time?'], ['He', 'came', 'to', 'ask', 'us', 'to', 'help', 'him.'], ["I'm", 'too', 'old', 'for', 'you.'], ['I', "wouldn't", 'be', 'so', 'sure.'], ['Do', 'you', 'hear', 'that?'], ['Why', "won't", 'you', 'look', 'at', 'me?'], ['We', 'talked', 'without', 'the', 'aid', 'of', 'an', 'interpreter.'], ['These', 'three', 'hours', 'of', 'driving', 'have', 'worn', 'me', 'out.', "Let's", 'stop', 'at', 'the', 'first', 'rest', 'area', 'we', 'see.'], ['Can', 'I', 'have', 'another', 'drink', 'now?'], ["That's", 'not', 'the', 'way', 'it', 'happened', 'at', 'all.'], ['I', 'sat', 'at', 'the', 'bar.'], ["It's", 'a', 'lot', 'of', 'trouble', 'to', 'write', 'my', 'name,', 'because', 'it', 'takes', '50', 'strokes', 'to', 'write', 'both', 'my', 'first', 'and', 'last', 'names.'], ["Let's", 'go', 'and', 'see', 'as', 'many', 'things', 'as', 'we', 'can.'], ['You', 'must', 'not', 'say', 'it.'], ["I'd", 'like', 'to', 'take', 'my', 'jacket', 'off.'], ['Mary', 'took', 'her', 'necklace', 'off.'], ['I', "don't", 'know', 'what', 'to', 'do', 'next.'], ["Where's", 'the', 'nearest', 'restaurant?'], ['Tom', 'is', 'a', 'very', 'good', 'farmer.'], ['You', 'drank', 'a', 'beer', 'at', 'lunch,', "didn't", 'you?'], ["Let's", 'hit', 'the', 'town', 'tonight', 'and', 'have', 'some', 'fun.'], ["We're", 'ready', 'to', 'put', 'the', 'boat', 'in', 'the', 'water.'], ['He', "doesn't", 'have', 'any', 'real', 'friends.'], ["We're", 'not', 'ready', 'to', 'do', 'that.'], ['It', 'is', 'cold', 'there,', 'even', 'in', 'summer.'], ['Where', 'will', 'the', 'bus', 'pick', 'us', 'up?'], ['Be', 'there', 'tonight.'], ['I', "don't", 'go', 'to', 'the', 'movies', 'as', 'often', 'as', "I'd", 'like.'], ['The', 'first', 'edition', 'was', 'published', 'ten', 'years', 'ago.'], ['I', "don't", 'understand', 'what', 'you', 'are', 'talking', 'about.'], ['Why', 'are', 'they', 'fighting?'], ['I', 'just', 'thought', 'you', 'were', 'happy.'], ['He', 'was', 'covered', 'in', 'mud', 'from', 'head', 'to', 'foot.'], ['I', 'could', 'not', 'refuse.'], ['You', "don't", 'have', 'an', 'alibi', 'for', 'the', 'day', 'of', 'the', 'murder.'], ['Could', 'I', 'get', 'some', 'tea?'], ["I'm", 'sure', 'the', 'police', 'will', 'catch', 'the', 'robber', 'eventually.'], ['Come', 'over', 'for', 'dinner', 'sometime.'], ['Not', 'knowing', 'what', 'to', 'do,', 'I', 'asked', 'him', 'for', 'advice.'], ['We', 'had', 'fun', 'with', 'them.'], ['It', 'is', 'hardly', 'worth', 'discussing.'], ['He', 'was', 'a', 'rugby', 'player.'], ['When', 'you', 'surf', 'the', 'web,', 'you', 'may', 'be', 'tracked', 'by', 'websites.'], ['Tom', 'was', 'genuinely', 'annoyed.'], ['"Nice', 'to', 'meet', 'you,"', 'said', 'the', 'businessman.'], ['This', 'is', 'all', 'I', 'can', 'do.'], ["Let's", 'talk', 'about', 'your', 'childhood.'], ['He', 'lost', 'his', 'eyesight.'], ['I', "don't", 'watch', 'that', 'show.'], ['Have', 'a', 'seat.'], ['I', "don't", 'know', 'who', 'they', 'are.'], ['I', 'know', 'Tom', 'did', 'that', 'alone.'], ['What', 'time', 'does', 'the', 'concert', 'start?'], ['Come', 'soon', 'or', 'there', "won't", 'be', 'any', 'food', 'left.'], ['I', 'should', 'think', 'she', 'is', 'under', 'thirty.'], ['We', "didn't", 'bring', 'it', 'with', 'us.'], ["It's", 'the', 'wrong', 'one.'], ['Keep', 'the', 'child', 'away', 'from', 'the', 'pond.'], ['This', 'is', 'my', 'email', 'address.'], ['This', 'reminds', 'me', 'of', 'home.'], ["I'll", 'help', 'you', 'prevent', 'that', 'from', 'happening', 'again.'], ['No', 'one', 'else', 'knows', 'this.'], ['What', "you're", 'suggesting', "won't", 'work.'], ['I', 'am', 'no', 'longer', 'tired.'], ['He', 'took', 'charge', 'of', 'the', 'firm', 'after', 'his', "father's", 'death.'], ['I', 'know', 'what', 'time', 'you', 'said', 'to', 'be', 'there,', 'but', 'I', "wasn't", 'able', 'to', 'be', 'there', 'at', 'that', 'time.'], ['Can', 'I', 'count', 'on', 'you?'], ['My', 'father', 'will', 'be', 'forty', 'soon.'], ['Tom', 'says', 'he', 'has', 'no', 'choice.'], ['I', 'heard', 'him', 'go', 'down', 'the', 'stairs.'], ['Save', 'your', 'long-winded', 'explanations', 'for', 'someone', 'else.'], ['The', 'buses', 'run', 'every', 'ten', 'minutes.'], ['Please', 'show', 'me', 'another', 'one.'], ['You', 'were', 'dying,', 'but', 'the', 'doctor', 'saved', 'your', 'life.'], ["I'll", 'give', 'you', 'a', 'hint.'], ["It'll", 'be', 'invisible.'], ['He', 'hurt', 'himself', 'during', "yesterday's", 'game.'], ['We', 'are', 'busy', 'men.'], ['This', 'knife', 'is', 'very', 'sharp.'], ['I', "wouldn't", 'do', 'that', 'to', 'anybody.'], ['He', 'would', 'like', 'to', 'know', 'whether', 'you', 'play', 'chess.'], ["You're", 'not', 'as', 'good', 'as', 'you', 'think', 'you', 'are.'], ['I', "don't", 'want', 'to', 'shoot', 'you.'], ["Don't", 'you', 'think', "that's", 'a', 'bit', 'odd?'], ['Never', 'choose', 'a', 'vocation', 'just', 'because', 'your', 'friends', 'are', 'in', 'it,', 'nor', 'refuse', 'another', 'just', 'because', 'your', 'worst', 'enemy', 'is', 'in', 'it.'], ["I'm", 'no', 'longer', 'afraid', 'of', 'dogs.'], ['We', "don't", 'want', 'to', 'be', 'late.'], ['Tom', 'and', 'Mary', 'work', 'in', 'the', 'same', 'office.'], ['Maybe', 'we', 'should', 'come', 'back', 'later.'], ['Sorry', 'for', 'calling', 'you', 'at', 'this', 'hour.'], ['Is', 'that', 'all?'], ['Tom', 'is', 'a', 'con', 'artist.'], ['Something', 'went', 'wrong', 'with', 'my', 'watch.'], ['I', 'like', 'hanging', 'out', 'with', 'you.'], ['Prompt', 'action', 'is', 'necessary.'], ['Tell', 'me', "you're", 'not', 'serious!'], ['When', 'do', 'you', 'intend', 'to', 'start?'], ['Is', 'anyone', 'looking?'], ['Have', 'you', 'gotten', 'used', 'to', 'eating', 'Japanese', 'food', 'yet?'], ['He', 'knows', 'how', 'to', 'brush', 'his', 'teeth.'], ['I', "don't", 'know', "what's", 'happened.'], ["I'm", 'remodeling.'], ['The', 'rain', 'continued', 'all', 'day.'], ['I', 'arrived', 'here', 'at', 'eight', 'this', 'morning.'], ['I', 'have', 'a', 'brain', 'tumor.'], ['Who', 'are', 'you', 'supposed', 'to', 'be?'], ["Don't", 'touch', 'the', 'stove.'], ['I', "don't", 'know', 'what', 'to', 'call', 'you.'], ['The', 'concert', 'was', 'incredible.'], ['We', 'thought', 'it', 'was', 'hilarious.'], ["You'd", 'better', 'not', 'go', 'today.'], ['Do', 'you', 'think', "Mary's", 'skirt', 'is', 'too', 'short?'], ['Happy', 'New', 'Year!'], ['Tom', 'pressed', 'the', 'intercom', 'button.'], ['Take', 'a', 'sip', 'of', 'this.'], ['I', 'especially', 'want', 'to', 'thank', 'our', 'record-breaking', 'sales', 'team.'], ['I', "don't", 'know', 'why', 'Tom', "doesn't", 'like', 'Boston.'], ["She's", 'a', 'real', 'gossip.'], ['I', "don't", 'like', 'it', 'any', 'more', 'than', 'you', 'do.'], ['I', "didn't", 'know', 'who', 'he', 'was.'], ['Did', 'anyone', 'care?'], ['What', 'time', 'will', 'the', 'washing', 'machine', 'repairman', 'come?'], ['Enjoy', 'yourself', 'for', 'a', 'change.'], ['I', 'have', 'enough', 'money', 'to', 'buy', 'it.'], ['This', 'string', 'is', 'strong.'], ['Do', 'you', 'have', 'brothers', 'and', 'sisters?'], ['This', 'book', 'will', 'give', 'you', 'a', 'clear', 'idea', 'of', 'the', 'American', 'way', 'of', 'life.'], ['Tom', 'is', 'eager', 'to', 'talk', 'to', 'Mary.'], ['I', "won't", 'come', 'back', 'again.'], ['Honesty', 'will', 'pay', 'in', 'the', 'long', 'run.'], ['I', "don't", 'want', 'anybody', 'to', 'get', 'hurt.'], ['They', 'did', 'not', 'keep', 'their', 'word.'], ['Next', 'time', 'I', 'switch', 'jobs,', 'I', 'need', 'work', 'that', 'will', 'let', 'me', 'make', 'use', 'of', 'the', 'experience', "I've", 'gained', 'up', 'to', 'now.'], ['Now', 'that', 'you', 'are', 'an', 'adult,', 'you', 'should', 'know', 'better.'], ['Have', 'you', 'ever', 'been', 'arrested?'], ["You're", 'so', 'sweet.'], ["I'm", 'assuming', 'this', 'is', 'your', 'father.'], ["That's", 'the', 'fastest', 'train', 'in', 'the', 'world.'], ['It', 'was', 'a', 'forced', 'smile.'], ['She', 'likes', 'no', 'one', 'and', 'no', 'one', 'likes', 'her.'], ["We're", 'not', 'certain', 'of', 'that', 'yet.'], ['He', 'reached', 'across', 'the', 'table', 'and', 'shook', 'my', 'hand.'], ['He', 'did', 'the', 'best', 'he', 'could.'], ['If', 'I', 'were', 'in', 'your', 'place,', 'I', 'would', 'lend', 'him', 'a', 'hand.'], ['No', 'one', 'believed', 'me.'], ["That's", 'not', 'entirely', 'true,', 'is', 'it?'], ['Tell', 'me', 'where', 'you', 'went.'], ['How', 'about', 'having', 'a', 'barbecue', 'party', 'next', 'Sunday?'], ["They're", 'dangerous.'], ['He', 'has', 'an', 'uncontrollable', 'temper.'], ['I', 'know', 'people.'], ["I'd", 'like', 'to', 'find', 'a', 'French-speaking', 'doctor.'], ['Some', 'go', 'to', 'school', 'by', 'bicycle,', 'others', 'go', 'by', 'bus.'], ['Try', 'to', 'open', 'the', 'door.'], ['Tom', "can't", 'remember', "Mary's", 'address.'], ['How', 'about', 'eating', 'out', 'this', 'evening', 'for', 'a', 'change?'], ["Don't", 'do', 'it!'], ['Her', 'skin', 'is', 'smooth.'], ['My', 'father', "doesn't", 'drink', 'too', 'much', 'sake.'], ['If', 'you', 'have', 'questions,', "don't", 'hesitate', 'to', 'jump', 'in.'], ['You', 'must', 'get', 'up', 'a', 'little', 'earlier.'], ['I', 'like', 'clocks.'], ['He', "doesn't", 'understand', 'me.'], ['Will', 'you', 'go?'], ['Tom', 'sounds', 'angry.'], ['If', 'I', 'were', 'rich,', 'I', 'would', 'do', 'so.', 'As', 'it', 'is,', 'I', 'can', 'do', 'nothing.'], ['I', 'may', 'go', 'out', 'if', 'the', 'rain', 'lets', 'up.'], ['There', 'was', 'no', 'signature', 'on', 'the', 'contract.'], ['We', "can't", 'help', 'you', 'with', 'that.'], ['I', 'appreciate', 'you', 'calling', 'me.'], ['I', 'go', 'to', 'the', 'library', 'at', 'least', 'once', 'a', 'week.'], ['She', 'stayed', 'at', 'the', 'hotel', 'for', 'several', 'days.'], ['Is', 'this', 'all', 'yours?'], ['May', 'I', 'suggest', 'another', 'approach?'], ['I', 'brought', 'these', 'flowers', 'for', 'you.'], ['You', 'never', 'have', 'any', 'doubts,', 'do', 'you?'], ['He', 'wants', 'to', 'spend', 'time', 'with', 'his', 'daughter.'], ['Keep', 'an', 'eye', 'on', 'the', 'child', 'for', 'me', 'for', 'a', 'moment.'], ['My', 'father', 'disapproved', 'of', 'my', 'going', 'to', 'the', 'concert.'], ['People', "aren't", 'all', 'the', 'same.'], ['Tom', 'was', 'alone', 'last', 'night', 'at', 'the', 'bar.'], ['I', 'want', 'to', 'talk', 'to', 'you', 'about', 'this', 'list.'], ['They', 'were', 'soldiers.'], ['This', 'chair', 'is', 'very', 'comfortable,', 'but', 'I', "don't", 'like', 'the', 'color.'], ["I'm", 'working', 'on', 'it.'], ['They', 'made', 'me', 'go', 'there.'], ['I', "can't", 'play', 'tennis', 'as', 'well', 'as', 'Tom.'], ["Where's", 'the', 'dining', 'car?'], ['Would', 'you', 'like', 'to', 'be', 'famous?'], ["I'd", 'like', 'to', 'get', 'rid', 'of', 'all', 'these', 'things.'], ["Let's", 'find', 'another', 'place.'], ['His', "aunt's", 'apple', 'pie', 'was', 'delicious', 'and', 'he', 'had', 'a', 'second', 'helping.'], ["I'm", 'not', 'a', 'fool.'], ['She', 'demanded', 'to', 'see', 'the', 'manager.'], ['I', 'thought', "you'd", 'be', 'here.'], ["You're", 'such', 'a', 'jerk.'], ['Is', 'that', 'the', 'new', 'guy?'], ['Go', 'to', 'bed.'], ['Can', 'you', 'read', 'this', 'without', 'your', 'glasses?'], ['Tom', 'played', 'the', 'cello.'], ['Do', 'you', 'want', 'to', 'make', 'a', 'deal?'], ['Will', 'I', 'have', 'a', 'scar?'], ['My', 'father', 'sometimes', 'goes', 'abroad.'], ['Everyone', 'cheered.'], ["That's", 'what', 'my', 'friends', 'keep', 'telling', 'me.'], ['His', 'concert', 'was', 'very', 'good.'], ['She', 'was', 'born', 'last', 'year.'], ['Do', 'you', 'know', 'where', 'the', 'others', 'are?'], ['My', 'sister', 'showers', 'every', 'morning.'], ['If', 'you', "don't", 'want', 'to', 'miss', 'the', 'train,', "you'd", 'better', 'hurry.'], ['We', 'saw', 'a', 'stranger', 'walking', 'outside.'], ['I', 'kept', 'him', 'company', 'while', 'his', 'wife', 'was', 'in', 'surgery.'], ['I', 'enjoy', 'it', 'more', 'each', 'time.'], ['The', 'sun', 'shines', 'during', 'the', 'day.'], ['The', "joke's", 'on', 'you.'], ['I', "can't", 'stand', 'it', 'any', 'longer.'], ["We're", 'friends', 'now.'], ['Developing', 'political', 'awareness', 'takes', 'time.'], ['We', 'took', 'a', 'walk', 'along', 'the', 'river.'], ["You're", 'not', 'going', 'to', 'like', 'that,', 'are', 'you?'], ['This', 'book', 'is', 'very', 'good.'], ['My', 'eyes', 'feel', 'itchy.'], ['What', 'color', 'is', 'this?'], ['The', 'pain', 'started', 'last', 'night.'], ['I', 'could', 'tell', 'you', 'that', 'I', 'love', 'you,', 'but', "I'd", 'be', 'lying.'], ['I', 'must', 'finish', 'this', 'work', 'first.'], ["I'm", 'all', 'thumbs', 'when', 'it', 'comes', 'to', 'origami,', 'or', 'paper', 'folding.'], ['You', 'were', 'great', 'today.'], ['Bring', 'your', 'sister', 'next', 'time.'], ['This', 'clock', 'is', 'accurate.'], ['You', 'said', 'that', 'you', 'hated', 'Tom.'], ['Am', 'I', 'allowed', 'to', 'use', 'this?'], ['Darkness', 'causes', 'many', 'children', 'to', 'be', 'afraid.'], ['A', 'thief', 'broke', 'into', 'the', 'house', 'to', 'steal', 'the', 'money.'], ['This', 'textbook', 'is', 'too', 'hard', 'for', 'me.'], ['This', 'is', 'not', 'negotiable.'], ['I', "didn't", 'really', 'enjoy', 'that.'], ['The', 'book', 'is', 'very', 'interesting.'], ['I', "don't", 'like', 'your', 'smile.'], ['I', 'just', "didn't", 'want', 'to', 'take', 'any', 'chances.'], ['They', 'were', 'satisfied', 'with', 'the', 'result.'], ["I'm", 'a', 'baker.'], ['I', 'doubt', 'that', 'our', 'new', 'boss', 'will', 'be', 'any', 'worse', 'than', 'the', 'old', 'one.'], ['Have', 'you', 'ever', 'kissed', 'another', 'guy?'], ["We're", 'all', 'bored.'], ['Will', 'the', 'weather', 'be', 'good', 'tomorrow?'], ['Why', 'did', 'you', 'buy', 'flowers?'], ['The', 'police', 'are', 'certain', 'to', 'get', 'him', 'in', 'the', 'end', 'wherever', 'he', 'may', 'go.'], ['I', 'am', 'not', 'always', 'at', 'home', 'on', 'Sundays.'], ['Stop', 'whining.'], ['Whales', 'feed', 'on', 'small', 'fish.'], ['I', 'talked', 'to', 'Tom', 'this', 'morning', 'just', 'before', 'the', 'meeting.'], ['The', 'addict', 'died', 'from', 'a', 'drug', 'overdose.'], ["I'm", 'glad', 'to', 'finally', 'meet', 'you.'], ['She', 'is', 'proud', 'of', 'her', 'students.'], ['You', 'must', 'be', 'a', 'good', 'cook.'], ["I'm", 'turning', 'thirty', 'this', 'October.'], ['"Could', 'you', 'do', 'this', 'instead', 'of', 'me?"', '"Sorry,', "I'm", 'too', 'busy."'], ['I', "don't", 'have', 'the', 'ball.'], ['It', 'is', 'a', 'song.'], ['Why', 'are', 'you', 'doing', 'this?'], ['They', 'made', 'fun', 'of', 'my', 'clothes.'], ['I', 'gave', 'my', 'seat', 'to', 'the', 'old', 'lady.'], ['Tom', 'will', 'always', 'remember', 'you.'], ['You', "didn't", 'buy', 'that', 'story,', 'did', 'you?'], ['Most', 'girls', 'think', 'that', 'they', 'are', 'pretty.'], ['I', 'teach', 'French.'], ['I', "can't", 'tell', 'you', 'what', 'we', 'did', 'last', 'night.'], ['It', 'was', 'not', 'always', 'this', 'way.'], ["I'm", 'going', 'to', 'wear', 'these', 'shoes', 'on', 'our', 'date', 'tonight.'], ['I', 'have', 'to', 'come', 'on', 'Monday.'], ['An', 'old', 'man', 'lay', 'dead', 'on', 'the', 'road.'], ['Have', 'you', 'gone', 'mad?'], ['I', 'wonder', 'where', 'Tom', 'and', 'Mary', 'are.'], ['Keep', 'it', 'together,', 'Tom.'], ['He', 'took', 'out', 'a', 'dollar', 'from', 'his', 'wallet.'], ['Tom,', 'be', 'careful!'], ["I'm", 'offended.'], ['What', 'are', 'you', 'writing?'], ['I', 'have', 'been', 'learning', 'English', 'these', 'four', 'years.'], ['Tom', 'lit', 'the', 'candle', 'that', 'was', 'on', 'the', 'table.'], ['Things', 'have', 'changed.'], ['This', 'will', 'cost', '€30.'], ["You've", 'got', 'a', 'pretty', 'good', 'memory.'], ['Can', 'you', 'sing', 'us', 'a', 'song?'], ['He', 'stood', 'behind', 'me.'], ['I', 'like', 'your', 'hat.'], ["Tom's", 'room', 'is', 'tidy.'], ['I', 'wish', 'I', 'could', 'go', 'to', 'the', 'concert.'], ['My', 'camera', 'is', 'different', 'from', 'yours.'], ['I', "don't", 'have', 'any', 'objections.'], ['Quit', 'acting', 'like', 'a', 'baby.'], ['Please', 'help', 'Tom.'], ['Tom', 'said', 'that', 'Mary', 'died', 'in', 'her', 'sleep.'], ["I'll", 'go', 'check.'], ['Is', 'your', 'school', 'far', 'away', 'from', 'your', 'house?'], ['You', 'should', 'read', 'a', 'book', 'like', 'the', 'one', 'he', 'is', 'reading', 'now.'], ['I', 'have', 'a', 'serious', 'problem', 'with', 'that.'], ['You', 'sound', 'tired.'], ['Is', 'her', 'story', 'true?'], ['What', 'do', 'you', 'really', 'think?'], ['I', 'forbid', 'that.'], ['A', 'little', 'louder,', 'please.'], ['Tom,', 'can', 'you', 'hear', 'me?'], ['What', 'time', 'did', 'you', 'go', 'to', 'bed', 'yesterday?'], ['On', 'the', 'whole,', 'I', 'think', 'your', 'plan', 'is', 'a', 'very', 'good', 'one.'], ['How', 'many', 'days', 'does', 'it', 'usually', 'take', 'to', 'get', 'there?'], ['Mary', 'wanted', 'me', 'to', 'look', 'the', 'other', 'way', 'while', 'she', 'was', 'getting', 'dressed.'], ['I', 'suggest', 'that', 'you', 'proceed', 'very', 'carefully.'], ['How', 'would', 'you', 'feel', 'if', 'your', 'wife', 'left', 'you?'], ['Are', 'you', 'avoiding', 'me?'], ["You're", 'very', 'good.'], ['I', "can't", 'believe', "that's", "what's", 'really', 'bothering', 'Tom.'], ['He', 'will', 'go', 'to', 'New', 'York', 'next', 'month.'], ['My', 'grandfather', 'sometimes', 'talks', 'to', 'himself', 'when', "he's", 'alone.'], ['I', "won't", 'bother', 'you.'], ['When', 'I', 'was', 'young,', 'I', 'used', 'to', 'often', 'watch', 'baseball', 'games.'], ['The', 'noise', 'kept', 'me', 'awake', 'all', 'night.'], ['Are', 'you', 'sure', "everyone's", 'already', 'left?'], ['I', 'am', 'no', 'more', 'an', 'artist', 'than', 'you', 'are.'], ['This', 'is', 'going', 'to', 'get', 'messy.'], ["You've", 'done', 'a', 'pretty', 'good', 'job', 'so', 'far.'], ['He', 'is', 'the', 'father', 'of', 'three', 'children.'], ["Don't", 'be', 'so', 'pessimistic.'], ['I', 'think', 'you', 'are', 'mistaken.'], ['Life', 'is', 'full', 'of', 'confusing', 'things.'], ['Tom', "didn't", 'eat', 'the', 'apple', 'you', 'gave', 'him.'], ['You', 'were', 'right,', 'too.'], ["I'm", 'too', 'tired', 'to', 'think', 'about', 'this', 'problem', 'now.'], ['He', 'never', 'opens', 'his', 'mouth', 'without', 'complaining', 'about', 'something.'], ["I've", 'just', 'finished', 'writing', 'a', 'letter.'], ["I'm", 'going', 'to', 'put', 'a', 'curse', 'on', 'you.'], ["It's", 'very', 'likely', 'that', "he'll", 'be', 'late.'], ['Can', 'you', 'give', 'me', 'your', 'phone', 'number?'], ['Tom', 'will', 'kill', 'me.'], ['We', 'are', 'looking', 'for', 'someone', 'who', 'is', 'proficient', 'in', 'French.'], ['He', 'admitted', 'that', 'he', 'wanted', 'to', 'escape', 'from', 'here.'], ['I', 'know', 'what', 'you', 'mean.'], ['I', 'outrank', 'you.'], ["You're", 'not', 'being', 'fair.'], ['I', 'understand', 'your', 'position', 'perfectly.'], ['Tom', 'and', 'Mary', 'are', 'getting', 'married', 'in', 'three', 'months.'], ['I', "don't", 'even', 'want', 'to', 'know', 'who', 'you', 'are.'], ["He's", 'very', 'likely', 'to', 'come.'], ['What', 'book', 'did', 'you', 'buy?'], ['Do', 'you', 'want', 'me', 'to', 'explain', 'it', 'again?'], ['What', 'is', 'the', 'name', 'of', 'this', 'river?'], ['My', 'father', 'stopped', 'drinking.'], ["I'm", 'a', 'normal', 'guy.'], ['It', 'seemed', 'to', 'work.'], ['People', 'talk', 'without', 'having', 'anything', 'to', 'say.'], ['We', 'know', 'what', 'to', 'do', 'next.'], ['This', 'is', 'a', 'Japanese', 'doll.'], ['We', 'have', 'a', 'lot', 'to', 'learn', 'from', 'each', 'other.'], ['I', 'felt', 'betrayed.'], ['Could', 'I', 'have', 'a', 'tissue?'], ['I', 'wish', 'I', 'had', 'married', 'your', 'sister', 'instead', 'of', 'you.'], ['I', 'fell', 'asleep', 'while', 'reading', 'a', 'book.'], ['I', 'never', 'told', 'you', 'to', 'quit.'], ['No', 'pain,', 'no', 'gain.'], ['She', 'drowned', 'herself', 'in', 'some', 'lake.'], ["What's", 'my', 'room', 'number?'], ['No', 'one', 'voted', 'against', 'it.'], ["Don't", 'say', 'that', 'word.'], ['Let', 'me', 'see', 'your', 'tongue.'], ['He', "didn't", 'get', 'paid', 'for', 'it.'], ['I', 'thought', "you'd", 'been', 'killed.', "I'm", 'glad', 'I', 'was', 'wrong.'], ['Besides', 'lending', 'books,', 'libraries', 'offer', 'various', 'other', 'services.'], ["I've", 'been', 'impressed', 'with', "Tom's", 'work.'], ["I'm", 'so', 'happy', 'that', "you're", 'here!'], ["I'm", 'fasting.'], ['The', 'story', 'is', 'true.', 'Only', 'the', 'names', 'have', 'been', 'changed.'], ['I', 'was', 'surprised', 'by', 'his', 'perseverance.'], ['I', 'almost', 'always', 'win.'], ['There', 'is', 'a', 'limit', 'to', 'everything.'], ['Is', 'there', 'something', 'wrong', 'with', 'your', 'car?'], ['"Tom\'s', 'crying."', '"I', 'know."'], ['The', 'house', 'needs', 'a', 'new', 'coat', 'of', 'paint.'], ['Stay', 'away', 'from', 'that.'], ['Tom', 'worries', 'too', 'much.'], ["He's", 'saving', 'up', 'to', 'go', 'to', 'college.'], ['Tom', "can't", 'do', 'the', 'job.'], ['I', 'have', 'come', 'in', 'response', 'to', 'your', 'ad', 'in', 'the', 'paper.'], ['The', 'day', 'will', 'surely', 'come', 'when', 'your', 'dreams', 'will', 'come', 'true.'], ['Does', 'that', 'make', 'sense', 'to', 'you?'], ['What', 'kind', 'of', 'car', 'do', 'you', 'have?'], ['How', 'often', 'do', 'you', 'play', 'sports?'], ['We', 'called', 'off', 'the', 'wedding.'], ["I'm", 'waiting', 'for', 'the', 'bus.'], ['How', 'many', 'do', 'you', 'see', 'now?'], ["I'm", 'not', 'getting', 'involved.'], ['I', 'think', "it's", 'time', 'to', 'take', 'a', 'break.'], ['Stop', 'spending', 'my', 'money.'], ["Don't", 'tell', 'my', 'girlfriend.'], ['Are', 'you', 'enjoying', 'the', 'play?'], ['I', 'never', 'imagined', "I'd", 'feel', 'this', 'way', 'about', 'you.'], ['I', 'want', 'a', 'notebook.'], ['I', 'think', "you'd", 'better', 'go.'], ['You', 'won', 'everything.'], ['Would', 'you', 'come', 'with', 'us?'], ["I'll", 'go', 'by', 'plane.'], ['Run', 'as', 'fast', 'as', 'you', 'can.'], ['I', 'think', 'Tom', 'told', 'you', 'the', 'truth.'], ['It', "didn't", 'help.'], ['What', 'are', 'you', 'learning', 'at', 'school?'], ["You're", 'winning,', "aren't", 'you?'], ['I', 'want', 'to', 'catch', 'the', '11:45.'], ['Is', 'there', 'a', 'woman', 'in', 'your', 'life?'], ['What', 'time', 'is', 'your', 'plane', 'scheduled', 'to', 'take', 'off?'], ['I', 'really', "don't", 'get', 'you.'], ['I', 'spent', 'the', 'day', 'with', 'Tom.'], ['I', 'thought', 'you', 'might', 'want', 'to', 'come', 'along.'], ['You', "won't", 'believe', 'what', "I've", 'got.'], ['I,', 'too,', "didn't", 'understand', 'anything.'], ['I', "don't", 'think', 'I', 'can', 'help', 'you.'], ['You', "don't", 'want', 'to', 'get', 'married', 'either,', 'right?'], ["Who's", 'your', 'favorite', 'lyricist?'], ['Wait', 'here', 'till', 'I', 'come', 'back.'], ['I', 'need', 'to', 'take', 'your', 'temperature.'], ['My', 'mom', 'works', 'in', 'a', 'factory.'], ['There', 'is', 'a', 'message', 'for', 'you.'], ["What's", 'the', 'weather', 'like?'], ['I', 'bought', 'this', 'camera', 'yesterday.'], ["You're", 'German,', 'right?'], ['I', 'had', 'to', 'walk', 'because', 'there', 'were', 'no', 'taxis.'], ['Are', 'you', 'implying', 'something?'], ['There', 'is', 'always', 'the', 'risk', 'of', 'losing', 'all', 'the', 'data', 'on', 'your', 'hard', 'disk.'], ['What', 'are', 'you', 'drinking?'], ['You', "can't", 'judge', 'a', 'book', 'by', 'its', 'cover.'], ['Did', 'you', 'get', 'the', 'flowers', 'I', 'sent', 'you?'], ['She', 'greeted', 'us', 'with', 'a', 'smile.'], ['We', 'have', 'other', 'priorities', 'at', 'the', 'moment.'], ["I'll", 'apologize', 'later.'], ['They', 'established', 'a', 'Japanese', 'language', 'class', 'for', 'the', 'refugees.'], ['Hand', 'it', 'over.'], ['We', 'stayed', 'at', 'the', 'Hilton', 'Hotel.'], ['They', 'work', 'too', 'much.'], ['It', 'may', 'well', 'rain', 'before', 'tonight.'], ['It', 'is', 'too', 'dark', 'to', 'play', 'outside.'], ['Shall', 'I', 'begin?'], ['You', "aren't", 'in', 'any', 'danger.'], ['He', 'was', 'sick,', 'but', 'he', 'went', 'to', 'school.'], ['I', 'think', "it's", 'time', 'for', 'me', 'to', 'give', 'up', 'on', 'this', 'relationship.'], ['Tom', "didn't", 'know', "he'd", 'hurt', 'anybody.'], ['They', 'live', 'on', 'the', 'floor', 'below.'], ['Wash', 'your', 'face', 'before', 'you', 'go', 'to', 'school.'], ['Why', 'do', 'you', 'really', 'want', 'to', 'lose', 'weight?'], ['Rome', 'was', 'the', 'largest', 'city', 'in', 'the', 'world', 'at', 'the', 'time.'], ["I'm", 'not', 'young.'], ['You', 'made', 'the', 'same', 'mistake.'], ['She', 'says', "she's", 'not', 'dating', 'anyone', 'now,', 'but', 'I', "don't", 'believe', 'her.'], ["We're", 'out', 'of', 'ammo.'], ['I', "can't", 'stand', 'this', 'pain', 'any', 'more.'], ['No', 'one', 'knew', 'how', 'much', 'Tom', 'loved', 'Mary.'], ['I', 'can', 'assure', 'you', 'that', 'you', 'are', 'wrong.'], ['What', 'are', 'you', 'working', 'on?'], ["I'm", 'very', 'sorry', 'to', 'have', 'troubled', 'you.'], ['I', 'really', "don't", 'need', 'any', 'help.'], ['I', 'just', 'wanted', 'to', 'see', 'if', 'you', 'knew.'], ["It's", 'against', 'the', 'rules.'], ['May', 'I', 'have', 'a', 'bus', 'route', 'map?'], ["We're", 'having', 'a', 'blast.'], ['Beethoven', 'was', 'a', 'great', 'composer.'], ['I', 'hope', 'you', 'were', 'able', 'to', 'buy', 'everything', 'you', 'need.'], ["I'd", 'like', 'to', 'ask', 'you', 'some', 'questions.'], ['Are', 'there', 'many', 'flowers', 'in', 'the', 'garden?'], ['We', "don't", 'have', 'any', 'sheep.'], ['How', 'old', 'is', 'the', 'oldest', 'person', 'you', 'know?'], ["I'd", 'like', 'to', 'book', 'a', 'table', 'for', 'four', 'for', 'tomorrow', 'night.'], ['She', 'is', 'a', 'twin.'], ['Are', 'you', 'ready', 'for', "today's", 'game?'], ['If', "I'm", 'not', 'too', 'busy,', "I'll", 'help', 'you', 'tomorrow.'], ['I', 'want', 'an', 'apple.'], ['I', "don't", 'think', "I'll", 'ever', 'sound', 'like', 'a', 'native', 'speaker.'], ['The', 'leaves', 'of', 'the', 'trees', 'have', 'turned', 'red.'], ['The', 'ship', "hasn't", 'even', 'docked', 'yet.'], ['She', 'looks', 'confused.'], ['How', 'are', 'you', 'getting', 'on?'], ['How', 'are', 'you', 'doing?'], ['Why', "don't", 'you', 'come', 'over', 'and', 'eat', 'with', 'us', 'this', 'evening?'], ['I', 'wish', 'you', 'would', 'tell', 'me', 'what', 'I', 'ought', 'to', 'do', 'in', 'this', 'difficult', 'situation.'], ['How', 'much', 'am', 'I', 'paying', 'you?'], ['She', 'asked', 'us', 'to', 'leave', 'her', 'alone.'], ["Don't", 'be', 'upset.'], ['I', 'baked', 'some', 'cookies.'], ["I'm", 'feeling', 'kind', 'of', 'sleepy.'], ['She', 'is', 'teaching', 'us', 'French.'], ['I', 'want', 'my', 'children', 'to', 'have', 'that', 'opportunity.'], ['May', 'I', 'eat', 'something?'], ["That's", 'why', 'he', 'got', 'up', 'early.'], ['The', 'storm', 'kept', 'us', 'from', 'searching', 'for', 'the', 'missing', 'child.'], ['Both', 'of', 'them', 'started', 'laughing.'], ['Would', 'you', 'like', 'some', 'cookies?'], ['I', 'felt', 'a', 'little', 'stiff.'], ['You', 'know', 'where', 'to', 'find', 'me.'], ['He', 'devoted', 'his', 'life', 'to', 'his', 'study.'], ['These', 'are', 'my', 'favorite', 'pair', 'of', 'shoes.'], ['I', 'like', 'summer', 'the', 'best.'], ["Can't", 'you', 'hear', 'the', 'sound?'], ['When', 'will', 'her', 'new', 'novel', 'be', 'published?'], ['We', 'should', 'do', 'something', 'about', 'it.'], ['You', 'should', 'see', 'the', 'doctor.'], ["What's", 'going', 'on', 'around', 'here?'], ['This', 'is', 'a', 'rental', 'car.'], ['The', 'next', 'sentence', 'is', 'false.'], ['Why', 'is', 'autumn', 'called', '"fall"', 'in', 'America?'], ['I', "don't", 'want', 'to', 'torment', 'you', 'any', 'longer.'], ['He', 'made', 'her', 'clean', 'the', 'room.'], ["Don't", 'walk', 'on', 'the', 'grass.'], ['Everyone', 'knew', 'that', 'Tom', 'was', 'lying.'], ['I', 'suppose', 'I', 'could', 'change', 'a', 'tire', 'if', 'I', 'had', 'to.'], ['Do', 'you', 'live', 'in', 'this', 'dorm?'], ["I've", 'been', 'thinking', 'about', 'you,', 'too.'], ['The', 'child', 'was', 'told', 'to', 'apologize', 'for', 'being', 'rude', 'to', 'the', 'guests.'], ['How', 'does', 'this', 'disease', 'spread?'], ['Is', 'reprinting', 'this', 'article', 'a', 'possibility?'], ['I', 'need', "everyone's", 'help', 'tomorrow.'], ['Turn', 'it', 'up.'], ['It', 'looks', 'like', 'Tom', 'is', 'asleep.'], ['Does', 'this', 'make', 'me', 'look', 'fat?'], ['She', "doesn't", 'have', 'many', 'friends.'], ["Don't", 'you', 'watch', 'old', 'movies?'], ["It's", 'just', 'the', 'right', 'size.'], ['Mary', 'put', 'her', 'knitting', 'aside', 'and', 'stood', 'up.'], ["Let's", 'delay', 'this', 'decision', 'until', 'tomorrow.'], ['Do', 'you', 'study', 'English?'], ['Give', 'us', 'a', 'second.'], ['Our', 'school', 'is', 'near', 'the', 'station.'], ['She', 'gave', 'in', 'to', 'the', 'temptation.'], ['The', 'magician', 'made', 'birds', 'appear', 'and', 'disappear.'], ['I', "can't", 'tell', 'you', 'how', 'many', 'times', "I've", 'been', 'there.'], ['How', 'many', 'pairs', 'of', 'shoes', 'do', 'you', 'own?'], ["We're", 'not', 'sure.'], ['He', 'made', 'believe', 'he', 'was', 'a', 'doctor.'], ['Tom,', 'do', 'you', 'still', 'love', 'me?'], ['Shall', 'I', 'ask', 'her', 'to', 'send', 'the', 'book', 'to', 'us?'], ['Act', 'like', 'a', 'man.'], ['They', 'call', 'each', 'other', 'almost', 'every', 'day.'], ['What', 'are', 'your', 'conclusions?'], ['Make', 'yourself', 'comfortable.'], ["Let's", 'not', 'waste', 'any', 'more', 'of', 'each', "other's", 'time.'], ['Who', 'would', 'you', 'like', 'to', 'speak', 'to?'], ["You're", 'not', 'wanted', 'here.'], ['It', 'is', 'high', 'time', 'you', 'went', 'to', 'bed.'], ['His', 'explanation', 'is', 'not', 'clear.'], ['Tom', 'carried', 'the', 'suitcases', 'for', 'me.'], ['May', 'I', 'use', 'some', 'paper?'], ['Good', 'evening,', 'ladies', 'and', 'gentlemen.'], ['I', 'run', 'five', 'miles', 'a', 'day.'], ['Everything', 'in', 'the', 'room', 'was', 'dirty.'], ['Am', 'I', 'overreacting?'], ['He', 'is', 'a', 'compulsive', 'gambler.'], ['Not', 'everyone', 'can', 'be', 'a', 'poet.'], ['We', 'were', 'kids', 'together.'], ['Do', 'I', 'have', 'to', 'do', 'it', 'over', 'again?'], ['Almost', 'no', 'one', 'thinks', 'that', 'we', 'are', 'sisters.'], ['I', 'wish', 'Tom', "could've", 'been', 'with', 'us', 'today.'], ['Look', 'closely.'], ['We', 'invited', 'him', 'to', 'the', 'party,', 'but', 'he', 'did', 'not', 'show', 'up.'], ["I'm", 'sure', 'I', 'can', 'find', 'something', 'for', 'you', 'to', 'do.'], ["It's", 'very', 'surprising.'], ['I', 'am', 'in', 'no', 'position', 'to', 'do', 'anything', 'about', 'it.'], ['If', 'I', 'were', 'you,', "I'd", 'follow', 'his', 'advice.'], ['What', 'did', 'they', 'hit', 'you', 'with?'], ['We', 'still', 'have', 'a', 'long', 'way', 'to', 'go.'], ['What', 'else', 'do', 'you', 'plan', 'to', 'do?'], ["I'm", 'in', 'a', 'good', 'mood', 'today.'], ["It's", 'my', 'left', 'eye', "that's", 'bothering', 'me.'], ['I', "don't", 'care', 'who', "you're", 'going', 'with.'], ['I', 'had', 'a', 'strange', 'dream', 'last', 'night.'], ['Why', 'did', 'she', 'come', 'home', 'early?'], ['Tom', "won't", 'let', 'you', 'down.'], ['I', 'do', 'all', 'the', 'work.'], ["Let's", 'go', 'by', 'car.'], ['I', "can't", 'believe', "you're", 'giving', 'up.'], ['I', 'had', 'everything', 'under', 'control.'], ['How', 'much', 'are', 'the', 'pears?'], ['If', 'it', 'gets', 'boring,', 'I', 'will', 'go', 'home.'], ['I', 'work', 'alone.'], ['He', 'is', 'not', 'ashamed', 'of', 'being', 'poor.'], ['Had', 'you', 'been', 'drinking?'], ['You', 'promised', 'me', "you'd", 'look', 'after', 'Tom.'], ['I', "don't", 'want', 'to', 'go', 'bald', 'when', "I'm", 'still', 'young.'], ['The', 'days', 'grow', 'shorter', 'as', 'winter', 'approaches.'], ['He', 'had', 'already', 'gone.'], ['He', 'took', 'her', 'out', 'for', 'a', 'drive.'], ['You', 'always', 'were', 'a', 'good', 'cook.'], ['I', 'loved', 'to', 'climb', 'trees', 'when', 'I', 'was', 'a', 'kid.'], ['Can', 'you', 'give', 'my', 'brother', 'a', 'job?'], ['My', 'parrot', 'flew', 'away.'], ["I'm", 'proud', 'of', 'you', 'all.'], ['I', 'think', 'that', 'they', 'will', 'follow', 'us.'], ["You're", 'not', 'in', 'a', 'hurry,', 'are', 'you?'], ["You're", 'too', 'tense.'], ['Tom', 'wanted', 'to', 'be', 'a', 'pharmacist.'], ['I', 'advise', 'you', 'to', 'change', 'clothes.'], ['You', "wouldn't", 'have', 'won', 'without', 'me.'], ["I'm", 'not', 'as', 'rich', 'as', 'I', 'was.'], ['This', 'is', 'mine,', "isn't", 'it?'], ["I'll", 'get', 'lost.'], ['All', 'I', 'think', 'about', 'is', 'you.'], ["It's", 'really', 'embarrassing.'], ['Forget', 'it.', "It's", 'too', 'risky.'], ['I', 'know', 'what', 'Tom', 'and', 'Mary', 'are', 'going', 'through.'], ['She', 'walked', 'slowly', 'so', 'she', "wouldn't", 'slip.'], ['Have', 'you', 'been', 'out', 'at', 'all?'], ["I'm", 'tired', 'of', 'being', 'careful.'], ["You're", 'not', 'alone.'], ['Tom', 'has', 'denied', 'the', 'allegation.'], ['Germany', 'then', 'had', 'a', 'powerful', 'army.'], ['It', 'has', 'no', 'parallel.'], ['I', "don't", 'know', 'the', 'reason', 'why', 'he', 'was', 'absent.'], ["I'll", 'get', 'you', 'a', 'towel.'], ['I', 'hope', 'you', 'enjoyed', 'your', 'stay', 'with', 'us.'], ['This', 'song', 'reminds', 'me', 'of', 'my', 'junior', 'high', 'school', 'days.'], ['I', 'know', 'you', 'hired', 'an', 'accountant.'], ['I', 'felt', 'a', 'light', 'touch', 'on', 'my', 'shoulder.'], ['You', "can't", 'do', 'that.'], ["I'll", 'fix', 'you', 'a', 'cup', 'of', 'tea.'], ['By', 'the', 'way,', 'what', 'do', 'you', 'do?'], ['I', 'think', 'that', "you're", 'wrong.'], ['Is', 'your', 'father', 'a', 'doctor?'], ["You've", 'forgotten', 'me,', "haven't", 'you?'], ['Actually,', "I'm", 'kind', 'of', 'busy.'], ['Many', 'people', 'are', 'upset.'], ["They're", 'all', 'guilty.'], ['I', "don't", 'know', 'many', 'French', 'songs.'], ["It's", 'been', 'nice', 'meeting', 'you.'], ['I', 'have', 'nothing', 'to', 'do', 'with', 'that', 'crime.'], ['Whose', 'is', 'that', 'notebook?'], ['Who', 'was', 'that', 'woman?'], ['Someone', 'stole', 'my', 'bicycle.'], ['What', 'is', 'he', 'like?'], ['Do', 'you', 'really', 'think', 'Tom', 'is', 'handsome?'], ['His', 'advice', "didn't", 'help', 'at', 'all.'], ['The', 'guards', 'found', 'a', 'hacksaw', 'blade', 'in', 'the', "prisoner's", 'pocket.'], ['Do', 'you', 'think', 'the', 'rainy', 'season', 'will', 'set', 'in', 'early', 'this', 'year?'], ["You're", 'my', 'kind', 'of', 'gal.'], ['She', "can't", 'swim.'], ['My', 'father', 'is', 'going', 'to', 'retire', 'soon.'], ['I', 'had', 'a', 'hard', 'time', 'leaving.'], ['People', 'laughed', 'at', 'him.'], ['Which', 'one', 'of', 'you', "wasn't", 'on', 'the', 'bus?'], ["It's", 'about', 'time', 'I', 'was', 'going.'], ['You', 'can', 'sit', 'down', 'now.'], ['I', 'went', 'to', 'your', 'school.'], ['This', 'is', 'getting', 'tiresome.'], ["Let's", 'take', 'it', 'down', 'a', 'notch.'], ['You', "don't", 'have', 'to', 'yell.'], ['Why', 'did', 'you', 'ditch', 'me?'], ['These', 'mosquitos', 'are', 'eating', 'me', 'alive!'], ['You', 'can', 'make', 'your', 'own.'], ['It', 'was', 'a', 'hot', 'debate.'], ['How', 'much', 'is', 'the', 'rent?'], ['Tom', "won't", 'be', 'arrested.'], ['Please', 'keep', 'in', 'touch.'], ['I', 'have', 'a', 'job', 'for', 'you.'], ['Latin', 'is', 'a', 'dead', 'language.'], ['She', 'advised', 'him', 'to', 'lose', 'weight.'], ['He', 'was', 'about', 'to', 'speak.'], ['What', 'happens', 'next?'], ['We', 'got', 'ready.'], ['Give', 'me', 'some', 'time', 'to', 'let', 'it', 'all', 'sink', 'in.'], ['You', "can't", 'do', 'it', 'too', 'soon.'], ['You', "won't", 'need', 'it.'], ['This', 'car', 'is', 'my', "father's,", 'but', "it'll", 'soon', 'be', 'mine.'], ['I', 'object', 'to', 'being', 'treated', 'like', 'that.'], ['I', 'think', 'we', 'can.'], ["I'd", 'like', 'to', 'discuss', 'something', 'with', 'you.'], ['Try', 'to', 'resist.'], ["It's", 'a', 'brain-teaser.'], ['Did', 'you', 'have', 'your', 'photograph', 'taken', 'for', 'the', "driver's", 'license?'], ['He', 'likes', 'adventure.'], ['He', 'was', 'looking', 'for', 'a', 'good', 'job.'], ['Stop', 'acting', 'like', 'a', 'baby.'], ['I', 'speak', 'Chinese', 'almost', 'every', 'day.'], ['How', 'long', 'have', 'you', 'been', 'in', 'Japan?'], ['I', "don't", 'think', "I'll", 'be', 'needing', 'anything', 'else.'], ['You', 'can', 'go', 'if', 'you', 'want', 'to.'], ["I'm", 'wet.'], ['You', "don't", 'need', 'to', 'come', 'so', 'early.'], ['Can', 'someone', 'please', 'open', 'the', 'door?'], ['It', 'happened', 'here.'], ['What', 'do', 'you', 'think', 'of', 'these', 'shoes?'], ["Aren't", 'you', 'too', 'young', 'to', 'smoke?'], ['Room', 'service,', 'please.'], ['I', 'want', 'to', 'buy', 'a', 'new', 'pair', 'of', 'shoes.'], ['You', "don't", 'seem', 'very', 'sure.'], ["You're", 'all', 'happy.'], ['They', "don't", 'sell', 'what', 'you', 'need', 'here.'], ["That's", 'not', 'funny', 'at', 'all.'], ['No', 'one', 'supported', 'me.'], ['To', 'his', 'surprise,', 'the', 'door', 'opened', 'by', 'itself.'], ['Only', 'seven', 'Senators', 'remained', 'undecided.'], ['I', 'need', 'a', 'bigger', 'challenge.'], ["I'd", 'like', 'to', 'stay', 'here', 'with', 'Tom.'], ['We', 'had', 'a', 'heated', 'discussion', 'about', 'it.'], ["We'll", 'give', 'you', 'your', 'revenge.'], ['Open', 'your', 'mouth!'], ['Everything', 'happened', 'too', 'quickly.'], ['The', 'employees', 'are', 'all', 'unionized.'], ['She', 'woke', 'up', 'on', 'her', 'own.'], ['I', 'was', 'bored', 'because', 'I', 'had', 'seen', 'the', 'movie', 'before.'], ['I', 'was', 'surprised', 'by', 'what', 'I', 'learned.'], ['I', 'hope', "you're", 'well', 'rested.'], ["Don't", 'touch', 'the', 'flowers.'], ["I'm", 'right', 'behind', 'you.'], ["You're", 'resourceful.'], ['While', 'napping,', 'I', 'had', 'a', 'strange', 'dream.'], ['Do', 'you', 'have', 'any', 'idea', 'what', 'Tom', 'was', 'doing', 'in', 'Boston?'], ['Why', 'are', 'you', 'asking', 'these', 'questions?'], ['I', 'think', 'you', 'should', 'do', 'it.'], ['That', 'sounds', 'horrible.'], ['I', 'was', 'looking', 'for', 'my', 'diary.'], ['You', "won't", 'succeed.'], ["It's", 'something', 'my', 'mother', 'used', 'to', 'do.'], ['"When', 'did', 'you', 'buy', 'it?"', '"Let\'s', 'see.', 'I', 'bought', 'it', 'last', 'week."'], ['Let', 'me', 'give', 'you', 'my', 'phone', 'number.'], ['What', 'time', 'is', 'dinner?'], ['Tom', 'is', 'out', 'of', 'danger.'], ['Is', 'this', 'good', 'English?'], ['Tom', 'is', 'a', 'very', 'good', 'farmer.'], ['Why', 'take', 'the', 'risk?'], ['No', 'matter', 'how', 'bad', 'it', 'gets,', 'she', "won't", 'die', 'from', 'that', 'disease.'], ['I', 'got', 'it', 'through', 'my', 'head', 'that', 'my', "parent's", 'strict', 'rules', 'were', 'for', 'my', 'own', 'benefit.'], ["I'm", 'very', 'fat.'], ['I', "can't", 'do', 'this', 'myself.'], ['He', 'solved', 'the', 'problem', 'with', 'ease.'], ['I', 'am', 'responsible', 'for', 'her', 'protection.'], ['Tom', 'likes', 'that', 'one.'], ["We're", 'doing', 'everything', 'we', 'can', 'to', 'find', 'your', 'daughter.'], ['She', 'believes', 'her', 'son', 'is', 'still', 'alive.'], ['Are', 'you', 'seriously', 'thinking', 'about', 'buying', 'that', 'old', 'car?'], ['Do', 'the', 'police', 'have', 'any', 'idea', 'who', 'stole', 'it?'], ['Tom', 'takes', 'the', 'kids', 'to', 'the', 'school', 'every', 'day.'], ["I'm", 'so', 'lonely.'], ["I'm", 'stubborn.'], ['This', 'yogurt', 'tastes', 'strange.'], ['Show', 'me', 'the', 'way', 'to', 'the', 'bus', 'stop.'], ['The', 'power', 'went', 'out.'], ['I', 'have', 'a', 'very', 'pretty', 'girlfriend.'], ['Tell', 'me', 'you', 'still', 'love', 'me.'], ['He', 'went', 'to', 'school', 'to', 'study', 'yesterday.'], ["It's", 'very', 'dark', 'in', 'here.'], ['She', 'felt', 'something', 'touch', 'her', 'neck.'], ['He', 'adopted', 'the', 'orphan.'], ['I', 'am', 'not', 'ready', 'yet.'], ['Be', 'sensible.'], ["It's", 'hot', 'out', 'here.'], ['It', 'has', 'never', 'been', 'done', 'before.'], ['You', 'must', 'do', 'it', 'quickly.'], ['How', 'long', 'have', 'you', 'lived', 'in', 'Japan?'], ['I', 'used', 'to', 'play', 'tennis', 'in', 'high', 'school.'], ['He', "doesn't", 'know', 'the', 'difference', 'between', 'right', 'and', 'wrong.'], ["Don't", 'give', 'up', 'without', 'a', 'fight.'], ['Tom', 'is', 'not', 'fond', 'of', 'pets.'], ['I', 'hope', "she's", 'safe.'], ['I', "don't", 'want', 'to', 'hear', 'about', 'your', 'personal', 'problems.'], ['Does', 'anybody', 'here', 'have', 'a', 'corkscrew?'], ['She', 'reminds', 'me', 'of', 'someone.'], ['This', 'is', 'no', 'time', 'for', 'modesty.'], ['Get', 'rid', 'of', 'the', 'gun.'], ['You', 'were', 'terrified,', "weren't", 'you?'], ['He', 'had', 'to', 'reduce', 'the', 'price', 'of', 'his', 'wares.'], ['I', "didn't", 'need', "anyone's", 'help.'], ["I'm", 'sorry,', 'but', 'I', 'already', 'have', 'a', 'girlfriend.'], ["Can't", 'you', 'see', "I'm", 'busy?'], ['Tom', 'is', 'not', 'my', 'friend', 'anymore.'], ['You', 'might', 'as', 'well', 'read', 'a', 'novel', 'instead', 'of', 'staring', 'at', 'the', 'ceiling.'], ['Were', 'you', 'watching', 'TV', 'last', 'night', 'at', 'nine', "o'clock?"], ['I', 'wonder', 'why', 'Tom', 'never', 'does', 'that.'], ['Was', 'Tom', 'in', 'Boston', 'yesterday?'], ['Tom', 'said', 'he', 'enjoyed', 'it.'], ['I', 'did', 'smoke', 'when', 'I', 'was', 'young.'], ['A', 'lot', 'of', 'soldiers', 'were', 'killed', 'here.'], ['We', 'depend', 'on', 'each', 'other.'], ['Could', 'I', 'get', 'one', 'more', 'beer,', 'please?'], ['We', 'have', 'two', 'dogs,', 'three', 'cats,', 'and', 'six', 'chickens.'], ['Who', 'are', 'you', 'all?'], ['They', 'kissed', 'in', 'the', 'rain.'], ["I'm", 'only', 'going', 'to', 'say', 'this', 'once,', 'so', 'listen', 'carefully.'], ["I'm", 'not', 'tired', 'at', 'all.'], ['I', "don't", 'believe', 'any', 'of', 'it.'], ['The', 'United', 'Nations', 'sent', 'troops', 'to', 'intervene', 'in', 'the', 'conflict.'], ['She', 'advised', 'him', 'to', 'go', 'to', 'the', 'police', 'station,', 'but', 'he', 'was', 'afraid', 'to.'], ['I', "didn't", 'learn', 'anything', 'new.'], ['I', 'insist', 'that', 'he', 'should', 'go', 'with', 'us.'], ['This', 'was', 'really', 'unfair.'], ['I', "didn't", 'drive.'], ["Don't", 'just', 'whine,', 'do', 'something!'], ["I'm", 'stubborn.'], ['No', 'one', 'wants', 'to', 'fight.'], ['An', 'atomic', 'bomb', 'was', 'dropped', 'on', 'Hiroshima', 'in', '1945.'], ["I'll", 'cover', 'for', 'you.'], ['Why', "don't", 'you', 'run', 'along?'], ['Tell', 'them', 'to', 'call', 'me', 'before', 'they', 'leave.'], ['Sorry,', 'I', "don't", 'think', 'I', 'can', 'do', 'it.'], ['Are', 'you', 'going', 'to', 'sit', 'with', 'me?'], ['I', 'made', 'that', 'one.'], ["I've", 'never', 'met', 'a', 'musician', 'that', 'I', "didn't", 'like.'], ['Why', 'are', 'you', 'dressed', 'like', 'that?'], ['I', 'hope', 'you', "won't", 'tell', 'anyone', 'you', 'saw', 'me', 'leave', 'this', 'house.'], ['Tom', 'does', 'what', 'he', 'wants', 'to.'], ["She's", 'a', 'single', 'mother', 'of', 'two.'], ['He', 'is', 'always', 'kind', 'to', 'animals.'], ['His', 'office', 'is', 'on', 'the', 'eighth', 'floor.'], ['People', 'like', 'you', 'are', 'never', 'busy.'], ["I'll", 'be', 'back', 'in', 'a', 'minute.'], ['Men', 'were', 'attracted', 'to', 'her', 'like', 'moths', 'to', 'a', 'flame.'], ['Dr.', 'Skeleton', 'is', 'known', 'for', 'his', 'study', 'on', 'ghosts.'], ['I', 'wonder', 'if', 'Tom', 'is', 'trying', 'to', 'kill', 'me.'], ['He', 'was', 'the', 'last', 'to', 'leave.'], ['Are', 'you', 'still', 'married?'], ['Have', 'a', 'nice', 'day.'], ['She', 'said', 'that', 'she', 'had', 'to', 'be', 'back', 'before', 'dawn.'], ["I'd", 'like', 'to', 'be', 'a', 'veterinarian.'], ['I', 'just', "can't", 'wait', 'to', 'do', 'that.'], ["That's", 'physically', 'impossible.'], ['British', 'English', 'differs', 'from', 'American', 'English', 'in', 'many', 'ways.'], ['He', 'shook', 'hands', 'with', 'me.'], ['I', 'wonder', "what's", 'for', 'dinner.'], ['I', 'was', 'raised', 'eating', 'Mexican', 'food.'], ['Have', 'you', 'ever', 'eaten', 'anything', 'that', 'made', 'you', 'hallucinate?'], ['May', 'I', 'talk', 'to', 'you', 'a', 'minute?'], ['It', 'looks', 'like', 'Tom', "doesn't", 'really', 'want', 'this', 'job.'], ['I', 'have', 'lost', 'my', 'watch.'], ['I', "wasn't", 'informed', 'of', 'this.'], ["That's", 'not', 'what', 'I', 'said', 'at', 'all.'], ['Tom', 'said', 'it', 'was', 'his', 'fault.'], ['Who', 'gave', 'you', 'this', 'information?'], ['She', 'had', 'tears', 'in', 'her', 'eyes.'], ['Tom', 'likes', 'his', 'life.'], ["I'm", 'still', 'thirsty.'], ['I', 'can', 'see', 'the', 'castle', 'from', 'my', 'bedroom', 'window.'], ['A', 'doctor', 'should', 'never', 'let', 'a', 'patient', 'die.'], ['How', 'old', 'are', 'the', 'children?'], ["I'm", 'assuming', 'this', 'is', 'your', 'father.'], ['Swimming', 'is', 'good', 'for', 'your', 'health.'], ['He', 'had', 'no', 'objection.'], ['You', 'might', 'want', 'to', 'grab', 'some', 'sleep.'], ['That', 'should', 'have', 'never', 'happened.'], ["Don't", 'stand', 'too', 'close.'], ['It', 'is', 'me', 'that', 'is', 'wrong.'], ['She', 'suggested', 'that', 'I', 'write', 'to', 'him', 'at', 'once.'], ["They're", 'early.'], ['I', 'just', 'got', 'my', 'first', 'tattoo.'], ['Tom', 'introduced', 'Mary', 'to', 'his', 'mother.'], ['He', "can't", 'explain', 'what', 'happened.'], ["We're", 'gonna', 'have', 'a', 'lot', 'of', 'fun.'], ["Don't", 'you', 'think', 'I', 'would', 'like', 'to', 'do', 'that?'], ['How', 'long', 'is', 'the', 'Golden', 'Gate', 'Bridge?'], ["You're", 'very', 'religious,', "aren't", 'you?'], ['I', 'met', 'them', 'last', 'week.'], ['I', 'wanted', 'to', 'do', 'that', 'with', 'you.'], ['I', 'figured', 'you', 'might', 'want', 'this.'], ['I', "didn't", 'want', 'Tom', 'to', 'help', 'me.'], ["You're", 'not', 'supposed', 'to', 'be', 'smoking', 'in', 'here.'], ['I', 'have', 'read', 'all', 'his', 'novels.'], ['It', 'was', 'all', 'for', 'nothing.'], ['I', 'met', 'him', 'in', 'Tokyo', 'by', 'chance.'], ['You', 'should', 'begin', 'right', 'away.'], ['Have', 'you', 'ever', 'been', 'in', 'prison?'], ["You're", 'the', 'oldest.'], ["You've", 'done', 'all', 'you', 'can.'], ['Your', 'method', 'is', 'different', 'from', 'mine.'], ["You're", 'alone,', "aren't", 'you?'], ['I', 'know', 'what', 'happened', 'at', 'school', 'today.'], ['Perhaps', 'you', 'can', 'beat', 'me.'], ['I', 'know', 'this', "isn't", 'hard.'], ['I', 'want', 'something', 'to', 'eat.'], ['Do', 'you', 'have', 'an', 'appointment?'], ['It', 'failed.'], ['The', 'sun', 'was', 'shining,', 'yet', 'it', 'was', 'cold.'], ['Is', 'your', 'mother', 'at', 'home?'], ["Don't", 'you', 'have', 'something', 'to', 'do?'], ['You', "can't", 'have', 'this.'], ['Charge', 'it', 'to', 'my', 'account.'], ["You've", 'run', 'out', 'of', 'things', 'to', 'drink.'], ['Someone', 'has', 'taken', 'my', 'shoes', 'by', 'mistake.'], ["I'm", 'resilient.'], ['Look', 'at', 'the', 'blackboard.'], ['The', 'children', 'got', 'lost', 'in', 'the', 'woods.'], ['How', 'does', 'he', 'do', 'it?'], ['Just', 'tell', 'Tom', 'to', 'leave', 'me', 'alone.'], ['Garlic', 'enhances', 'the', 'flavor', 'of', 'meals.'], ['Do', 'you', 'have', 'anything', 'to', 'say', 'regarding', 'this?'], ['You', 'have', 'a', 'tendency', 'to', 'talk', 'too', 'fast.'], ['I', 'was', 'convinced', 'that', 'he', 'was', 'guilty.'], ['They', 'opened', 'the', 'door.'], ["I'm", 'still', 'studying', 'French.'], ['It', 'is', 'a', 'pity', 'that', 'you', 'cannot', 'travel', 'with', 'us.'], ['She', 'waited', 'for', 'him', 'for', 'two', 'hours.'], ['I', "can't", 'stand', 'it', 'anymore.'], ['I', 'was', 'shocked', 'by', 'the', 'price.'], ["He's", 'sleeping', 'like', 'a', 'baby.'], ['Where', 'are', 'you', 'from?'], ["You've", 'taught', 'us', 'a', 'great', 'deal.'], ["Isn't", 'that', 'enough', 'for', 'you?'], ["I'm", 'feeling', 'sick.'], ['I', 'look', 'forward', 'to', 'reading', 'your', 'new', 'novel.'], ['He', 'was', 'egging', 'an', 'innocent', 'young', 'man', 'on', 'to', 'join', 'him', 'in', 'his', 'crooked', 'deal.'], ['Why', 'would', 'you', 'want', 'to', 'do', 'that?'], ["What's", 'going', 'on', 'here?'], ["You're", 'wanted', 'by', 'the', 'police.'], ['I', 'know', 'you', 'can', 'see', 'it.'], ['The', 'town', 'is', 'always', 'crawling', 'with', 'tourists.'], ['You', 'think', "I'm", 'ugly,', "don't", 'you?'], ['You', 'smell', 'awful.'], ['Now', 'eat', 'your', 'supper.'], ['You', "don't", 'seem', 'very', 'satisfied.'], ['Tom', 'told', 'us', 'to', 'be', 'quiet.'], ['A', 'few', 'serious', 'problems', 'remain.'], ["It's", 'non-refundable.'], ['They', 'crossed', 'the', 'border.'], ["Tom's", 'wife', "doesn't", 'like', 'it', 'when', 'he', 'smokes', 'in', 'the', 'living', 'room.'], ['Tom', 'collects', 'comics.'], ['He', "isn't", 'alone', 'anymore.'], ['What', 'is', 'your', 'favorite', 'holiday?'], ['Did', 'you', 'give', 'a', 'copy', 'of', 'the', 'disk', 'to', 'anyone?'], ['Tom', "didn't", 'want', 'to', 'leave', 'his', 'dog', 'with', 'me.'], ['I', 'just', "can't", 'believe', 'this.'], ['I', 'think', 'his', 'life', 'is', 'in', 'danger.'], ['You', 'need', 'a', 'joystick.'], ['What', 'lovely', 'weather!'], ['I', "can't", 'tell', 'you', 'why', 'she', 'was', 'absent', 'from', 'school.'], ['Tom', 'said', 'he', 'enjoyed', 'the', 'show.'], ['It', 'all', 'changed.'], ['Stay', 'calm', 'and', 'do', 'your', 'best.'], ['I', "don't", 'care', 'how', 'much', 'you', 'want', 'it.', "I'm", 'not', 'going', 'to', 'give', 'it', 'to', 'you.'], ['I', 'have', 'backstage', 'passes.'], ["Don't", 'drink', 'so', 'much', 'beer.'], ['Just', 'do', 'what', 'you', 'want.'], ['This', 'young', 'couple', 'is', 'in', 'love.'], ['You', 'look', 'positively', 'ghastly.'], ['This', 'is', 'too', 'hard.'], ['Will', 'you', 'lend', 'me', 'your', 'dictionary?'], ['They', 'had', 'good', 'chemistry.'], ['Would', 'you', 'ever', 'go', 'out', 'with', 'a', 'guy', 'who', "couldn't", 'sing?'], ['Tom', 'had', 'to', 'leave', 'early.'], ['Admission', 'is', 'free', 'for', 'preschool', 'children.'], ['Could', 'you', 'do', 'this', 'instead', 'of', 'me?'], ['How', 'dare', 'you', 'hurt', 'people', 'this', 'way!'], ['Now', 'we', 'wait.'], ['You', 'know', 'me', 'well.'], ["That's", 'why', 'he', 'lost', 'his', 'job.'], ['Tom', 'was', 'given', 'a', 'medal.'], ["I'm", 'going', 'to', 'have', 'to', 'ask', 'you', 'to', 'put', 'your', 'phone', 'away.'], ["I'm", 'going', 'back', 'home', 'tomorrow.'], ['What', 'shall', 'we', 'buy', 'him', 'for', 'his', 'birthday?'], ['His', 'parents', 'hate', 'me.'], ['Give', 'me', 'a', 'glass', 'of', 'water,', 'please.'], ['I', "don't", 'have', 'any', 'brothers.'], ['Eating', 'too', 'much', 'fat', 'is', 'supposed', 'to', 'cause', 'heart', 'disease.'], ["I'm", 'not', 'a', 'professional.'], ["I'm", 'to', 'blame,', 'not', 'you.'], ['Was', 'there', 'anyone', 'else', 'around?'], ['We', 'did', 'our', 'best', 'to', 'help', 'him,', 'but', 'he', "didn't", 'so', 'much', 'as', 'say', 'thank', 'you.'], ["You're", 'the', 'best', 'thing', 'that', 'ever', 'happened', 'to', 'me.'], ['I', 'only', 'eat', 'vegetables', 'that', 'I', 'grow', 'myself.'], ["What's", 'done', 'is', 'done.'], ['I', 'have', 'to', 'leave', 'you.'], ["You're", 'not', 'a', 'doctor.'], ["I'm", 'just', 'trying', 'to', 'get', 'by.'], ['How', 'long', 'did', 'you', 'live', 'there?'], ["I'm", 'going', 'abroad', 'next', 'summer.'], ['Everyone', 'is', 'free', 'to', 'contribute.'], ['Tom', 'made', 'himself', 'a', 'drink.'], ["It's", 'a', 'complete', 'disaster.'], ['Is', 'it', 'OK', 'if', 'I', 'open', 'a', 'can?'], ['Tom', 'is', 'a', 'specialist', 'in', 'marine', 'mammals.'], ["Don't", 'go', 'over', 'the', 'speed', 'limit.'], ['We', "don't", 'have', 'all', 'afternoon.'], ['Would', 'you', 'mind', 'if', 'I', 'smoked', 'here?'], ["I'm", 'sorry,', 'I', "don't", 'buzz', 'in', 'people', 'I', "don't", 'know.'], ['He', 'was', 'panting.'], ['Tom', "doesn't", 'like', 'baseball', 'very', 'much.'], ['He', 'borrowed', 'a', 'lot', 'of', 'money', 'from', 'the', 'bank.'], ['The', 'floor', 'is', 'slippery.'], ['We', 'happened', 'to', 'meet', 'at', 'the', 'station.'], ['She', 'let', 'the', 'secret', 'out.'], ['My', "robot's", 'name', 'is', 'Multi.'], ['When', 'do', 'you', 'intend', 'to', 'come', 'home', 'this', 'evening?'], ["We're", 'investigating', 'it.'], ['I', 'thought', 'you', 'might', 'be', 'interested', 'in', 'this.'], ['What', 'more', 'do', 'you', 'need?'], ['What', 'kind', 'of', 'sports', 'do', 'you', 'do?'], ['He', 'resigned', 'as', 'president.'], ['We', 'all', 'agree', 'with', 'you.'], ['Please', 'give', 'me', 'a', 'break.'], ['Tom', 'is', 'a', 'sheep', 'farmer.'], ["That's", 'important.'], ['I', 'wish', 'there', 'were', 'more', 'hours', 'in', 'the', 'day.'], ['What', 'are', 'you', 'waiting', 'for?'], ["We've", 'been', 'asked', 'to', 'not', 'do', 'this', 'anymore.'], ['His', 'name', 'eludes', 'me.'], ["It's", 'still', 'a', 'mystery.'], ["Let's", 'see', 'what', 'the', 'outcome', 'is.'], ['How', 'could', 'you', 'say', 'that?'], ['I', "can't", 'tell', 'you', 'how', 'much', 'your', 'support', 'means', 'to', 'us.'], ['These', 'patients', 'have', 'trouble', 'walking.'], ['I', "don't", 'feel', 'like', 'laughing.'], ['He', 'is', 'busy', 'doing', 'something.'], ['We', 'ran', 'for', '10', 'kilometers.'], ['I', 'had', 'to', 'get', 'some', 'money.'], ["I'd", 'like', 'to', 'order', 'the', 'same.'], ["Where's", 'the', 'nearest', 'bus', 'stop?'], ["I'm", 'not', 'presentable.'], ['I', 'made', 'sure', 'of', 'that.'], ["I'd", 'like', 'you', 'to', 'understand.'], ["I'd", 'like', 'to', 'ask', 'you', 'about', 'how', 'to', 'do', 'that.'], ["We're", 'aware', 'of', 'the', 'challenges.'], ['I', 'went', 'to', 'your', 'school.'], ["I'd", 'like', 'you', 'to', 'sing', 'a', 'song', 'for', 'me.'], ["You're", 'crafty.'], ['Tom', 'is', 'conscious', 'now.'], ['This', 'is', 'extremely', 'disappointing.'], ['Do', 'you', 'know', 'who', 'I', 'am?'], ['You', 'look', 'like', "you're", 'busy.'], ['I', 'became', 'acquainted', 'with', 'your', 'father', 'yesterday.'], ['He', 'complained', 'to', 'her', 'about', 'the', 'food.'], ['I', 'want', 'to', 'tell', 'you', 'about', 'my', 'problems.'], ['I', "didn't", 'want', 'to', 'know.'], ['She', 'is', 'a', 'good', 'dancer.'], ['You', 'lost.'], ['I', 'want', 'to', 'show', 'you', 'something', "I've", 'been', 'working', 'on.'], ['Did', 'you', 'recognize', 'your', 'old', 'classmate?'], ['I', 'must', 'refuse.'], ["That's", 'evident.'], ["It's", 'a', 'nice', 'party.'], ['Tom', 'will', 'take', 'care', 'of', 'this.'], ['You', "don't", 'have', 'to', 'eat', 'with', 'Tom,', 'but', 'I', 'wish', 'you', 'would.'], ['Can', 'you', 'tell', 'us', 'more', 'about', 'it?'], ['Food', 'is', 'essential', 'for', 'survival.'], ["It's", 'transparent.'], ['I', 'asked', 'her', 'to', 'go', 'to', 'a', 'movie', 'with', 'me.'], ['Tom', 'seems', 'to', 'have', 'it', 'in', 'for', 'me.'], ['As', 'soon', 'as', 'the', 'dog', 'saw', 'me,', 'it', 'began', 'to', 'bark.'], ['1980', 'was', 'the', 'year', 'that', 'I', 'was', 'born.'], ['It', 'looks', 'like', 'the', 'question', 'was', 'too', 'easy', 'for', 'you.', 'Next', 'time,', "I'll", 'have', 'to', 'make', 'it', 'a', 'bit', 'harder.'], ['Does', 'anyone', 'know', "you're", 'here?'], ['Who', 'are', 'your', 'closest', 'friends?'], ["He's", 'not', 'the', 'brightest', 'guy', 'in', 'the', 'world.'], ['Tom', 'declined', 'my', 'invitation.'], ["Where's", 'the', 'director?'], ['You', 'should', 'set', 'a', 'good', 'example', 'for', 'your', 'children.'], ["I'll", 'do', 'everything', 'within', 'my', 'power', 'to', 'make', 'sure', 'your', 'children', 'are', 'safe.'], ['Do', 'you', 'want', 'to', 'stop?'], ['The', 'medicine', 'made', 'me', 'feel', 'better.'], ['I', "couldn't", 'do', 'that.'], ['Straighten', 'up.'], ['They', 'talked', 'about', 'culture.'], ['I', 'sat', 'down', 'next', 'to', 'him.'], ['Why', "don't", 'you', 'put', 'some', 'clothes', 'on?'], ['I', 'want', 'to', 'sleep', 'in', 'my', 'own', 'bed', 'tonight.'], ['They', 'started', 'picking', 'up', 'stones.'], ['He', 'is', 'an', 'army', 'officer.'], ['Can', 'I', 'see', 'the', 'special', 'exhibit', 'with', 'this', 'ticket?'], ["I'm", 'no', 'one', 'special.'], ["Let's", 'ask.'], ['Madrid', 'is', 'the', 'capital', 'of', 'Spain.'], ['Tom', "doesn't", 'work', 'as', 'much', 'as', 'he', 'used', 'to.'], ['She', 'runs', 'a', 'charity.'], ['Would', 'you', 'draw', 'me', 'a', 'map?'], ['I', "don't", 'deserve', 'to', 'be', 'this', 'happy.'], ["Don't", 'worry.', "I'm", 'a', 'doctor.'], ['My', 'association', 'with', 'them', "didn't", 'last', 'long.'], ['If', 'I', 'had', '25%', 'more', 'income,', "I'd", 'be', 'more', 'satisfied', 'with', 'my', 'life.'], ['You', 'should', 'keep', 'your', 'promises.'], ['You', "can't", 'make', 'me', 'do', 'anything', 'I', "don't", 'want', 'to', 'do.'], ["I'm", 'very', 'upset.'], ['When', 'did', 'you', 'meet', 'her?'], ['The', 'dogs', 'are', 'wet.'], ['He', 'likes', 'money.'], ['Shall', 'we', 'go?'], ['I', 'want', 'to', 'go', 'home', 'to', 'see', 'my', 'wife.'], ['She', 'has', 'long', 'hair.'], ['The', 'outside', 'of', 'the', 'castle', 'was', 'painted', 'white.'], ["He's", 'open', 'and', 'trusting.'], ['I', "don't", 'know', 'about', 'you,', 'but', 'I', 'feel', 'pretty', 'good', 'today.'], ['Would', 'you', 'like', 'to', 'talk', 'about', 'what', 'just', 'happened?'], ['Please', 'choose', 'one', 'person.'], ["I'll", 'speak', 'to', 'anyone', 'at', 'extension', '214.'], ['This', 'was', 'on', 'the', 'doorstep.'], ['Horses', 'and', 'donkeys', 'are', 'different.'], ['Power', 'tends', 'to', 'corrupt', 'and', 'absolute', 'power', 'corrupts', 'absolutely.'], ['I', "don't", 'understand', 'why', 'this', "isn't", 'working.'], ['When', 'are', 'you', 'going', 'to', 'finish', 'this?'], ['Wait', 'until', 'your', 'father', 'gets', 'home.'], ['How', 'did', 'you', 'get', 'caught?'], ['Boys', 'will', 'be', 'boys.'], ['Get', 'my', 'rifle.'], ['The', 'arrow', 'hit', 'the', 'target.'], ['What', "would've", 'happened', 'if', 'Tom', 'had', 'come?'], ['Tom', 'asked', 'Mary', 'to', 'read', 'him', 'the', 'letter', 'she', 'had', 'gotten', 'from', 'John.'], ['It', 'was', 'a', 'terrible', 'affair.'], ['Keep', 'your', 'shoes', 'on.'], ['The', 'lake', 'water', 'is', 'very', 'cold.'], ['Tom', 'tried', 'to', 'resuscitate', 'Mary.'], ['Can', 'I', 'extend', 'my', 'stay?'], ["There's", 'nobody', 'on', 'this', 'ship', 'except', 'us.'], ['You', 'understand', 'Korean,', "don't", 'you?'], ['Reading', 'books', 'is', 'very', 'interesting.'], ['I', 'was', 'going', 'to', 'ask', 'Tom', 'to', 'do', 'that.'], ["I'm", 'beginning', 'to', 'see', 'what', 'you', 'mean.'], ['She', 'cried', 'and', 'cried,', 'but', 'nobody', 'came', 'to', 'comfort', 'her.'], ['I', 'hear', 'a', 'phone', 'ringing.'], ['I', 'never', 'said', 'this', 'job', 'would', 'be', 'easy.'], ['Tom', 'believes', 'Mary', 'is', 'wrong.'], ['Do', 'you', 'want', 'to', 'look', 'at', 'it?'], ['Do', 'you', 'want', 'this', 'or', "don't", 'you?'], ['It', 'will', 'be', 'difficult', 'for', 'him', 'to', 'get', 'up', 'so', 'early.'], ["He's", 'too', 'drunk.'], ["I'll", 'be', 'absent', 'from', 'home', 'in', 'the', 'afternoon.'], ['I', "didn't", 'know', 'you', 'were', 'that', 'good', 'at', 'French.'], ['We', "can't", 'tolerate', 'that', 'kind', 'of', 'behavior.'], ['You', 'sort', 'of', 'hinted', 'that', 'you', 'wanted', 'me', 'to', 'ask', 'you', 'out.'], ['The', 'fog', 'has', 'lifted.'], ['Why', "don't", 'you', 'start', 'by', 'telling', 'us', 'how', 'you', 'feel?'], ['The', 'camera', 'you', 'bought', 'is', 'better', 'than', 'mine.'], ['Nobody', 'knows', 'what', 'happened', 'to', 'all', 'that', 'money.'], ["Don't", 'make', 'it', 'worse.'], ['Get', 'out', 'of', 'bed.'], ['I', 'went,', 'too.'], ['I', 'realized', 'I', "couldn't", 'win.'], ['I', 'thought', 'it', 'was', 'a', 'good', 'idea', 'at', 'the', 'time.'], ['I', 'am', 'forbidden', 'to', 'stay', 'out', 'after', '10', "o'clock."], ['I', 'am', 'never', 'free', 'on', 'Sundays.'], ['She', 'allowed', 'him', 'to', 'go', 'alone.'], ['The', 'storm', 'did', 'great', 'damage', 'to', 'her', 'property.'], ['Please', "don't", 'be', 'late.'], ['I', "don't", 'know', 'where', 'Tom', 'bought', 'that.'], ["I'm", 'just', 'killing', 'time.'], ['I', 'think', "it'll", 'rain', 'today.'], ['I', "don't", 'know', 'how', 'they', 'do', 'it.'], ['I', 'think', 'they', 'like', 'you.'], ["Here's", 'what', 'you', 'should', 'do.'], ['Tom', 'shut', 'his', 'computer', 'off.'], ["I've", 'done', 'some', 'things', "I'm", 'not', 'proud', 'of.'], ["It's", 'not', 'worth', 'much.'], ['I', 'want', 'to', 'please', 'you.'], ['You', "didn't", 'try', 'hard', 'enough.'], ['No', 'matter', 'how', 'hard', 'you', 'try,', 'you', "won't", 'be', 'able', 'to', 'finish', 'that', 'in', 'one', 'day.'], ['You', 'need', 'this.'], ['Are', 'you', 'sure', "you're", 'all', 'right?'], ['Tom', 'said', 'Mary', 'was', 'coming', 'over', 'for', 'dinner.'], ['I', "didn't", 'flunk.'], ["I'm", 'good', 'at', 'skiing.'], ['No,', 'thank', 'you.', "I'm", 'full.'], ["You're", 'very', 'kind,', 'Tom.'], ["I'm", 'not', 'going', 'to', 'skate', 'today.'], ['What', 'are', 'you', 'going', 'to', 'do', 'tonight?'], ['Can', 'we', 'have', 'a', 'talk?'], ['Compared', 'to', 'you,', "I'm", 'only', 'a', 'beginner', 'at', 'this', 'game.'], ["Don't", 'call', 'me', 'anymore.'], ['Do', 'you', 'understand', "what's", 'going', 'on?'], ['When', 'did', 'you', 'visit', 'your', 'friends?'], ['I', 'brought', 'you', 'some', 'lunch.'], ['I', 'can', 'do', 'without', 'his', 'help.'], ['Why', "didn't", 'you', 'go', 'to', 'the', 'police?'], ['Her', 'nails', 'are', 'red.'], ['What', 'is', 'the', 'name', 'of', 'that', 'bird?'], ['The', 'birth', 'rate', 'and', 'death', 'rate', 'were', 'nearly', 'equal.'], ['I', 'do', 'want', 'to', 'see', 'you.'], ["He's", 'always', 'breaking', 'into', 'our', 'conversation.'], ['Not', 'everything', 'is', 'about', 'you.'], ["Don't", 'waste', 'your', 'time', 'on', 'trifles.'], ['Do', 'you', 'think', "that'll", 'work?'], ['Look', 'at', 'these', 'prices.'], ['I', 'owe', 'you', 'so', 'much.'], ["It's", 'good', 'enough.'], ['The', 'spectators', 'cheered', 'the', 'players', 'on.'], ["They're", 'students.'], ['I', 'have', 'cancer.'], ['Are', 'you', 'finished?'], ['Nothing', 'has', 'changed.'], ['My', 'little', 'brother', 'can', 'read', 'English.'], ['I', 'have', 'a', 'great', 'deal', 'to', 'do', 'tonight.'], ['I', 'require', 'your', 'advice.'], ['Why', "don't", 'you', 'sit', 'here', 'a', 'moment?'], ['The', 'teacher', 'began', 'to', 'ask', 'us', 'questions.'], ['Things', 'will', 'only', 'get', 'worse.'], ['I', 'was', 'moved', 'to', 'tears', 'by', 'her', 'speech.'], ['Why', 'are', 'you', 'flinching?'], ["You've", 'got', 'three', 'months', 'left.'], ['I', "don't", 'understand', 'German.'], ['Come', 'over', 'for', 'dinner', 'sometime.'], ['I', 'need', 'to', 'borrow', 'your', 'car.'], ['May', 'I', 'have', 'your', 'name', 'and', 'address?'], ['I', "don't", 'know', 'how', 'you', 'do', 'that.'], ['Your', 'parents', 'were', 'right.'], ['You', 'have', 'been', 'warned.'], ['Since', "I'm", 'here,', 'let', 'me', 'help', 'you.'], ['I', 'need', 'a', 'first', 'aid', 'kit.'], ['Drunken', 'driving', 'is', 'a', 'serious', 'problem.'], ['Try', 'it', 'once', 'more.'], ["I've", 'got', 'some', 'problems.'], ['They', 'survived,', 'even', 'though', 'the', 'building', 'was', 'destroyed.'], ["I've", 'got', 'a', 'meeting', 'at', '2:30.'], ['I', 'just', "don't", 'know', 'what', 'to', 'say.'], ['I', 'recovered.'], ['I', 'think', "it's", 'time', 'for', 'me', 'to', 'go.'], ["I'm", 'sure', 'we', 'can', 'trust', 'Tom.'], ['Do', 'you', 'have', 'to', 'stay?'], ['It', "wouldn't", 'be', 'the', 'same', 'without', 'you.'], ['They', 'were', 'even', 'more', 'interested', 'in', 'his', 'beautiful', 'wife.'], ["I've", 'decided', 'that', 'we', "won't", 'go.'], ['Tom', 'and', 'Mary', "aren't", 'afraid.'], ['I', "couldn't", 'sleep', 'because', 'of', 'the', 'noise.'], ['Are', 'you', 'going', 'to', 'vote', 'in', 'the', 'upcoming', 'election?'], ['Suddenly,', 'a', 'man', 'stepped', 'in', 'front', 'of', 'them.'], ['No', 'security', 'system', 'is', 'foolproof.'], ['I', 'hope', 'he', 'will', 'come.'], ['Where', 'did', 'the', 'money', 'come', 'from?'], ["I'm", 'sure', "I've", 'met', 'that', 'man', 'somewhere,', 'but', 'I', "don't", 'remember', 'who', 'he', 'is.'], ["You're", 'too', 'drunk', 'to', 'drive.'], ['You', 'could', 'sleep', 'in', 'the', 'hammock.'], ['You', 'may', 'as', 'well', 'tell', 'me', 'all', 'about', 'it.'], ['Do', 'you', 'believe', 'this', 'is', 'true?'], ['Not', 'all', 'men', 'are', 'like', 'that.'], ['Sorry', 'to', 'have', 'kept', 'you', 'waiting.'], ['I', 'ought', 'to', 'do', 'this', 'by', 'myself.'], ["I've", 'been', 'laid', 'off.'], ["It's", 'not', 'hard', 'to', 'find.'], ['Do', 'you', 'want', 'to', 'drink?'], ['I', 'want', 'a', 'notebook.'], ['Draw', 'a', 'straight', 'line.'], ['We', 'agreed', 'among', 'ourselves.'], ['Tom', "didn't", 'drink', 'the', 'milk', 'Mary', 'poured', 'for', 'him.'], ['He', 'should', 'have', 'taken', 'the', 'examination.'], ['I', "haven't", 'told', 'anyone.'], ["I'm", 'not', 'sure', 'if', "I'm", 'stupid', 'or', 'not.'], ['We', "don't", 'know', 'for', 'certain.'], ['I', "didn't", 'write', 'anything.'], ['I', 'still', 'need', 'some', 'help', 'here.'], ['Did', 'you', 'do', 'something', 'new', 'with', 'your', 'hair?'], ['Your', 'car', 'is', 'fast.'], ['I', 'met', 'your', 'father', 'just', 'now.'], ['What', 'is', 'it', 'you', 'want', 'me', 'to', 'do?'], ['You', 'knew', 'this', 'would', 'happen,', "didn't", 'you?'], ['He', 'told', 'me', 'about', 'it', 'in', 'private.'], ['The', 'boss', 'just', 'chewed', 'him', 'out', 'again.'], ['He', 'used', 'pigeons', 'in', 'his', 'experiment.'], ["I'm", 'not', 'used', 'to', 'being', 'spoken', 'to', 'that', 'way.'], ['I', 'do', 'sympathize', 'with', 'you.'], ['She', 'caught', 'a', 'cold', 'last', 'night.'], ['Let', 'me', 'off', 'at', 'the', 'train', 'station,', 'please.'], ['I', "don't", 'want', 'to', 'listen', 'to', 'you.'], ["How's", 'your', 'day', 'going?'], ["It's", 'pathetic.'], ['We', "don't", 'like', 'the', 'rain.'], ['I', 'had', 'my', 'doubts', 'from', 'the', 'get-go.'], ['She', 'has', 'a', 'distinct', 'English', 'accent.'], ["You're", 'not', 'paying', 'attention.'], ['Can', 'you', 'speak', 'another', 'language?'], ['He', "didn't", 'show', 'up', 'at', 'the', 'party.'], ['We', 'booked', 'seats', 'for', 'the', 'play.'], ['You', 'should', 'keep', 'your', 'promises.'], ['I', 'made', 'a', 'bad', 'decision.'], ['You', 'were', 'bluffing,', "weren't", 'you?'], ['He', 'kept', 'his', 'word.'], ['I', 'have', 'some', 'things', 'to', 'take', 'care', 'of.'], ['Are', 'you', 'kidding?'], ['I', "can't", 'stop', 'myself.'], ['They', 'showed', 'it', 'to', 'our', 'company.'], ["There's", 'a', 'snag.'], ["It's", 'a', 'routine', 'procedure.'], ['She', "doesn't", 'talk', 'much,', 'but', 'once', 'she', 'does', 'speak', 'she', 'is', 'eloquent.'], ['I', "don't", 'see', 'much', 'choice.'], ['She', 'parked', 'her', 'car', 'in', 'a', 'vacant', 'lot.'], ['He', 'attends', 'the', 'same', 'school', 'that', 'I', 'do.'], ['Where', 'did', 'you', 'put', 'my', 'gloves?'], ["Don't", 'do', 'anything', 'until', 'I', 'come.'], ['Why', "weren't", 'you', 'at', 'home', 'yesterday?'], ['No', 'one', 'found', 'any', 'reason', 'to', 'criticize', 'his', 'actions.'], ["Tom's", 'fast.'], ['Everyone', 'ought', 'to', 'be', 'the', 'master', 'of', 'his', 'own', 'destiny.'], ['He', 'was', 'crushed', 'to', 'death.'], ['This', 'might', 'be', 'the', 'last', 'time', 'we', 'ever', 'see', 'each', 'other.'], ['Tom', 'and', 'Mary', 'are', 'both', 'very', 'hungry.'], ['Maybe', 'we', 'should', 'wait', 'until', 'Tom', 'gets', 'here.'], ['I', 'am', 'looking', 'for', 'an', 'assistant.'], ["Japan's", 'consumption', 'of', 'rice', 'is', 'decreasing.'], ['He', 'seems', 'to', 'have', 'been', 'rich.'], ['I', 'often', 'use', 'SSH', 'to', 'access', 'my', 'computers', 'remotely.'], ['That', 'bridge', 'is', 'anything', 'but', 'safe.'], ['Sign', 'the', 'guest', 'book.'], ["Don't", 'come', 'to', 'me', 'with', 'any', 'excuses.'], ['My', 'brother', 'eats', 'twice', 'as', 'much', 'as', 'I', 'do.'], ['May', 'I', 'have', 'your', 'attention,', 'please?'], ['This', 'road', 'map', 'is', 'very', 'useful.'], ['We', 'lost', 'a', 'lot', 'on', 'that', 'job.'], ['Ignore', 'them.'], ['Would', 'you', 'mind', 'lending', 'me', 'your', 'car?'], ['He', 'took', 'credit', 'for', 'my', 'idea.'], ['His', 'prediction', 'has', 'come', 'true.'], ['It', 'often', 'rains', 'here.'], ["Today's", 'dinner', 'is', 'fish.'], ['Love', 'began', 'to', 'grow', 'between', 'the', 'two.'], ['I', 'have', 'a', 'proposition', 'for', 'you.'], ['Please', 'put', 'on', 'your', 'shoes.'], ['I', 'just', 'have', 'to', 'make', 'a', 'call.'], ['When', 'did', 'he', 'go?'], ["That's", 'why', 'Tom', 'and', 'I', 'were', 'disappointed.'], ['We', 'won', 'the', 'battle.'], ['Which', 'brand', 'do', 'you', 'prefer?'], ['I', 'can', 'barely', 'pay', 'my', 'rent.'], ['Neither', 'of', 'my', 'brothers', 'will', 'be', 'there.'], ['I', 'spend', 'as', 'much', 'time', 'working', 'in', 'the', 'garden', 'in', 'one', 'day', 'as', 'my', 'brother', 'does', 'in', 'a', 'week.'], ['I', 'am', 'waiting', 'for', 'the', 'store', 'to', 'open.'], ['I', "don't", 'have', 'the', 'slightest', 'doubt.'], ['He', 'grows', 'vegetables', 'in', 'his', 'garden.'], ['Tom', 'probably', "can't", 'do', 'that', 'as', 'well', 'as', 'I', 'can.'], ['Are', 'they', 'new?'], ['This', 'is', 'an', 'extremely', 'important', 'point.'], ['You', 'can', 'still', 'go', 'if', 'you', 'want', 'to.'], ["That's", 'cheating.'], ['Where', 'are', 'my', 'suspenders?'], ['He', 'is', 'worthy', 'to', 'be', 'captain', 'of', 'our', 'team.'], ["He's", 'kind', 'of', 'cute,', "isn't", 'he?'], ['As', 'I', 'got', 'the', 'train', 'this', 'morning,', 'I', 'met', 'an', 'old', 'friend', 'of', 'mine.'], ['I', 'think', "it's", 'time', 'for', 'me', 'to', 'buy', 'a', 'new', 'camera.'], ['Why', 'do', 'you', 'need', 'a', 'doctor?'], ['I', 'think', "I've", 'lost', 'my', 'umbrella.'], ['The', 'contract', 'will', 'expire', 'soon.'], ["You're", 'not', 'alone.'], ['This', 'is', 'a', 'hybrid.'], ['Would', 'you', 'like', 'me', 'to', 'go', 'there', 'with', 'you?'], ['I', "can't", 'stand', 'that', 'noise', 'any', 'longer.'], ['Can', 'you', 'give', 'us', 'your', 'point', 'of', 'view?'], ["What're", 'you', 'doing', 'today?'], ['They', 'all', 'looked', 'relieved.'], ['He', 'has', 'a', 'large', 'family', 'to', 'support.'], ['I', 'started', 'crying.'], ['I', 'know', 'that', 'he', 'keeps', 'his', 'promise.'], ["I'd", 'like', 'to', 'thank', 'you', 'for', 'coming', 'today.'], ['This', 'book', 'is', 'much', 'more', 'useful', 'than', 'that', 'one.'], ['Look', 'at', 'that!'], ['How', 'could', 'anybody', 'not', 'like', 'this?'], ['Are', 'you', 'proud', 'of', 'your', 'father?'], ['The', 'concert', "hasn't", 'started', 'yet.'], ['Cheers!'], ['You', 'should', 'eat.'], ['He', 'came', 'here', 'ten', 'minutes', 'ago.'], ["I'm", 'tired', 'of', 'waiting.'], ['That', 'was', 'mentioned.'], ['Would', 'you', 'like', 'to', 'take', 'a', 'recess?'], ['That', "doesn't", 'seem', 'too', 'difficult.'], ["What's", 'that?'], ["I'm", 'going', 'to', 'the', 'station.'], ["How's", 'your', 'morning', 'been?'], ['I', 'thought', 'you', 'were', 'my', 'friend.'], ["I've", 'enjoyed', 'talking', 'to', 'you.'], ['Where', 'are', 'you', 'from?'], ['No', 'one', 'can', 'get', 'in', 'or', 'out.'], ["I'm", 'going', 'to', 'be', 'a', 'teacher.'], ['I', "wouldn't", 'want', 'to', 'work', 'in', 'a', 'hospital.'], ["What's", 'wrong', 'with', 'it?'], ['Give', 'me', 'a', 'drink,', 'please.'], ['I', "don't", 'want', 'them', 'to', 'go', 'away.'], ['Can', 'you', 'believe', 'this', 'is', 'really', 'happening?'], ['Am', 'I', 'bothering', 'you?'], ['She', 'is', 'getting', 'prettier', 'and', 'prettier.'], ['He', 'liked', 'that.'], ["I'll", 'do', 'better', 'next', 'time.'], ['His', 'wife', 'is', 'our', 'Italian', 'teacher.'], ['How', 'long', 'were', 'you', 'there?'], ['The', 'rich', 'are', 'getting', 'richer', 'and', 'the', 'poor', 'are', 'getting', 'poorer.'], ['He', 'went', 'to', 'Paris', 'by', 'car', 'yesterday.'], ['I', 'have', 'been', 'loved.'], ['The', 'hunter', 'caught', 'the', 'fox.'], ['If', 'you', "can't", 'come,', 'please', 'let', 'me', 'know', 'ahead', 'of', 'time.'], ['Kabul', 'is', 'the', 'capital', 'of', 'Afghanistan.'], ['Please', 'turn', 'on', 'the', 'TV.'], ['Tom', 'refused', 'to', 'talk.'], ['I', 'thought', 'that', 'was', 'your', 'job.'], ['I', 'ate', 'nothing', 'but', 'bread', 'and', 'butter.'], ['Tom,', 'are', 'you', 'awake?'], ['We', 'better', 'be', 'going.'], ['I', 'always', 'get', 'nervous', 'in', 'her', 'presence.'], ['Let', 'me', 'open', 'it', 'by', 'myself.'], ['Tom', 'has', 'been', 'waiting', 'for', 'over', 'three', 'hours.'], ['He', 'is', 'as', 'tall', 'as', 'my', 'brother.'], ['I', 'think', 'you', 'know', "that's", 'inappropriate.'], ['Could', 'you', 'bring', 'me', 'a', 'pillow', 'and', 'blanket,', 'please?'], ['It', 'tastes', 'very', 'good.'], ["He's", 'young', 'and', 'single.'], ['That', 'tie', 'suits', 'you', 'very', 'well.'], ['I', "didn't", 'wait', 'for', 'Tom.'], ['I', "don't", 'have', 'the', 'address', 'with', 'me.'], ['I', 'remember', 'when', 'it', 'happened.'], ['You', 'have', 'a', 'good', 'lawyer.'], ['Mary', 'is', 'the', 'youngest', 'of', 'the', 'three', 'sisters.'], ['I', "don't", 'know', 'how', 'to', 'do', 'this.'], ['Please', 'sit.'], ['Half', 'the', 'apples', 'Tom', 'gave', 'me', 'were', 'rotten.'], ['Did', 'any', 'of', 'you', 'gentlemen', 'wait', 'on', 'this', 'man?'], ['This', 'sounds', 'totally', 'legit.'], ['He', 'is', 'a', 'complete', 'idiot.'], ['Tom', 'sent', 'Mary', 'a', 'birthday', 'card.'], ['Open', 'your', 'mouth!'], ['The', 'bad', 'weather', 'affected', 'his', 'health.'], ['I', 'was', 'bitten', 'by', 'a', 'lot', 'of', 'insects', 'in', 'the', 'forest.'], ['Hello,', "how's", 'business?'], ['They', 'ruined', 'my', 'life.'], ['I', 'like', 'being', 'on', 'my', 'own.'], ['I', 'love', 'myself.'], ['The', 'teacher', 'asked', 'me', 'a', 'difficult', 'question.'], ["You're", 'really', 'a', 'hard', 'worker.'], ['I', 'hate', 'it', 'when', 'I', 'have', 'to', 'sit', 'between', 'two', 'fat', 'guys', 'on', 'a', 'plane.'], ['Even', 'now,', 'I', 'occasionally', 'think', "I'd", 'like', 'to', 'see', 'you.', 'Not', 'the', 'you', 'that', 'you', 'are', 'today,', 'but', 'the', 'you', 'I', 'remember', 'from', 'the', 'past.'], ["I'm", 'worried', 'about', 'the', 'baby.'], ['He', 'works', 'too', 'slowly', 'to', 'be', 'helpful', 'to', 'us.'], ['We', 'have', 'to', 'be', 'careful', 'with', 'expenses.'], ['I', 'just', 'got', 'a', 'job.'], ['I', "don't", 'want', 'Tom', 'to', 'see', 'it.'], ['English', 'is', 'not', 'easy,', 'but', 'it', 'is', 'interesting.'], ['I', 'caught', 'a', 'glimpse', 'of', 'him', 'in', 'the', 'crowd.'], ['Come', 'play', 'with', 'us.'], ['I', 'think', 'I', 'should', 'probably', 'go', 'home', 'and', 'get', 'some', 'sleep.'], ['I', 'think', 'that', 'was', 'very', 'funny.'], ['I', 'would', 'rather', 'go', 'to', 'the', 'mountains', 'than', 'to', 'the', 'beach.'], ['I', 'thought', 'you', 'wanted', 'to', 'wait.'], ['After', 'an', 'absence', 'of', 'seven', 'years,', 'I', 'went', 'home.'], ['I', 'taught', 'my', 'girlfriend', 'how', 'to', 'drive.'], ['The', 'dog', 'is', 'asleep.'], ['You', "can't", 'park', 'your', 'car', 'here.'], ['I', 'could', 'see', 'that.'], ['How', 'do', 'you', 'think', 'I', 'felt?'], ['We', 'enjoyed', 'watching', 'the', 'fireworks', 'on', 'a', 'bridge', 'last', 'summer.'], ['I', 'know', 'Tom', 'cheated.'], ['What', 'would', 'you', 'suggest', 'that', 'I', 'do?'], ['I', 'think', 'they', 'like', 'me.'], ['My', 'room', 'is', 'twice', 'as', 'large', 'as', 'yours.'], ['You', 'deserved', 'it.'], ['Tom', 'has', 'begun', 'writing', 'a', 'new', 'book.'], ["I'm", 'too', 'fat.'], ['Do', 'I', 'look', 'like', 'an', 'actress?'], ['I', 'live', 'in', 'town.'], ['Am', 'I', 'supposed', 'to', 'thank', 'you?'], ['Have', 'you', 'heard', 'this', 'story', 'already?'], ['Tom,', 'your', "life's", 'in', 'danger.'], ['Should', 'I', 'fill', 'in', 'this', 'form', 'now?'], ['If', 'you', 'think', "you're", 'someone,', 'you', 'stop', 'becoming', 'someone.'], ['How', 'are', 'you?', 'Did', 'you', 'have', 'a', 'good', 'trip?'], ['It', 'happened', 'so', 'quickly.'], ['They', 'go', 'to', 'church', 'every', 'Sunday.'], ["What's", 'your', 'age?'], ['Even', 'though', 'he', 'apologized,', "I'm", 'still', 'furious.'], ['That', 'writer', 'is', 'well', 'known', 'all', 'over', 'the', 'world.'], ['He', 'has', 'a', 'superiority', 'complex.'], ['Do', 'you', 'really', 'want', 'Tom', 'to', 'leave?'], ['The', 'cat', 'is', 'not', 'dead.'], ['They', 'enjoyed', 'themselves.'], ['I', 'grabbed', 'my', 'little', "sister's", 'hand', 'and', 'started', 'running.'], ['Tom', 'looked', 'young.'], ["What're", 'you', 'talking', 'about?'], ["You're", 'not', 'alone.'], ['I', "don't", 'have', 'the', 'time', 'for', 'this.'], ["You've", 'come', 'too', 'early.'], ['Although', 'we', "don't", 'have', 'much', 'money,', 'I', 'want', 'to', 'buy', 'this', 'painting.'], ['Remove', 'the', "chicken's", 'giblets', 'before', 'cooking.'], ['I', 'got', 'the', 'gist', 'of', 'what', 'he', 'was', 'saying.'], ['Meat', 'is', 'very', 'expensive', 'nowadays.'], ['He', 'said', 'it', 'himself.'], ['You', 'have', 'some', 'books.'], ['I', 'had', 'a', 'dog', 'named', 'Cookie.'], ['A', 'dry', 'spell', 'accounts', 'for', 'the', 'poor', 'crop.'], ['You', 'need', 'to', 'stop', 'ignoring', 'email', 'messages', 'from', 'Tom.'], ['Since', "it's", 'written', 'in', 'easy', 'French,', 'I', 'can', 'understand', 'it.'], ['I', 'never', 'let', 'anyone', 'else', 'feed', 'my', 'dog.'], ['We', 'have', 'to', 'wait', 'for', 'him.'], ['She', 'braked', 'hard', 'when', 'she', 'saw', 'a', 'child', 'run', 'out', 'into', 'the', 'road.'], ["Don't", 'let', 'this', 'ruin', 'your', 'friendship.'], ['You', 'never', 'know', 'what', 'the', 'future', 'will', 'bring.'], ['We', 'made', 'sacrifices.'], ['He', 'told', 'me', 'his', "life's", 'story.'], ["I'm", 'on', 'my', 'way.'], ['Stop', 'crying.'], ['We', "couldn't", 'understand', 'her', 'logic.'], ['I', 'want', 'to', 'know', "what's", 'going', 'on.'], ['I', "can't", 'figure', 'this', 'out.'], ['Where', 'does', 'this', 'train', 'go?'], ['I', 'want', 'a', 'pool.'], ["Don't", 'worry.', "It's", 'a', 'common', 'mistake.'], ['A', 'stream', 'of', 'people', 'came', 'out', 'of', 'the', 'theater.'], ['We', 'trust', 'him.'], ['I', 'really', 'need', 'you.'], ['I', 'think', "you're", 'putting', 'in', 'too', 'much', 'sugar.'], ['Change', 'trains', 'at', 'the', 'next', 'station.'], ['Are', 'you', 'listening', 'to', 'the', 'radio?'], ['Why', 'do', 'you', 'keep', 'giving', 'him', 'money?'], ['Edison', 'was', 'not', 'a', 'bright', 'student.'], ['I', "can't", 'say', 'that', "didn't", 'hurt.'], ['I', 'hung', 'my', 'coat', 'in', 'the', 'hall', 'closet.'], ['I', 'forgot', 'to', 'turn', 'off', 'the', 'gas!'], ['Do', 'you', 'want', 'to', 'stay?'], ['You', 'want', 'to', 'go', 'out', 'for', 'a', 'drink?'], ['Do', 'you', 'eat', 'lunch', 'at', 'your', 'desk?'], ['How', 'do', 'you', 'explain', 'all', 'this?'], ['Your', 'marriage', 'is', 'in', 'trouble.'], ["I'm", 'not', 'scared', 'of', 'you', 'anymore.'], ['I', "can't", 'go', 'in', 'there.'], ['Can', 'you', 'see', 'that', 'small', 'house?'], ['She', 'showed', 'him', 'the', 'photo.'], ['Why', 'do', 'they', 'call', 'New', 'York', 'the', 'Big', 'Apple?'], ['I', 'disagree', 'with', 'you', 'on', 'this.'], ['Tom', "doesn't", 'know', 'where', 'he', 'was', 'born.'], ['He', 'has', 'postponed', 'his', 'departure', 'until', 'tomorrow.'], ['Oh,', "don't", 'be', 'like', 'that.'], ['You', 'were', 'so', 'strong.'], ['How', 'many', 'people', 'do', 'you', 'think', 'die', 'from', 'cancer', 'every', 'year?'], ["They're", 'downstairs.'], ['How', 'often', 'do', 'you', 'go', 'abroad?'], ['How', 'about', 'my', 'showing', 'you', 'around', 'the', 'town?'], ['Tom', 'felt', 'responsible.'], ['I', "can't", 'be', 'something', "I'm", 'not.'], ['We', 'had', 'a', 'lunch', 'date,', "didn't", 'we?'], ['Is', 'that', 'a', 'no?'], ['Our', 'inventory', 'is', 'very', 'limited.'], ['I', 'knew', 'it', 'was', 'a', 'joke.'], ['He', 'proposed', 'an', 'alternate', 'plan.'], ['I', 'was', 'writing', 'her', 'a', 'love', 'letter.'], ['Some', 'Germans', 'work', 'for', 'only', 'one', 'euro', 'an', 'hour.'], ['He', 'ran', 'away', 'at', 'the', 'sight', 'of', 'a', 'policeman.'], ['The', 'doctor', 'told', 'me', 'to', 'eat', 'fewer', 'high-calorie', 'snacks.'], ['I', 'enjoy', 'riding', 'my', 'bicycle.'], ["I've", 'never', 'been', 'in', 'love', 'before.'], ['We', 'were', 'wakened', 'by', 'the', 'whistle', 'of', 'the', 'steam', 'locomotive', 'at', 'dawn.'], ['A', 'bat', 'hunts', 'food', 'and', 'eats', 'at', 'night,', 'but', 'sleeps', 'during', 'the', 'day.'], ['Please', 'close', 'the', 'door.'], ['Tea', 'was', 'introduced', 'from', 'China.'], ["I'll", 'tell', 'you', 'what', 'to', 'say.'], ['Cheers!'], ['I', 'want', 'that', 'information', 'as', 'soon', 'as', 'possible.'], ['Suni', 'is', 'playing.'], ['I', 'prefer', 'reading.'], ['I', "don't", 'know', 'where', "I'd", 'begin.'], ["He's", 'my', 'partner.'], ['The', 'earth', 'is', 'much', 'larger', 'than', 'the', 'moon.'], ['I', 'need', 'a', 'map.'], ['I', 'think', 'Tom', 'has', 'been', 'very', 'lucky.'], ['I', "don't", 'feel', 'like', 'studying', 'English', 'today.'], ['Do', 'I', 'look', 'like', 'an', 'actress?'], ['I', "can't", 'read', 'your', 'mind.'], ['I', 'would', 'complain.'], ['Did', 'you', 'learn', 'to', 'speak', 'French', 'when', 'you', 'were', 'a', 'child?'], ['Just', 'do', 'your', 'job.'], ["You'll", 'bounce', 'back.'], ['Tom', 'began', 'praying.'], ['Tom', "doesn't", 'seem', 'to', 'be', 'very', 'intelligent.'], ['I', "don't", 'know', 'how', 'to', 'operate', 'a', 'spinning', 'wheel.'], ["Let's", 'sit', 'here', 'for', 'a', 'while', 'and', 'look', 'at', 'the', 'view.'], ['Tom', "didn't", 'say', 'anything', 'about', 'where', "he'd", 'come', 'from.'], ['I', 'actually', "don't", 'know.'], ['Until', 'that', 'day,', 'I', 'had', 'never', 'eaten', 'dog', 'meat.'], ['He', 'held', 'his', 'breath.'], ["Who's", 'your', 'friend?'], ["It's", 'a', 'no-brainer.'], ['If', 'the', 'sun', 'were', 'to', 'go', 'out,', 'all', 'living', 'things', 'would', 'die.'], ['I', 'appreciate', 'your', 'telling', 'me.'], ['What', 'are', 'you', 'cooking?'], ['The', 'bad', 'weather', 'delayed', 'the', 'plane', 'for', 'two', 'hours.'], ["I'm", 'the', 'only', 'one', 'you', 'can', 'trust.'], ['I', 'already', 'feel', 'better.'], ['We', 'learn', 'a', 'lot', 'from', 'experience.'], ['I', 'folded', 'my', 'shirts', 'and', 'put', 'them', 'in', 'my', 'suitcase.'], ['We', 'all', 'want', 'answers.'], ['Can', 'you', 'show', 'me', 'how', 'to', 'do', 'this?'], ['I', "don't", 'know', 'what', 'to', 'do', 'now.'], ['The', 'police', 'lowered', 'their', 'weapons.'], ["Where's", 'Boston?'], ['Why', 'do', 'you', 'work', 'here?'], ['Something', 'must', 'have', 'happened', 'to', 'him', 'on', 'the', 'way.'], ["I've", 'lost', 'my', 'filling.'], ['This', 'may', 'be', 'research', 'my', 'secretary', 'did.'], ['This', 'is', 'a', 'hundred', 'dollar', 'bill.'], ['That', 'seemed', 'to', 'help.'], ['He', 'has', 'a', 'hairy', 'chest.'], ['I', 'wish', 'I', 'could', 'understand', 'you', 'better.'], ['Tom', 'is', 'acting', 'a', 'little', 'strange.'], ['Why', 'did', 'you', 'kiss', 'me?'], ['I', "couldn't", 'let', 'you', 'take', 'all', 'the', 'blame.'], ['Look', 'at', 'that', 'big', 'hammer.'], ['Why', 'did', 'they', 'hire', 'you?'], ['He', 'gave', 'me', 'food', 'and', 'money', 'as', 'well.'], ['Several', 'children', 'are', 'playing', 'on', 'the', 'beach.'], ["Don't", 'jump!'], ['He', 'reached', 'home', 'shortly', 'before', 'five', "o'clock."], ['What', 'would', 'the', 'others', 'say?'], ["Don't", 'you', 'find', 'it', 'interesting?'], ['He', 'has', 'already', 'said', 'yes.'], ['I', 'know', 'what', 'to', 'expect.'], ['I', 'was', 'bored', 'to', 'death.'], ["There's", 'a', 'river', 'near', 'my', 'house.'], ['I', 'have', 'bigger', 'fish', 'to', 'fry.'], ['Measles', 'can', 'be', 'quite', 'dangerous.'], ['I', 'told', 'you', 'I', 'hated', 'that', 'shirt.'], ['I', "must've", 'missed', 'something.'], ['I', "can't", 'believe', 'that', 'she', 'did', 'that', 'to', 'me.'], ["He's", 'a', 'freelance', 'journalist.'], ['They', 'shared', 'the', 'money.'], ['Spending', 'time', 'with', 'friends', 'on', 'the', 'beach', 'is', 'fun.'], ['We', 'were', 'delayed', 'by', 'the', 'heavy', 'traffic.'], ['I', "don't", 'know', 'about', 'the', 'others,', 'but', 'as', 'for', 'me,', "I'm", 'for', 'it.'], ['I', 'suspect', "you're", 'right.'], ["Let's", 'do', 'the', 'homework', 'together.'], ['It', 'was', 'his', 'job', 'to', 'gather', 'eggs.'], ["I've", 'had', 'enough.'], ['I', 'just', 'got', 'a', 'little', 'carried', 'away.'], ['I', "didn't", 'see', 'him.'], ['This', 'book', 'is', 'so', 'difficult', 'that', 'I', "can't", 'read', 'it.'], ['English', 'is', 'also', 'studied', 'in', 'China.'], ['I', "won't", 'stay', 'here', 'for', 'long.'], ['Tom', 'used', 'to', 'eat', 'a', 'lot', 'of', 'meat.'], ['This', 'should', 'be', 'plenty.'], ["I'm", 'fine', 'with', 'it.'], ['I', 'had', 'nowhere', 'to', 'go.'], ['Everyone', 'should', 'go.'], ['You', 'are', 'not', 'permitted', 'to', 'bring', 'dogs', 'into', 'this', 'building.'], ['Did', 'you', 'really', 'leave', 'your', 'car', 'unlocked', 'with', 'the', 'key', 'in', 'the', 'ignition?'], ['Who', 'taught', 'you', 'to', 'write?'], ['Somebody', 'saw', 'you.'], ['I', 'can', 'hardly', 'believe', 'his', 'story.'], ['I', 'succeeded', 'thanks', 'to', 'his', 'advice.'], ['Tom', 'wanted', 'Mary', 'to', 'tell', 'him', 'about', 'her', 'childhood.'], ['I', 'had', 'never', 'seen', 'such', 'a', 'beautiful', 'girl', 'before.'], ['That', 'probably', 'is', 'true.'], ["I'll", 'sue', 'you.'], ['I', 'can', 'take', 'a', 'message.'], ['Young', 'people', 'must', 'respect', 'the', 'law.'], ['He', 'is', 'unsatisfied', 'with', 'the', 'result.'], ['Follow', 'us.'], ["It'll", 'work.'], ['May', 'I', 'go', 'home?'], ['The', 'city', 'hall', "isn't", 'far', 'from', 'here.'], ['Everyone', 'speaks', 'well', 'of', 'him.'], ["They're", 'still', 'young.'], ['I', 'met', 'my', 'friends', 'yesterday.'], ['This', 'is', 'so', 'hard.'], ["I'm", 'sorry', 'you', 'got', 'dragged', 'into', 'this.'], ['If', 'you', 'need', 'anything,', 'let', 'me', 'know.'], ['The', 'summit', 'of', 'the', 'mountain', 'is', 'covered', 'with', 'fresh', 'snow.'], ['Please', 'hurry', 'up!'], ['I', 'want', 'them.'], ['Hand', 'me', 'that', 'magazine.'], ['She', 'is', 'talking.'], ['Tom', 'was', 'out', 'till', 'midnight', 'last', 'night.'], ['My', 'husband', 'is', 'away', 'for', 'the', 'weekend.'], ['Bring', 'me', 'a', 'chair.'], ['I', 'believe', 'I', 'owe', 'you', 'an', 'apology.'], ['I', "don't", 'want', 'to', 'get', 'you', 'in', 'trouble.'], ['Everyone', 'gasps.'], ['You', 'must', 'realize', 'that', 'prosperity', 'does', 'not', 'last', 'forever.'], ['Please', 'have', 'someone', 'else', 'do', 'it.'], ['Believe', 'me,', 'everything', "he's", 'told', 'you', 'is', 'a', 'crock.'], ['Tom', 'comes', 'here', 'once', 'a', 'month.'], ["That's", 'altogether', 'wrong.'], ['She', 'likes', 'birdwatching.'], ['This', 'was', 'a', 'gift', 'from', 'Tom.'], ['Tom', 'is', 'someone', "I'll", 'never', 'forget.'], ['I', "don't", 'know', 'if', 'he', 'would', 'have', 'done', 'it', 'for', 'me.'], ['Unfortunately,', 'elephants', "can't", 'sing', 'well.'], ['I', 'know', "I'm", 'going', 'to', 'die.'], ['Reservations', 'are', 'not', 'required.'], ['Do', 'you', 'have', 'a', 'family?'], ["You're", 'the', 'reason', 'I', 'came.'], ['Tom', 'sang', 'better', 'than', 'Mary', 'did.'], ["I'm", 'not', 'one', 'of', 'them.'], ['Who', 'will', 'compensate', 'for', 'the', 'loss?'], ['I', 'inquired', 'about', 'the', 'book', 'in', 'many', 'stores.'], ['I', 'never', 'said', 'that.'], ['I', "can't", 'help', 'you', 'this', 'week.'], ['Did', 'you', 'just', 'hear', 'what', 'you', 'said?'], ['Would', 'you', 'tell', 'me', 'when', 'to', 'get', 'off?'], ['How', 'did', 'you', 'come', 'by', 'all', 'this', 'money?'], ["What's", 'your', 'favorite', 'drink?'], ['His', 'incompetence', 'began', 'to', 'irritate', 'everyone.'], ['That', 'is', 'no', 'business', 'of', 'his.'], ['Tom', 'was', 'apparently', 'very', 'convincing.'], ['Athletes', 'usually', 'abstain', 'from', 'smoking.'], ['I', 'want', 'to', 'eat', 'some', 'Korean', 'food', 'that', "isn't", 'spicy.'], ['It', 'only', 'works', 'on', 'Windows.'], ['He', 'ran', 'the', 'fastest', 'of', 'all.'], ['She', 'advised', 'him', 'to', 'go', 'there', 'alone.'], ['Is', 'there', 'a', 'telephone', 'anywhere?'], ['Although', 'my', 'car', 'is', 'very', 'old,', 'it', 'still', 'runs', 'very', 'well.'], ['I', "don't", 'think', 'it', 'would', 'work', 'as', 'well', 'as', 'you', 'might', 'expect.'], ['You', 'just', "wouldn't", 'understand.'], ['The', 'rich', 'have', 'many', 'friends.'], ['I', 'was', 'in', 'the', 'hospital', 'for', 'a', 'week.'], ['I', 'nearly', 'died.'], ['Tom', 'has', 'a', 'point', 'here.'], ["That's", 'why', "I'm", 'giving', 'it', 'to', 'you.'], ['Doing', 'that', 'sort', 'of', 'thing', 'makes', 'you', 'look', 'stupid.'], ['Could', 'you', 'turn', 'off', 'the', 'TV?'], ['The', 'cat', 'sat', 'on', 'the', 'mat.'], ['No', 'matter', 'what', 'game', 'he', 'plays,', 'he', 'always', 'wins.'], ['Hope', 'is', 'not', 'a', 'strategy.'], ['She', 'was', 'a', 'charming', 'woman.'], ['He', 'was', 'not', 'impressed.'], ['I', 'like', 'to', 'relax', 'with', 'a', 'good', 'novel.'], ['I', 'have', 'no', 'one', 'else', 'to', 'turn', 'to', 'but', 'you.'], ["It's", 'impolite', 'to', 'point.'], ['What', 'are', 'you', 'two', 'conspiring', 'about?'], ['Tom', 'broke', 'his', 'promise', 'and', "didn't", 'help', 'Mary.'], ['Tom', 'says', "he's", 'planning', 'to', 'buy', 'Mary', 'a', 'gift.'], ["Let's", 'talk', 'this', 'thing', 'out,', 'OK?'], ['Please', 'send', 'an', 'ambulance.'], ['This', 'is', 'very', 'good.'], ['Police', 'arrested', 'one', 'man.'], ['There', 'are', 'a', 'lot', 'of', 'people', 'here.'], ["It's", 'sufficient.'], ['If', 'you', "don't", 'want', 'to', 'do', 'it,', 'you', "don't", 'have', 'to.'], ["You're", 'not', 'the', 'only', 'one', 'with', 'this', 'problem.'], ['This', 'is', 'a', 'funny', 'sentence.'], ['I', "didn't", 'understand', 'much', 'of', 'what', 'they', 'were', 'talking', 'about.'], ['This', 'is', 'exactly', 'what', 'I', 'wanted', 'to', 'see.'], ["I'm", 'going', 'to', 'make', 'you', 'an', 'offer', 'that', 'you', "can't", 'refuse.'], ["I'm", 'attentive.'], ["You're", 'not', 'listening', 'to', 'me.'], ["I'm", 'sorry', 'about', 'last', 'night.'], ['I', 'hope', "he's", 'all', 'right.'], ['So', 'what', 'do', 'we', 'do', 'now?'], ["I'll", 'shoot', 'both', 'of', 'you.'], ['Thank', 'you', 'for', 'helping', 'me.'], ['You', 'can', 'see', 'that', 'the', 'architect', 'paid', 'scrupulous', 'attention', 'to', 'detail.'], ['Tom', 'and', 'Mary', "don't", 'like', 'the', 'same', 'kind', 'of', 'food.'], ['I', 'will', 'survive.'], ['She', 'invited', 'him', 'in.'], ['Tom', "isn't", 'in', 'a', 'good', 'mood', 'today.'], ["I'm", 'going.'], ['He', 'arrived', 'in', 'time.'], ['You', 'need', 'a', 'joystick.'], ['Do', 'you', 'want', 'to', 'hear', 'my', 'story', 'or', 'not?'], ["I've", 'never', 'seen', 'anything', 'like', 'this', 'before.'], ['How', 'many', 'times', 'have', 'you', 'moved?'], ['Pass', 'me', 'the', 'salt,', 'please.'], ['He', 'worked', 'far', 'into', 'the', 'night.'], ['I', 'know', 'what', 'you', 'want', 'to', 'do.'], ["I'm", 'a', 'student.'], ["Won't", 'you', 'have', 'some', 'cake?'], ['He', 'can', 'speak', 'five', 'languages.'], ['They', 'live', 'downstairs.'], ['What', 'was', 'your', 'question?'], ['The', 'trip', 'will', 'take', 'at', 'least', 'five', 'days.'], ["I'd", 'rather', 'stay', 'anonymous.'], ['They', 'live', 'near', 'the', 'school.'], ['Are', 'you', 'going', 'to', 'vote', 'today?'], ['My', 'uncle', 'runs', 'a', 'hotel.'], ['They', 'deserve', 'it.'], ['Tom', 'and', 'Mary', 'returned', 'to', 'their', 'seats.'], ['The', 'old', 'chair', 'groaned', 'under', 'her', 'weight.'], ['Are', 'you', 'sure', 'of', 'it?'], ['Just', 'act', 'as', 'if', 'nothing', 'has', 'happened.'], ["I'm", 'really', 'sorry', 'to', 'hear', 'that.'], ['I', 'have', 'no', 'idea', 'what', 'the', 'reason', 'is.'], ['I', 'paid', 'my', 'taxes.'], ["He's", 'in', 'his', 'late', 'fifties.'], ['Several', 'men', 'are', 'fishing', 'from', 'the', 'riverbank.'], ['I', 'was', 'Mr.', "Jackson's", 'student.'], ['Does', 'it', 'hurt', 'anywhere?'], ['When', 'did', 'you', 'get', 'this?'], ['People', "don't", 'buy', 'milk', 'from', 'this', 'store.'], ['I', 'figured', 'Tom', 'would', 'never', 'find', 'it.'], ['Are', 'you', 'seriously', 'thinking', 'about', 'not', 'going?'], ['Why', 'did', 'I', 'do', 'this?'], ['A', 'is', 'the', 'first', 'letter', 'of', 'the', 'alphabet.'], ['Could', 'you', 'give', 'me', 'some', 'advice?'], ['Everyone', 'dies.'], ['I', 'hope', 'that', 'I', 'can', 'do', 'it.'], ['I', 'went', 'swimming', 'after', 'I', 'woke', 'up.'], ['Tom', 'always', 'walks', 'to', 'school.'], ["I'm", 'constantly', 'telling', 'her', 'to', 'behave', 'herself.'], ["It's", 'impossible', 'to', 'describe.'], ['I', 'hope', 'that', 'you', 'will', 'like', 'it.'], ['I', 'have', 'a', 'small', 'gift', 'for', 'you.'], ['Judging', 'from', 'what', 'you', 'say,', 'he', 'must', 'be', 'a', 'great', 'scholar.'], ['He', 'must', 'be', 'homesick.'], ['Why', "don't", 'you', 'pick', 'on', 'someone', 'your', 'own', 'size?'], ['I', 'missed', 'the', 'competition.'], ['Had', 'I', 'known', 'about', 'it,', 'I', 'would', 'have', 'told', 'you.'], ['Tom', 'died', 'at', 'a', 'very', 'old', 'age.'], ['I', "won't", 'be', 'getting', 'married', 'this', 'year.'], ['He', 'never', 'saw', 'his', 'mother', 'again.'], ['More', 'than', 'five-hundred', 'were', 'wounded.'], ['I', 'barely', 'know', 'anything', 'about', 'you.'], ['I', 'have', 'a', 'sore', 'throat.', 'Do', 'you', 'have', 'a', 'cough', 'drop?'], ['Half', 'the', 'students', 'were', 'absent.'], ['What', 'are', 'some', 'of', 'the', 'health', 'benefits', 'of', 'eating', 'fish?'], ['The', 'red', 'lines', 'on', 'the', 'map', 'represent', 'railway', 'lines.'], ["She's", 'been', 'severely', 'traumatized', 'by', 'bullying', 'at', 'school.'], ['Do', 'you', 'think', 'that', 'you', 'can', 'beat', 'me?'], ["You're", 'not', 'a', 'city', 'girl,', 'are', 'you?'], ['We', 'must', 'protect', 'the', 'children.'], ["There's", 'no', 'reason', 'to', 'worry.'], ['You', "weren't", 'serious,', 'were', 'you?'], ['Do', 'you', 'still', 'want', 'to', 'give', 'me', 'a', 'hug?'], ['We', 'might', 'be', 'able', 'to', 'help', 'her.'], ['Everyone', 'likes', 'her.'], ['Did', 'you', 'write', 'down', 'the', 'number?'], ['Despite', 'the', "government's", 'protection,', 'he', 'was', 'the', 'victim', 'of', 'an', 'assassination', 'attempt', 'which', 'killed', 'him.'], ["I'm", 'through.'], ['There', 'is', 'nothing', 'more', 'refreshing', 'than', 'a', 'cold', 'beer', 'on', 'a', 'hot', 'day.'], ['Can', 'we', 'just', 'not', 'talk', 'for', 'a', 'minute?'], ['He', 'bought', 'me', 'a', 'nice', 'camera.'], ['His', 'English', 'is', 'not', 'bad,', 'seeing', 'that', 'he', 'has', 'studied', 'for', 'only', 'two', 'years.'], ['He', 'earns', 'a', 'living.'], ['Please', 'let', 'me', 'try', 'it', 'again.'], ['You', 'promised', 'me', 'that', 'you', 'would', 'help.'], ['My', 'girlfriend', 'is', 'Chinese.'], ["He's", 'a', 'good', 'person.'], ['You', "don't", 'understand', 'how', 'worried', 'I', 'was', 'about', 'you.'], ['We', 'need', 'to', 'uphold', 'laws', 'against', 'discrimination', '—', 'in', 'hiring,', 'and', 'in', 'housing,', 'and', 'in', 'education,', 'and', 'in', 'the', 'criminal', 'justice', 'system.', 'That', 'is', 'what', 'our', 'Constitution', 'and', 'highest', 'ideals', 'require.'], ["You're", 'probably', 'too', 'young', 'to', 'understand', "what's", 'happening.'], ['You', 'are', 'taller', 'than', 'me.'], ['They', 'said', 'they', 'would', 'accept', 'the', "committee's", 'decision', 'as', 'final.'], ['I', 'know', 'that', 'this', 'is', 'weird.'], ['Kids', 'do', 'stupid', 'things.'], ['We', 'want', 'to', 'go', 'to', 'the', 'beach.'], ['The', 'milk', 'turned', 'sour.'], ['I', 'must', 'have', 'caught', 'a', 'cold.'], ['He', 'has', 'a', 'funny', 'name.'], ["You're", 'very', 'understanding.'], ['I', 'knew', 'we', 'were', 'going', 'to', 'get', 'married', 'the', 'moment', 'I', 'met', 'you.'], ['Sit', 'down,', 'please.'], ['She', 'got', 'no', 'answer', 'from', 'him.'], ['Everything', 'here', 'is', 'mine.'], ['I', 'just', 'want', 'you', 'to', 'be', 'OK.'], ['We', 'agree.'], ['It', 'is', 'just', 'five', "o'clock."], ['I', 'just', 'want', 'to', 'know', 'why', 'you', 'brought', 'me', 'here.'], ["You'd", 'be', 'the', 'one', 'to', 'know.'], ['I', 'saw', 'a', 'koala', 'for', 'the', 'first', 'time.'], ['How', 'did', 'you', 'find', 'us?'], ['The', 'conference', 'takes', 'place', 'annually.'], ['He', 'put', 'his', 'things', 'down', 'and', 'left.'], ['What', 'happened', 'at', 'that', 'intersection?'], ['You', "can't", 'handle', 'this', 'alone.'], ['I', "don't", 'see', 'what', 'the', 'fuss', 'is', 'about.'], ['The', 'prisoners', 'tried', 'to', 'escape.'], ['Tom', 'heard', 'some', 'shots.'], ['Do', 'you', 'like', 'studying?'], ["That's", 'all', 'that', 'matters', 'now.'], ['You', 'have', 'been', 'warned.'], ["I've", 'enjoyed', 'talking', 'to', 'you.'], ['Check', 'out', 'what', "I've", 'been', 'up', 'to.'], ['There', 'are', 'cookies', 'in', 'the', 'oven.'], ['I', 'wish', 'you', 'had', 'come', 'with', 'us.'], ['How', 'long', 'have', 'you', 'been', 'out', 'of', 'prison?'], ['Show', 'me', 'your', 'papers!'], ["That's", 'a', 'good', 'idea.', "I'm", 'going', 'to', 'do', 'that.'], ['I', 'can', 'take', 'care', 'of', 'that', 'immediately.'], ['This', 'kind', 'of', 'weather', 'makes', 'me', 'want', 'to', 'stay', 'indoors.'], ['She', 'advised', 'him', 'to', 'take', 'the', 'money.'], ['I', "don't", 'know', "what's", 'going', 'to', 'happen', 'to', 'you.'], ['Do', 'you', 'know', 'what', 'he', 'said?'], ['Almost', 'all', 'the', 'students', 'like', 'English.'], ['Come', 'and', 'see', 'me.'], ['I', "didn't", 'know', 'you', 'were', 'awake.'], ['Do', 'you', 'think', 'he', 'did', 'the', 'job', 'on', 'his', 'own?'], ["You're", 'very', 'forward.'], ["They're", 'going', 'to', 'find', 'you.'], ['Come', 'here', 'quickly.'], ['Al', 'Capone', 'was', 'finally', 'sent', 'away', 'for', 'tax', 'evasion.'], ['I', 'have', 'two', 'dogs,', 'three', 'cats,', 'and', 'six', 'chickens.'], ['Please', 'come', 'and', 'help', 'me.'], ['I', 'plan', 'to', 'write', 'Tom', 'a', 'letter.'], ['I', 'want', 'to', 'enjoy', 'this', 'moment.'], ['Are', 'you', 'open', 'on', 'Saturday?'], ['We', 'hardly', 'have', 'time', 'to', 'eat', 'breakfast.'], ['The', 'milk', 'is', 'in', 'the', 'fridge.'], ['We', 'had', 'some', 'chicken', 'soup.'], ['iTunes', 'has', 'turned', 'out', 'to', 'be', 'a', 'real', 'cash', 'cow', 'for', 'Apple.'], ['We', 'kept', 'together', 'for', 'safety.'], ['What', 'should', 'we', 'do', 'if', 'he', 'happens', 'to', 'come', 'late?'], ['I', 'had', 'good', 'teachers.'], ['Telephone', 'him', 'if', 'the', 'message', 'is', 'important.'], ['My', 'sister', 'was', 'robbed', 'of', 'her', 'bag', 'on', 'her', 'way', 'home', 'last', 'night.'], ['She', 'sleeps', 'with', 'two', 'pillows.'], ['I', 'like', 'this', 'custom.'], ['I', "didn't", 'realize', 'you', 'were', 'awake.'], ["What's", 'all', 'this?'], ['How', 'do', 'you', 'talk', 'to', 'women?'], ['He', 'writes', 'in', 'his', 'diary', 'every', 'day.'], ['We', 'all', 'did', 'well.'], ["He's", 'not', 'the', 'brightest', 'guy', 'in', 'the', 'world.'], ["That's", 'his', 'house.'], ['The', 'politician', 'tried', 'to', 'cover', 'up', 'the', 'insider', 'trading.'], ['We', "didn't", 'stay', 'in', 'Boston.'], ['Do', 'you', 'have', 'a', 'tattoo?'], ["Let's", 'forget', 'about', 'what', 'happened', 'today.'], ['Your', 'friends', 'are', 'late.'], ['Tom', 'thinks', 'Mary', 'is', 'in', 'Boston,', 'but', "she's", 'actually', 'in', 'Chicago', 'now.'], ['I', "shouldn't", 'have', 'logged', 'off.'], ['Tom', 'thinks', "that's", 'not', 'a', 'good', 'idea.'], ['The', 'mayor', "didn't", 'like', 'what', 'the', 'journalists', 'wrote.'], ['I', 'want', 'you', 'to', 'fly', 'to', 'Boston', 'tomorrow.'], ['Were', 'you', 'excited?'], ['He', 'did', 'it', 'again.'], ['You', "don't", 'have', 'any', 'proof.'], ['Let', 'me', 'take', 'your', 'coat.'], ['He', 'keeps', 'two', 'cats.'], ['I', 'figured', 'out', 'a', 'way', 'to', 'make', 'more', 'money.'], ['Playing', 'in', 'the', 'street', 'is', 'dangerous.'], ['Would', 'you', 'be', 'friends', 'with', 'me?'], ['How', 'long', 'did', 'you', 'stay?'], ["I'll", 'help', 'you', 'look', 'for', 'Tom.'], ['I', "don't", 'dream.'], ['I', 'want', 'to', 'travel', 'around', 'the', 'world.'], ['What', 'happened', 'at', 'that', 'intersection?'], ["I've", 'just', 'been', 'punished.'], ['I', 'sat', 'behind', 'a', 'very', 'tall', 'person', 'at', 'the', 'theater.'], ['You', 'have', 'done', 'very', 'well.'], ['This', 'movie', 'is', 'really', 'scary.'], ['My', 'mother', 'is', 'the', 'first', 'one', 'to', 'get', 'up', 'every', 'morning.'], ['That', 'job', 'took', 'a', 'lot', 'out', 'of', 'me.'], ['I', "don't", 'care', 'if', 'Tom', 'comes', 'or', 'not.'], ['You', 'do', 'like', 'living', 'dangerously.'], ['Tom', 'called', 'Mary,', 'but', 'the', 'line', 'was', 'busy.'], ['I', "didn't", 'want', 'you', 'to', 'miss', 'your', 'bus.'], ['Tom', 'is', 'busy', 'preparing', 'for', 'his', 'trip.'], ['This', 'tree', 'is', 'three', 'meters', 'around.'], ['You', 'must', 'not', 'indulge', 'in', 'drinking.'], ['Nothing', 'would', 'make', 'me', 'happier', 'than', 'to', 'see', 'you', 'happy.'], ['Whose', 'clock', 'is', 'it?'], ['Pick', 'a', 'date.'], ["Won't", 'you', 'come', 'to', 'the', 'party', 'tomorrow?'], ['I', 'may', 'have', 'hurt', 'his', 'feelings.'], ['If', 'I', 'were', 'you,', "I'd", 'follow', 'his', 'advice.'], ['Are', 'you', 'here', 'alone?'], ['Can', 'you', 'identify', 'the', 'man', 'using', 'this', 'picture?'], ["We'll", 'be', 'working', 'on', 'that', 'this', 'week.'], ["I've", 'never', 'heard', 'of', 'you.'], ['She', 'approached', 'him', 'with', 'a', 'smile', 'on', 'her', 'face.'], ['We', 'respect', 'them.'], ['Personal', 'liberty', 'is', 'diminishing', 'nowadays.'], ["What's", 'Tom', 'going', 'to', 'do', 'next', 'summer?'], ['Stop', 'screaming', 'like', 'a', 'girl.'], ['I', 'have', 'a', 'full-length', 'mirror', 'in', 'my', 'bedroom.'], ['It', 'was', 'a', 'joke.'], ['Can', 'you', 'make', 'a', 'salad?'], ['The', 'station', 'is', 'not', 'far', 'from', 'here.'], ['She', 'cooks', 'well.'], ['I', 'like', 'playing', 'sports.'], ['Apart', 'from', 'on', 'rainy', 'days,', 'I', 'always', 'ride', 'my', 'bike', 'to', 'work.'], ['I', 'would', 'never', 'forgive', 'myself', 'if', 'anything', 'happened', 'to', 'you.'], ["I'm", 'terrible', 'at', 'math.'], ['Drop', 'your', 'weapons!'], ['I', 'owe', 'you', 'one.'], ['I', 'have', 'good', 'news', 'in', 'store', 'for', 'you.'], ['Does', 'anyone', 'know', 'the', 'name', 'of', 'the', 'deceased?'], ['Does', 'Tom', 'have', 'a', 'fishing', 'license?'], ['Tom', 'said', "he'd", 'like', 'to', 'visit', 'Boston.'], ['I', 'mistook', 'him', 'for', 'his', 'brother.'], ['We', 'were', 'fully', 'satisfied.'], ['He', 'hung', 'his', 'jacket', 'on', 'a', 'hook.'], ['School', 'begins', 'at', 'half', 'past', 'eight.'], ['My', 'father', 'drives', 'very', 'well.'], ['I', "didn't", 'know', 'that', 'Tom', 'was', "Mary's", 'son.'], ['You', 'are', 'wanted', 'on', 'the', 'phone.'], ['I', "can't", 'turn', 'the', 'shower', 'off.', 'Could', 'you', 'check', 'it', 'for', 'me?'], ["I'm", 'trying', 'something', 'new.'], ['We', 'finally', 'did', 'it.'], ['You', "can't", 'bury', 'the', 'truth.'], ["I'm", 'glad', 'I', 'invited', 'you.'], ['The', 'house', 'is', 'in', 'need', 'of', 'repair.'], ['The', 'higher', 'we', 'go', 'up,', 'the', 'thinner', 'the', 'air', 'becomes.'], ['He', 'banged', 'his', 'head.'], ['Tom', 'is', 'playing', 'the', 'violin', 'now.'], ['I', 'can', 'barely', 'remember', 'what', 'my', 'grandfather', 'looked', 'like.'], ['They', 'kept', 'drinking.'], ['I', 'fully', 'understand', 'your', 'concerns.'], ['This', 'is', 'the', 'most', 'interesting.'], ['Do', 'you', 'know', 'Tom?'], ["What's", '5,814', 'rounded', 'to', 'the', 'nearest', 'thousand?'], ["I'll", 'guide', 'you.'], ["I'm", 'afraid', 'you', 'have', 'the', 'wrong', 'number.'], ['He', 'could', 'not', 'answer', 'that', 'question.'], ['A', 'monument', 'has', 'been', 'erected', 'to', 'the', 'memory', 'of', 'the', 'deceased.'], ['I', 'have', 'a', 'new', 'pair', 'of', 'socks.'], ["That's", 'not', 'important,', 'is', 'it?'], ['I', "can't", 'take', 'it', 'any', 'longer.'], ['Everybody', 'will', 'be', 'tired.'], ['What', 'did', 'Tom', 'do', 'today?'], ["Let's", 'play', 'dodge', 'ball.'], ["That's", 'not', 'important', 'for', 'you', 'to', 'know.'], ['Tom', 'and', 'Mary', 'were', 'in', 'love', 'with', 'each', 'other.'], ['Do', 'you', 'know', 'how', 'Tom', 'got', 'the', 'scar', 'on', 'his', 'chin?'], ['He', 'has', 'no', 'children.'], ['She', 'works', 'for', 'French', 'intelligence.'], ['I', "haven't", 'seen', 'her', 'in', 'years.'], ['He', 'learned', 'to', 'swim.'], ['Do', 'you', 'want', 'some', 'company?'], ['I', 'dream', 'about', 'you', 'every', 'night.'], ['The', 'priest', 'married', 'them', 'last', 'Sunday.'], ['I', 'was', 'discouraged.'], ['I', 'want', 'to', 'do', 'that', 'with', 'Tom.'], ['It', 'is', 'necessary', 'for', 'you', 'to', 'stop', 'smoking.'], ['I', 'talked', 'with', 'my', 'parents', 'about', 'my', 'studying', 'abroad.'], ["I'm", 'horrible', 'with', 'kids.'], ['Stop', 'stalling', 'and', 'do', 'what', 'I', 'told', 'you.'], ['He', 'became', 'world', 'famous.'], ['The', 'book', 'is', 'mine.'], ['I', "don't", 'want', 'your', 'legal', 'advice.'], ['This', 'work', 'is', 'difficult', 'for', 'us.'], ['We', 'have', 'very', 'good', 'business.'], ['I', 'wrote', 'some', 'poems', 'last', 'weekend.'], ['I', 'hear', 'the', 'phone.'], ['I', 'have', 'some', 'errands', 'to', 'run.'], ["I've", 'spent', 'a', 'lot', 'of', 'time', 'in', 'casinos.'], ["I'm", 'not', 'leaving', 'the', 'two', 'of', 'you', 'alone.'], ["I'm", 'going', 'to', 'put', 'them', 'in', 'a', 'room', 'and', 'let', 'them', 'battle', 'it', 'out.'], ['I', 'must', 'run.'], ['Tom', 'shrugged.'], ['Tickets', 'for', "today's", 'game', 'sold', 'like', 'hot', 'cakes.'], ["I'm", 'lucky.'], ['Tom', 'was', 'shot.'], ["I'm", 'ready', 'to', 'go.'], ['You', 'should', 'learn', 'from', 'your', 'mistakes.'], ['I', 'hope', 'you', 'will', 'succeed', 'in', 'winning', 'the', 'prize.'], ['Give', 'me', 'a', 'minute,', 'would', 'you?'], ['What', 'do', 'you', 'think', 'is', 'going', 'to', 'happen?'], ['Have', 'you', 'ever', 'been', 'on', 'TV?'], ['These', 'two', 'leaves', 'look', 'alike.'], ['The', 'number', 'is', '932-8647,', 'but', 'I', "don't", 'know', 'the', 'area', 'code.'], ['Tom', 'is', 'a', 'great', 'sportsman.'], ["You're", 'the', 'only', 'woman', "I've", 'ever', 'really', 'loved.'], ['Tom', 'is', 'a', 'very', 'shy', 'boy.'], ['I', "don't", 'recognize', 'this', 'shirt.', 'Whose', 'is', 'it?'], ['You', 'nearly', 'died.'], ["I'm", 'not', 'selling', 'you', 'my', 'car.'], ['He', 'was', 'the', 'last', 'person', 'I', 'had', 'expected', 'to', 'see', 'during', 'my', 'stay', 'in', 'America.'], ["You're", 'not', 'the', 'first.'], ['We', 'have', 'a', 'lot', 'of', 'rain', 'in', 'June.'], ["I'm", 'incredibly', 'tired.'], ['He', 'became', 'a', 'great', 'musician.'], ['Let', 'me', 'introduce', 'you', 'to', 'the', 'rest', 'of', 'the', 'team.'], ['I', "can't", 'help', 'myself.'], ['Can', 'you', 'get', 'that', 'to', 'me', 'by', 'the', 'end', 'of', 'the', 'day?'], ["I'm", 'checking', 'options.'], ['I', 'may', 'not', 'have', 'enough', 'time.'], ['Look', 'at', 'the', 'setting', 'sun.'], ["We've", 'installed', 'several', 'security', 'cameras.'], ['Tom', 'is', 'on', 'leave.'], ['I', 'want', 'you', 'to', 'go', 'to', 'Boston', 'with', 'Tom.'], ['Sorry,', 'I', "didn't", 'mean', 'to', 'snap', 'at', 'you.'], ['My', 'dog', 'is', 'dreaming', 'of', 'a', 'cat.'], ["I'd", 'like', 'to', 'buy', 'eye', 'drops.'], ['I', 'think', 'this', "isn't", 'enough.'], ['I', 'was', 'here', 'when', 'you', 'came', 'in.'], ['I', 'had', 'no', 'other', 'way', 'of', 'contacting', 'you,', 'so', 'I', 'came', 'here', 'in', 'person.'], ['Have', 'you', 'got', 'something', 'for', 'me?'], ['Your', 'father', 'was', 'right.'], ['My', 'children', 'wear', 'out', 'their', 'shoes', 'quickly.'], ['I', 'think', 'you', 'already', 'have', 'enough', 'money', 'to', 'buy', 'what', 'you', 'need.'], ['What', 'have', 'you', 'done', 'with', 'the', 'books?'], ['I', 'want', 'you', 'to', 'be', 'my', 'friend.'], ['I', "wasn't", 'hungry', 'anyway.'], ['Why', "don't", 'you', 'have', 'a', 'boyfriend?'], ["It's", 'a', 'tough', 'place', 'to', 'be.'], ['Here', 'is', 'a', 'list', 'of', 'things', 'you', 'should', 'avoid', 'eating.'], ['The', 'girl', 'said', 'that', 'she', 'had', 'never', 'heard', 'of', 'such', 'a', 'person.'], ['Why', 'are', 'you', 'trying', 'to', 'make', 'me', 'laugh?'], ['I', 'was', 'alone', 'in', 'the', 'classroom.'], ['Tom', 'was', 'holding', 'something', 'in', 'his', 'left', 'hand.'], ["I'm", 'sure', "I've", 'met', 'that', 'man', 'somewhere,', 'but', 'I', "don't", 'remember', 'who', 'he', 'is.'], ['Your', 'shirt', 'is', 'wrinkled.'], ["We'll", 'make', 'the', 'right', 'decision.'], ['A', 'card', 'was', 'attached', 'to', 'the', 'gift.'], ['Have', 'you', 'given', 'any', 'more', 'thought', 'to', 'what', 'I', 'told', 'you?'], ['There', 'are', 'no', 'drugs', 'here.'], ["Don't", 'you', 'tell', 'me', 'my', 'job.'], ['She', "didn't", 'like', 'living', 'in', 'the', 'city.'], ['Tom', 'certainly', 'gets', 'a', 'nice', 'sound', 'out', 'of', 'that', 'old', 'bassoon.'], ['Tom', 'ate', 'a', 'tuna', 'sandwich.'], ['It', 'feels', 'like', 'rain.'], ["Don't", 'forget', 'the', 'milk.'], ['This', 'might', 'interest', 'you.'], ["Don't", 'run', 'around', 'in', 'the', 'room.'], ['I', 'had', 'to', 'postpone', 'my', 'appointment.'], ['What', 'a', 'waste', 'of', 'money!'], ['I', "don't", 'understand', 'why', "you're", 'leaving.'], ['Your', 'mother', 'loves', 'me.'], ['Your', 'efforts', 'came', 'to', 'nothing.'], ['My', 'grandpa', 'believes', 'that', 'the', 'moon', 'landing', 'was', 'a', 'hoax.'], ['I', 'know', 'how', 'busy', "you've", 'been.'], ['He', 'finds', 'fault', 'with', 'everything', 'I', 'say.'], ['As', 'these', 'trees', 'grow', 'tall,', 'they', 'rob', 'the', 'grass', 'of', 'light.'], ['Do', 'you', 'have', 'to', 'work', 'tonight?'], ["Don't", 'look', 'a', 'gift', 'horse', 'in', 'the', 'mouth.'], ["Don't", 'open', 'the', 'box', 'yet.'], ['I', 'had', 'to', 'crawl', 'under', 'the', 'fence.'], ['How', 'much', 'would', 'you', 'want', 'to', 'pay', 'for', 'the', 'tour?'], ['Open', 'up.'], ['I', 'want', 'you', 'to', 'analyze', 'this.'], ['I', 'want', 'to', 'be', 'part', 'of', 'the', 'solution,', 'not', 'part', 'of', 'the', 'problem.'], ['It', 'would', 'be', 'better', 'to', 'try.'], ['Do', 'you', 'want', 'another', 'one', 'of', 'these?'], ["I'd", 'never', 'do', 'such', 'a', 'thing.'], ['This', 'is', 'my', 'bicycle.'], ['Can', 'I', 'rely', 'on', 'you?'], ['Have', 'you', 'seen', 'him', 'before?'], ['Who', 'cares?'], ['There', "aren't", 'any', 'problems.'], ['She', 'is', 'fresh', 'from', 'college,', 'so', 'she', 'has', 'no', 'experience.'], ['He', 'felt', 'himself', 'growing', 'old.'], ['I', "don't", 'have', 'vodka.'], ['I', 'hope', 'you', 'have', 'insurance.'], ['Do', 'you', 'really', 'want', 'to', 'buy', 'a', 'car', 'now?'], ['My', 'explanation', 'may', 'sound', 'strange.'], ['When', 'he', 'reached', 'the', 'station,', 'the', 'train', 'had', 'already', 'left', 'almost', 'half', 'an', 'hour', 'before.'], ['She', 'cried', 'all', 'night.'], ["There's", 'something', 'you', 'have', 'to', 'know.'], ['Who', 'threw', 'a', 'stone', 'at', 'my', 'dog?'], ["Don't", 'you', 'see', "what's", 'happened?'], ['It', 'is', 'what', 'I', 'would', 'do.'], ['Do', 'you', 'want', 'to', 'make', 'me', 'happy?'], ['Tom', 'knew', 'all', 'that.'], ['People', 'are', 'still', 'scared.'], ['It', 'was', 'one', 'of', 'the', 'most', 'incredible', 'experiences', 'of', 'my', 'life.'], ['They', 'invited', 'me', 'to', 'play', 'cards.'], ['They', 'changed', 'the', 'system.'], ["I'll", 'raise', 'my', 'hand', 'as', 'a', 'signal.'], ['I', 'just', 'got', 'tenure.'], ['Nothing', 'is', 'the', 'matter', 'with', 'me.'], ['I', 'reviewed', 'the', 'file.'], ['I', 'hear', 'that', 'his', 'father', 'is', 'abroad.'], ["I'm", 'thankful', 'for', 'technology.'], ["That's", 'what', 'I', 'did.'], ['I', 'think', 'you', 'should', 'see', 'a', 'doctor.'], ["That's", 'just', 'weird.'], ['Does', 'Tom', 'put', 'sugar', 'in', 'his', 'tea?'], ['Make', 'me', 'happy.'], ['I', 'need', 'more', 'information', 'on', 'this', 'matter.'], ['I', 'want', 'to', 'apologize', 'to', 'you', 'for', 'calling', 'you', 'a', 'jerk', 'in', 'front', 'of', 'your', 'girlfriend.'], ['I', 'know', 'you', "aren't", 'stupid', 'enough', 'to', 'believe', 'that.'], ['The', 'last', 'thing', 'I', 'want', 'to', 'do', 'is', 'cause', 'you', 'any', 'more', 'pain.'], ['I', 'give', 'in.'], ['Nobody', 'wants', 'to', 'play', 'chess', 'with', 'me.'], ["You've", 'already', 'given', 'me', 'enough', 'money.'], ['I', 'went', 'to', 'see', 'a', 'movie', 'with', 'Tom', 'after', 'school.'], ["You're", 'not', 'from', 'around', 'here,', 'are', 'you?'], ['You', 'can', 'stay', 'here', 'as', 'long', 'as', 'you', "don't", 'make', 'any', 'noise.'], ['English', 'has', 'now', 'become', 'the', 'common', 'language', 'of', 'several', 'nations', 'in', 'the', 'world.'], ['Lying', 'to', 'Tom', 'was', 'a', 'mistake.'], ['I', "wasn't", 'talking', 'to', 'you.'], ['It', "wasn't", 'until', 'yesterday', 'that', 'I', 'heard', 'the', 'news.'], ['We', "haven't", 'learned', 'how', 'to', 'do', 'that', 'yet.'], ['Bring', 'it', 'here.'], ['I', 'like', 'to', 'listen', 'to', 'classical', 'music.'], ['He', 'pasted', 'the', 'notice', 'on', 'the', 'door.'], ['I', 'slept', 'very', 'well', 'last', 'night.'], ['She', 'is', 'working', 'hard', 'this', 'semester.'], ['What', 'you', 'need', 'is', 'a', 'friend.'], ['They', 'walked', 'upstairs.'], ["Where's", 'the', 'closest', 'restaurant?'], ['I', 'wonder', 'why', 'Tom', 'is', 'so', 'disappointed.'], ['I', "haven't", 'renewed', 'my', 'subscription.'], ["I'm", 'feeling', 'a', 'bit', 'better.'], ['You', 'must', 'not', 'give', 'up.'], ['Now', 'drink', 'up.'], ['They', "weren't", 'able', 'to', 'agree', 'on', 'anything.'], ['Have', 'I', 'kept', 'you', 'waiting?'], ['Get', 'me', 'a', 'glass', 'of', 'milk.'], ["You're", 'a', 'pig.'], ['This', 'bus', 'will', 'take', 'you', 'to', 'the', 'museum.'], ['I', 'love', 'cooking', 'for', 'my', 'family.'], ["I'm", 'extremely', 'disappointed', 'by', 'the', 'quality', 'of', 'the', 'service.'], ['Can', 'you', 'imagine', 'what', 'our', 'lives', 'would', 'be', 'like', 'without', 'electricity?'], ['You', "don't", 'have', 'to', 'hurry.'], ['He', 'always', 'gets', 'home', 'at', 'six', "o'clock", 'in', 'the', 'evening.'], ['Tom', 'drank', 'a', 'glass', 'of', 'water.'], ['I', "didn't", 'want', 'to', 'get', 'in', 'trouble.'], ['They', 'love', 'that', 'song.'], ['Would', 'you', 'like', 'to', 'switch', 'seats?'], ['When', 'were', 'you', 'born?'], ['Tom', 'wondered', 'if', 'Mary', 'was', 'as', 'nervous', 'as', 'he', 'was.'], ['You', 'have', 'to', 'be', 'here', 'at', '2:30', 'tomorrow', 'afternoon.'], ['I', "don't", 'have', 'a', 'pencil.'], ['I', 'will', 'make', 'you', 'happy.'], ["You've", 'got', 'to', 'be', 'bold!'], ['Both', 'boys', 'were', 'rescued.'], ['He', 'demanded', 'better', 'pay.'], ['You', 'speak', 'French', 'a', 'lot', 'better', 'than', 'me.'], ['I', 'watch', 'a', 'lot', 'of', 'movies.'], ['Give', 'me', 'a', 'little', 'money.'], ['You', 'tried.'], ["I'd", 'rather', 'do', 'this', 'without', 'your', 'help.'], ['Remember', 'to', 'lock', 'the', 'door.'], ['Should', 'I', 'call', 'you', 'a', 'cab?'], ["We're", 'not', 'doing', 'anything.'], ["I'm", 'going', 'to', 'tell', 'you', 'the', 'truth.'], ["You're", 'not', 'my', 'friend.'], ['I', 'just', 'thought', 'you', 'might', 'want', 'to', 'go', 'skiing', 'with', 'us.'], ['Tom,', 'who', 'had', 'been', 'working', 'all', 'day,', 'wanted', 'to', 'have', 'a', 'rest.'], ['Grammar', 'is', 'very', 'complicated.'], ['Your', 'phone', 'is', 'ringing', 'again.'], ['Do', 'people', 'really', 'pay', 'you', 'to', 'do', 'this?'], ["I'm", 'okay.'], ['I', 'never', 'imagined', 'anything', 'like', 'this.'], ['The', 'buildings', 'are', 'small', 'in', 'comparison', 'to', 'the', 'skyscrapers', 'in', 'New', 'York.'], ['I', 'doubled', 'over', 'with', 'laughter.'], ['I', "haven't", 'told', 'Tom', 'anything.'], ['Tom', 'tiptoed', 'into', 'the', 'bedroom', 'to', 'avoid', 'waking', 'up', 'his', 'wife.'], ["Don't", 'gloat.'], ['I', 'was', 'so', 'excited', 'that', 'I', "couldn't", 'fall', 'asleep.'], ['Obviously,', 'you', 'volunteered.'], ["We're", 'going', 'to', 'have', 'to', 'make', 'some', 'very', 'tough', 'choices.'], ["That's", 'a', 'stupid', 'name.'], ['More', 'than', '40', 'percent', 'of', 'the', 'students', 'go', 'to', 'university.'], ['I', "didn't", 'ask', 'for', 'your', 'advice.'], ['Tom', 'told', 'me', 'he', 'was', 'having', 'trouble', 'sleeping.'], ['Tom', 'is', 'the', 'boy', 'I', 'told', 'you', 'about', 'the', 'other', 'day.'], ['You', 'seem', 'to', 'be', 'in', 'such', 'a', 'nasty', 'mood', 'today.'], ['I', 'warned', 'him', 'of', 'the', 'danger.'], ['Did', 'I', 'win', 'something?'], ['What', 'would', 'cause', 'that?'], ['An', 'undercover', 'operative', 'infiltrated', 'the', 'organization.'], ['I', 'think', 'I', 'like', 'eating', 'white', 'rice', 'better', 'than', 'brown', 'rice.'], ["I'm", 'very', 'hungry.'], ['Ask', 'me', 'again', 'some', 'other', 'time.'], ['The', 'European', 'currencies', 'have', 'weakened', 'against', 'the', 'dollar.'], ['Tom', 'looks', 'sleepy', 'this', 'morning.'], ['You', 'must', 'be', 'sleepy.'], ['She', 'showed', 'them', 'how', 'to', 'fasten', 'their', 'seat', 'belts.'], ['The', 'weather', 'is', 'very', 'cold', 'in', 'Istanbul.'], ["I'm", 'just', 'watching', 'television.'], ['I', 'tricked', 'you.'], ['Tom', 'is', 'a', 'very', 'good', 'friend.'], ['You', 'need', 'to', 'lie', 'down.'], ['The', 'press', 'is', 'interested', 'in', 'his', 'private', 'life.'], ["I'm", 'not', 'that', 'hungry.'], ['You', 'know', 'that', 'your', 'English', 'is', 'good', 'when', 'people', 'stop', 'complimenting', 'you', 'on', 'how', 'good', 'your', 'English', 'is.'], ['I', 'have', 'trouble', 'falling', 'asleep', 'because', 'I', 'always', 'have', 'a', 'lot', 'on', 'my', 'mind.'], ['I', 'rarely', 'drink', 'instant', 'coffee.'], ['Are', 'you', 'getting', 'tired?'], ['I', 'had', 'a', 'valid', 'visa,', 'so', 'I', 'was', 'allowed', 'to', 'enter', 'the', 'country.'], ['Can', 'I', 'ask', 'why', 'this', 'is', 'so', 'important', 'to', 'you?'], ['I', 'tried', 'to', 'save', 'you.'], ['You', 'have', 'good', 'taste', 'in', 'music.'], ['He', 'may', 'not', 'be', 'able', 'to', 'come.'], ['He', 'cleared', 'the', 'path', 'of', 'snow.'], ['He', 'stood', 'up.'], ["What's", 'the', 'scariest', 'thing', "you've", 'ever', 'done?'], ['Tom', 'has', 'a', 'broken', 'arm.'], ['Three', 'out', 'of', 'four', 'Americans', 'believe', 'in', 'the', 'existence', 'of', 'paranormal', 'phenomena.'], ['Would', 'you', 'consider', 'taking', 'care', 'of', 'my', 'children', 'next', 'Saturday?'], ['There', 'are', 'only', 'two', 'days', 'left.'], ['Quit', 'behaving', 'like', 'a', 'kid.'], ['I', "can't", 'believe', 'I', 'kissed', 'you.'], ['We', 'are', 'boiling', 'water.'], ['Seen', 'from', 'a', 'distance,', 'the', 'big', 'rock', 'looks', 'like', 'an', 'old', 'castle.'], ['I', 'would', 'be', 'more', 'careful', 'if', 'I', 'were', 'you.'], ['I', 'never', 'for', 'a', 'moment', 'imagined', 'that', 'I', 'would', 'still', 'be', 'doing', 'this', 'kind', 'of', 'thing', 'at', 'my', 'age.'], ['Add', 'two', 'ounces', 'of', 'grated', 'cheese.'], ["Don't", 'get', 'discouraged.'], ["I've", 'just', 'finished', 'lunch.'], ["Where's", "Mary's", 'ring?'], ['How', 'rude', 'of', 'you!'], ['There', 'is', 'a', 'pond', 'in', 'the', 'middle', 'of', 'the', 'park.'], ["They're", 'waiting', 'for', 'you.'], ['I', 'wonder', 'whose', 'scissors', 'these', 'are.'], ["It's", 'better', 'to', 'be', 'a', 'winner', 'than', 'a', 'loser.'], ['The', 'Prime', "Minister's", 'speech', 'was', 'calculated', 'to', 'anger', 'the', 'opposition', 'parties.'], ['May', 'I', 'use', 'your', 'car', 'today?'], ['I', 'have', 'an', 'old', 'car.'], ['Our', 'teacher', 'looks', 'young', 'for', 'her', 'age.'], ['I', "can't", 'believe', 'I', 'listened', 'to', 'you.'], ['She', 'trusted', 'you.'], ["I'd", 'like', 'to', 'discuss', 'this', 'with', 'your', 'boss.'], ['I', "can't", 'do', 'this', 'work', 'alone.'], ['I', 'have', 'an', 'extremely', 'tight', 'schedule', 'for', 'tomorrow.'], ['I', "didn't", 'know', 'that', 'you', 'needed', 'to', 'do', 'that.'], ['If', 'you', "don't", 'want', 'it,', "I'll", 'eat', 'it.'], ["I've", 'got', 'to', 'get', 'home.'], ['He', 'earns', 'his', 'living', 'by', 'teaching.'], ["It's", 'getting', 'ridiculous.'], ['He', 'likes', 'watching', 'baseball', 'games', 'on', 'TV.'], ['How', 'do', 'we', 'upload', 'photos', 'to', 'your', 'website?'], ['Whoever', 'guesses', 'the', 'number', 'wins.'], ['He', 'was', 'successful', 'in', 'several', 'areas.'], ['They', 'want', 'to', 'do', 'this', 'right.'], ['Plants', 'grow.'], ["Let's", 'help', 'him', 'so', 'that', 'he', 'will', 'succeed.'], ["I've", 'done', 'my', 'job.'], ['Which', 'is', 'your', 'favorite', 'team?'], ['She', 'apologized', 'for', 'her', 'delay.'], ['Tom', 'eats', 'like', 'a', 'pig.'], ['Edison', 'invented', 'the', 'electric', 'lamp.'], ['Tom', 'asked', 'Mary', 'to', 'meet', 'us', 'here.'], ["That's", 'hardly', 'the', 'point,', 'is', 'it?'], ['Where', 'do', 'you', 'think', 'we', 'came', 'from?'], ["Wouldn't", 'you', 'rather', 'spend', 'your', 'time', 'doing', 'something', 'you', 'enjoy?'], ['Wait', 'here', 'till', 'he', 'comes', 'back.'], ['Is', 'that', 'your', 'mother?'], ['I', "can't", 'believe', 'my', 'ears.'], ['I', 'had', 'issues', 'I', 'had', 'to', 'deal', 'with.'], ['No', 'one', 'has', 'been', 'here.'], ['Tom', 'paints.'], ['These', 'butterflies', 'are', 'rare', 'in', 'our', 'country.'], ['I', "wasn't", 'always', 'happy.'], ['You', "don't", 'understand', 'women,', 'Tom.'], ['You', "shouldn't", 'have', 'done', 'that.'], ['She', 'spends', 'way', 'too', 'much', 'time', 'surfing', 'the', 'web.'], ["I'll", 'just', 'leave', 'this', 'here.'], ['My', 'sister', 'always', 'makes', 'fun', 'of', 'me.'], ['Where', 'do', 'you', 'get', 'your', 'hair', 'done?'], ['We', 'still', 'have', 'plenty', 'of', 'time.'], ['You', 'might', 'be', 'the', 'only', 'one', 'who', 'can', 'do', 'that.'], ['I', 'used', 'to', 'be', 'your', 'age.'], ["That's", 'all', 'there', 'was.'], ['I', 'graduated', 'from', 'university', 'last', 'year.'], ['Your', 'answer', 'is', 'correct.'], ["I'm", 'sorry', 'I', 'hurt', 'you.'], ['Bradford', 'is', 'arguably', 'the', 'ugliest', 'town', 'in', 'Britain.'], ['Am', 'I', 'reinstated?'], ['Please', 'refrain', 'from', 'smoking.'], ["Where's", 'the', 'closest', 'train', 'station?'], ['I', 'saw', 'you', 'yesterday.'], ['A', 'river', 'flows', 'through', 'the', 'valley.'], ["You've", 'got', 'paint', 'on', 'you.'], ['I', "can't", 'figure', 'out', 'why', 'he', "didn't", 'tell', 'the', 'truth.'], ['Can', 'you', 'help', 'us?'], ['Everyone', 'needs', 'friends.'], ['I', 'agree', 'with', 'his', 'idea.'], ['She', 'advised', 'him', 'to', 'see', 'the', 'dentist,', 'but', 'he', 'said', 'he', "didn't", 'have', 'enough', 'time', 'to', 'do', 'so.'], ['The', 'climate', 'here', 'is', 'very', 'similar', 'to', 'that', 'of', 'England.'], ['Do', 'you', 'know', 'when', 'they', 'will', 'arrive?'], ["I'm", 'sorry,', 'I', "don't", 'let', 'in', 'people', 'I', "don't", 'know.'], ["I've", 'never', 'sung', 'this', 'before.'], ['You', 'know', 'what', 'they', 'say.'], ["Don't", 'let', 'go.', 'Hold', 'on', 'tight.'], ['All', 'of', 'us', 'like', 'her.'], ['I', "don't", 'work', 'there', 'anymore.'], ['Why', 'were', 'you', 'so', 'busy', 'yesterday?'], ["What's", 'the', 'point', 'in', 'doing', 'that?'], ['The', 'government', 'should', 'do', 'away', 'with', 'these', 'regulations.'], ['England', 'and', 'France', 'are', 'separated', 'by', 'the', 'English', 'Channel.'], ['I', 'met', 'her', 'on', 'a', 'certain', 'winter', 'day.'], ['Is', 'anyone', 'in', 'there?'], ['I', 'was', 'tempted.'], ['I', 'want', 'to', 'make', 'one', 'thing', 'perfectly', 'clear.'], ["Where's", 'the', 'original?'], ['How', 'old', 'do', 'you', 'think', 'I', 'am?'], ['We', 'made', 'a', 'huge', 'mistake.'], ['Their', 'work', 'seems', 'good', 'to', 'me.'], ['I', 'feel', 'like', "I'm", 'wasting', 'my', 'time.'], ['Have', 'you', 'finished', 'the', 'work', 'yet?'], ['She', 'divorced', 'him.'], ["You're", 'amazing.'], ["Don't", 'be', 'so', 'impatient.'], ['Do', 'you', 'really', 'want', 'to', 'win?'], ['I', 'really', 'like', 'this', 'album.'], ['There', 'must', 'be', 'a', 'mistake.'], ['They', "don't", 'understand', 'French.'], ['I', 'have', 'settled', 'on', 'green', 'for', 'the', 'curtains.'], ['Both', 'of', 'the', 'brothers', 'are', 'dead.'], ['She', 'found', 'confrontations', 'very', 'upsetting.'], ['I', 'have', 'often', 'been', 'here.'], ['Tom', 'gave', 'me', 'this', 'watch.'], ['I', 'caught', 'them', 'in', 'the', 'act.'], ['Your', 'sister', 'is', 'beautiful', 'as', 'ever.'], ['We', 'all', 'knew', 'it.'], ['I', 'have', 'to', 'change', 'the', 'batteries', 'in', 'the', 'radio.'], ['I', 'never', "should've", 'gotten', 'divorced.'], ['She', 'described', 'the', 'scene', 'in', 'detail.'], ['She', 'urged', 'him', 'to', 'consider', 'the', 'request.'], ['By', 'postponing', 'what', 'you', 'have', 'to', 'do,', 'you', 'run', 'the', 'risk', 'of', 'never', 'being', 'able', 'to', 'do', 'it.'], ["I'm", 'reliable.'], ["I'm", 'much', 'younger', 'than', 'you.'], ['They', 'agreed', 'to', 'meet', 'me', 'here.'], ['This', 'kind', 'of', 'specialized', 'knowledge', 'has', 'very', 'little', 'to', 'do', 'with', 'daily', 'life.'], ['When', 'did', 'you', 'seed', 'the', 'lawn?'], ['I', 'smell', 'something', 'burning.'], ['You', "don't", 'look', 'that', 'good.'], ['Who', 'do', 'you', 'trust?'], ['I', 'caught', 'a', 'beautiful', 'butterfly.'], ['Is', 'it', 'a', 'big', 'problem?'], ["What're", 'we', 'waiting', 'for?'], ["It's", 'not', 'the', 'sort', 'of', 'illness', 'that', 'puts', 'your', 'life', 'at', 'risk.'], ["It's", 'like', 'being', 'in', 'a', 'candy', 'shop.'], ['They', 'need', 'the', 'money.'], ['Give', 'me', 'an', 'example.'], ['You', "can't", 'let', 'it', 'get', 'to', 'you.'], ['Which', 'color', 'do', 'you', 'prefer,', 'blue', 'or', 'green?'], ['I', "don't", 'really', 'need', 'your', 'help.'], ['Officially,', 'we', "don't", 'allow', 'that.'], ['Have', 'you', 'ever', 'known', 'me', 'to', 'be', 'mistaken?'], ["It's", 'no', 'problem.'], ['The', 'weather', 'is', 'terrible', 'today.'], ['He', 'kept', 'on', 'reading', 'the', 'book.'], ["I'd", 'like', 'to', 'try', 'doing', 'this', 'without', 'your', 'help.'], ['We', 'followed', 'him', 'single', 'file', 'till', 'we', 'reached', 'the', 'cabin.'], ['Moral', 'leadership', 'is', 'more', 'powerful', 'than', 'any', 'weapon.'], ['Be', 'nice', 'to', 'others.'], ['Would', 'you', 'want', 'to', 'live', 'like', 'that?'], ['They', 'let', 'me', 'pick', 'a', 'present.'], ['Just', "don't", 'forget', 'this.'], ['Tom', "doesn't", 'know', 'the', 'difference', 'between', 'linen', 'and', 'wool.'], ['At', 'last,', 'I', 'passed', 'the', 'test.'], ['Few', 'politicians', 'admit', 'their', 'mistakes.'], ['Have', 'you', 'ever', 'argued', 'with', 'your', 'parents?'], ['Who', "wouldn't", 'want', 'to', 'live', 'here?'], ['I', 'showed', 'him', 'the', 'way.'], ["We're", 'trying', 'to', 'close', 'the', 'box.'], ["It's", 'about', 'time', 'to', 'start.'], ['Can', 'you', 'promise', 'me', 'you', "won't", 'do', 'that?'], ['I', "don't", 'know', 'that', 'word.'], ['Weather', 'permitting,', "let's", 'go', 'on', 'a', 'picnic.'], ['The', 'almond', 'trees', 'are', 'in', 'bloom.'], ['Why', 'are', 'you', 'so', 'busy', 'today?'], ['Think', 'about', 'it.'], ["I'm", 'angry.'], ['He', 'wrote', 'to', 'me', 'from', 'time', 'to', 'time.'], ['He', 'will', 'make', 'a', 'good', 'team', 'captain.'], ['I', 'know', 'all', 'about', 'you.'], ['In', 'the', 'United', 'States,', 'it', 'takes', 'a', 'minimum', 'of', 'eight', 'years', 'of', 'college', 'to', 'become', 'a', 'medical', 'doctor.'], ['This', 'store', 'is', 'in', 'a', 'prime', 'location.'], ['Did', 'you', 'show', 'it', 'to', 'your', 'parents?'], ['She', 'is', 'bad-mannered.'], ['Tom', 'is', 'taller', 'than', 'Mary.'], ['I', 'really', 'have', 'to', 'think', 'about', 'this', 'a', 'bit', 'more.'], ['Please', 'write', 'to', 'me', 'once', 'in', 'a', 'while.'], ['I', 'have', 'homework', 'to', 'do.'], ['Let', 'me', 'know', 'if', "there's", 'anything', 'I', 'can', 'do.'], ['I', 'know', 'that', 'you', 'still', 'love', 'me.'], ['There', "isn't", 'any', 'problem', 'at', 'all.'], ['For', 'some', 'reason,', 'people', 'have', 'been', 'avoiding', 'me', 'like', 'the', 'plague', 'ever', 'since', 'I', 'got', 'back', 'from', 'India.'], ['Tom', 'is', 'never', 'at', 'a', 'loss', 'for', 'words.'], ['Your', 'feet', 'will', 'lead', 'you', 'to', 'where', 'your', 'heart', 'is.'], ['He', 'will', 'provide', 'you', 'with', 'what', 'you', 'need.'], ['I', 'will', 'be', 'back', 'soon.'], ['I', "don't", 'need', 'a', 'new', 'TV.'], ["It's", 'not', 'the', 'answer.'], ['They', "won't", 'get', 'past', 'me.'], ['His', 'helplessness', 'appeals', 'to', 'her', 'motherly', 'sympathy.'], ['We', 'need', 'to', 'call', 'someone.'], ['His', 'new', 'record', 'sells', 'well.'], ['We', 'enjoyed', 'watching', 'the', 'game.'], ['Try', 'to', 'be', 'more', 'punctual', 'from', 'now', 'on.'], ['I', 'grow', 'tomatoes.'], ['What', 'do', 'you', 'say?'], ['Does', 'anyone', 'know', 'the', 'name', 'of', 'the', 'deceased?'], ['Have', 'you', 'tried', 'it', 'before?'], ["How's", 'your', 'old', 'lady', 'doing?'], ["We're", 'not', 'old.'], ['What', "don't", 'you', 'have?'], ['I', 'caught', 'a', 'carp', 'in', 'a', 'net.'], ['He', 'found', 'my', 'bicycle.'], ['Do', 'you', 'guys', 'need', 'anything', 'else?'], ['She', 'put', 'on', 'socks.'], ['Sanitary', 'conditions', 'in', 'the', 'refugee', 'camps', 'were', 'terrible.'], ['Where', 'are', 'they', 'now?'], ['How', 'do', 'you', 'go', 'there?', 'By', 'car?'], ['You', 'were', 'just', 'in', 'the', 'wrong', 'place', 'at', 'the', 'wrong', 'time.'], ['We', "don't", 'want', 'anyone', 'asking', 'questions.'], ["That's", 'just', 'awesome.'], ["I'm", 'coming', 'home.'], ['It', 'happens', 'a', 'lot.'], ["They're", 'all', 'here.'], ['You', 'were', 'removed', 'from', 'the', 'list.'], ['He', 'asked', 'me', 'if', 'I', 'were', 'happy.'], ['If', 'you', "don't", 'do', 'this', 'now,', "you'll", 'regret', 'it', 'for', 'the', 'rest', 'of', 'your', 'life.'], ['Finally,', 'I', 'finished', 'a', 'painting.'], ['She', 'is', 'progressing', 'in', 'Chinese.'], ['I', 'told', 'you', 'guys', 'to', 'go', 'home.', 'Why', 'are', 'you', 'still', 'here?'], ['I', "should've", 'finished', 'that', 'sooner.'], ['Do', 'you', 'think', 'students', 'are', 'given', 'enough', 'time', 'to', 'eat', 'lunch?'], ['I', 'unloaded', 'the', 'car.'], ["That's", 'my', 'cat.'], ['No', 'matter', 'where', 'you', 'may', 'go,', "don't", 'forget', 'to', 'write', 'to', 'me.'], ['They', 'accused', 'me', 'of', 'being', 'a', 'liar.'], ['We', 'were', 'there.'], ['You', 'said', 'you', 'wanted', 'more', 'responsibility.'], ['The', 'Prime', 'Minister', 'has', 'resigned.'], ['This', "one's", 'a', 'little', 'harder.'], ['How', 'tall', 'you', 'are!'], ['I', "can't", 'find', 'the', 'hotel.'], ['They', 'fell', 'into', 'each', "other's", 'arms.'], ["I'm", 'so', 'embarrassed,', 'I', 'want', 'to', 'die.'], ['He', "didn't", 'say', 'a', 'word', 'to', 'me', 'all', 'day.'], ["I'm", 'not', 'accustomed', 'to', 'such', 'treatment.'], ['Safety', 'is', 'the', 'most', 'important', 'thing.'], ['For', 'certain', 'tasks,', 'my', 'computer', 'can', 'be', 'very', 'useful.'], ['Tom', 'almost', 'fainted.'], ['All', 'of', 'my', 'relatives', 'are', 'taller', 'than', 'me.'], ['The', 'old', 'man', 'is', 'hard', 'to', 'please.'], ['I', 'have', 'a', 'fever', 'and', 'I', 'ache', 'all', 'over.'], ["I'm", 'a', 'minister.'], ['I', 'did', 'it', 'for', 'you.'], ["You'd", 'better', 'go', 'to', 'bed.'], ['Do', 'you', 'want', 'to', 'come', 'with', 'us?'], ['No', 'one', 'died.'], ['Do', 'you', 'really', 'think', 'this', 'is', 'a', 'good', 'idea?'], ["I'll", 'see', 'you', 'next', 'month.'], ['I', 'completely', 'forgot.'], ['He', 'advised', 'caution.'], ['It', 'was', 'the', 'perfect', 'moment', 'for', 'a', 'kiss.'], ['She', 'looks', 'confused.'], ['Were', 'you', 'at', 'home', 'all', 'morning?'], ['Tom', 'changed.'], ['Tom', "hasn't", 'called', 'me.'], ['Tom', 'lived', 'in', 'Boston', 'for', 'a', 'long', 'time.'], ['I', "can't", 'tell', 'you', 'how', 'happy', 'I', 'am', 'that', "you've", 'come', 'to', 'visit', 'us.'], ["You're", 'the', 'only', 'person', 'who', 'shows', 'me', 'any', 'respect.'], ['Can', 'you', 'tell', 'me', 'about', 'that', 'conversation?'], ['I', "don't", 'remember', 'that', 'conversation.'], ['The', 'magician', 'made', 'birds', 'appear', 'and', 'disappear.'], ["He's", 'a', 'real', 'man.'], ['He', 'is', 'such', 'a', 'show', 'off.'], ['Last', 'night', 'someone', 'broke', 'into', 'the', 'small', 'shop', 'near', 'my', 'house.'], ['Show', 'me', 'your', 'tattoo.'], ['He', 'made', 'an', 'important', 'scientific', 'discovery.'], ['You', 'were', 'terrified,', "weren't", 'you?'], ['The', 'fire', 'went', 'out.'], ['The', 'glass', 'is', 'full', 'of', 'milk.'], ['She', 'really', 'wants', 'to', 'go.'], ['Could', 'you', 'go', 'to', 'the', 'store', 'and', 'grab', 'some', 'eggs?'], ['I', "don't", 'need', 'your', 'help.'], ['Your', 'behavior', 'was', 'disgraceful.'], ["Let's", 'speak', 'in', 'French.'], ['How', 'was', 'your', 'day?'], ['They', 'were', 'all', 'here.'], ['That', "would've", 'been', 'embarrassing.'], ['I', 'have', 'every', 'reason', 'to', 'believe', 'that', 'he', 'is', 'innocent', 'of', 'the', 'crime.'], ['You', "don't", 'seem', 'tired', 'at', 'all.'], ['The', 'door', 'remained', 'closed.'], ["We're", 'lucky', 'to', 'be', 'alive.'], ['Russia', 'is', 'the', 'largest', 'country', 'in', 'the', 'world.'], ['Our', 'hotel', 'faces', 'the', 'coast.'], ['I', 'have', 'no', 'kids.'], ['I', 'only', 'speak', 'a', 'smattering', 'of', 'Japanese.'], ['He', 'is', 'worthy', 'of', 'our', 'praise.'], ['Tom', 'told', 'me', 'he', 'was', 'innocent.'], ['Do', 'you', 'feel', 'like', 'going', 'for', 'a', 'swim', 'in', 'the', 'creek', 'later?'], ['Put', 'it', 'onto', 'the', 'table.'], ['This', 'is', 'a', 'very', 'important', 'day', 'for', 'us.'], ['Your', "T-shirt's", 'on', 'backwards.'], ['We', 'owe', 'three', 'years', 'worth', 'of', 'taxes.'], ['You', 'and', 'Tom', 'used', 'to', 'be', 'friends.', 'What', 'happened?'], ["That's", 'reversing', 'the', 'logical', 'order', 'of', 'things.'], ["I'm", 'not', 'very', 'busy.'], ['What', 'was', 'the', 'time', 'of', 'death?'], ['Do', 'you', 'know', 'how', 'to', 'count', 'to', 'ten', 'in', 'French?'], ['Stop', 'being', 'so', 'naive.'], ["I'll", 'be', 'there.'], ['They', 'fed', 'a', 'black', 'and', 'a', 'white', 'dog.'], ["They'd", 'find', 'a', 'way', 'to', 'do', 'whatever', 'they', 'want', 'to', 'do', 'anyway.'], ['That', 'is', 'a', 'pure', 'waste', 'of', 'time.'], ['I', 'asked', 'him', 'what', 'his', 'name', 'was.'], ['Please', 'bring', 'me', 'a', 'clean', 'knife.'], ['Are', 'you', 'really', 'that', 'stupid?'], ['A', 'child', 'is', 'crying', 'somewhere.'], ['They', 'are', 'running', 'now.'], ["We're", 'competitors,', 'not', 'partners.'], ['Please', 'tell', 'the', 'others', 'everything', "you've", 'just', 'told', 'me.'], ['My', 'father', 'is', 'in.'], ['Tom', "hasn't", 'eaten', 'a', 'decent', 'meal', 'in', 'a', 'long', 'time.'], ['I', 'want', 'to', 'stay', 'a', 'few', 'days.'], ['They', 'are', 'the', 'ones', 'who', 'want', 'to', 'go.'], ["I'm", 'smarter', 'than', 'you.'], ['Who', 'can', 'afford', 'to', 'buy', 'such', 'an', 'expensive', 'house?'], ['I', 'disagree.'], ['Paris', 'is', 'one', 'of', 'the', 'largest', 'cities', 'in', 'the', 'world.'], ['I', 'told', 'you', "I'm", 'not', 'hungry.'], ['Are', 'these', 'your', 'children?'], ['They', 'were', 'very', 'excited.'], ['It', 'may', 'snow.'], ['How', 'do', 'you', 'stand', 'this', 'humidity?'], ['We', 'did', 'nothing', 'wrong.', 'It', 'was', 'only', 'a', 'kiss.'], ['That', 'accident', 'happened', 'near', 'his', 'house.'], ['Everybody', 'makes', 'mistakes', 'once', 'in', 'a', 'while.'], ['Can', 'you', 'tell', 'me', 'what', 'this', 'is?'], ['Why', 'would', 'Tom', 'be', 'here?'], ['Are', 'you', 'good', 'at', 'tennis?'], ['They', 'hurried', 'to', 'the', 'scene', 'of', 'the', 'accident.'], ["Don't", 'spoil', 'your', 'appetite.'], ['The', 'explorers', 'made', 'their', 'way', 'through', 'the', 'jungle.'], ['I', 'finished', 'reading', 'the', 'book.'], ["They're", 'young', 'and', 'healthy.'], ['How', 'long', 'did', 'you', 'stay?'], ['This', 'heater', "won't", 'heat', 'up', 'that', 'large', 'room.'], ['I', 'think', 'you', 'know', "that's", 'not', 'true.'], ['I', 'watched', 'the', 'game', 'from', 'beginning', 'to', 'end.'], ['Did', 'you', 'understand', 'me?'], ['Where', 'did', 'I', 'put', 'it?'], ["We've", 'already', 'tried.'], ['Tom', 'opened', 'the', 'door,', 'even', 'though', 'I', 'asked', 'him', 'not', 'to.'], ['I', "can't", 'bear', 'it', 'any', 'longer.'], ["He's", 'a', 'married', 'man.'], ['Can', 'you', 'whistle?'], ['There', "wasn't", 'anyone', 'in', 'the', 'room.'], ['Actually,', "that's", 'why', "I'm", 'here.'], ['Show', 'it', 'to', 'me.'], ['I', 'thought', 'you', 'might', 'want', 'this', 'back.'], ['I', 'have', 'no', 'reason', 'to', 'lie', 'to', 'you.'], ['Live', 'free', 'or', 'die.'], ['Unfortunately,', 'I', 'missed', 'all', 'the', 'fun.'], ['No', 'one', 'moved.'], ['The', 'house', 'was', 'painted', 'white.'], ['I', "haven't", 'eaten', 'anything', 'all', 'day,', 'but', 'I', "don't", 'feel', 'hungry.'], ["Let's", 'do', 'this', 'first', 'of', 'all.'], ['I', "don't", 'know', 'if', 'Tom', 'still', 'lives', 'in', 'Boston.'], ['It', 'looks', 'nice.'], ['I', 'like', 'my', 'life', 'the', 'way', 'it', 'is', 'now.'], ['I', 'am', 'confronted', 'with', 'a', 'difficult', 'problem.'], ['You', 'must', 'stay.'], ['Can', 'I', 'borrow', 'a', 'pen?', "Mine's", 'on', 'its', 'last', 'legs.'], ["We've", 'seen', 'her.'], ['My', 'brother', 'is', 'a', 'college', 'student.'], ['I', 'wonder', 'if', "there's", 'a', 'market', 'for', 'something', 'like', 'that.'], ['I', 'could', 'sense', 'that', 'Tom', 'was', 'upset.'], ['Get', 'out', 'of', 'my', 'life!'], ['I', "don't", 'even', 'have', 'one.'], ['They', 'kept', 'drinking.'], ['I', 'figured', "I'd", 'find', 'you', 'here.'], ['I', 'thought', 'you', 'were', 'smart.'], ['The', 'airport', 'is', 'closed.'], ['Tom', 'is', 'in', 'his', 'bedroom', 'doing', 'his', 'homework.'], ['I', 'want', 'to', 'make', 'sure', 'you', 'are', 'who', 'you', 'say', 'you', 'are.'], ['The', 'old', 'man', 'gave', 'her', 'a', 'small', 'doll.'], ['I', 'gathered', 'together', 'my', 'things', 'and', 'put', 'them', 'in', 'my', 'suitcase.'], ["Don't", 'make', 'me', 'kill', 'you.'], ["It's", 'like', 'being', 'in', 'a', 'candy', 'shop.'], ['I', 'did', 'everything', 'in', 'my', 'power', 'to', 'protect', 'her', 'from', 'you.'], ['She', 'lived', 'in', 'the', 'suburbs', 'of', 'Tokyo', 'when', 'she', 'was', 'young.'], ['The', 'population', 'of', 'Germany', 'is', 'less', 'than', 'half', 'that', 'of', 'the', 'United', 'States.'], ['How', 'much', 'longer', 'do', 'we', 'have', 'to', 'stay', 'here?'], ['I', 'think', 'you', 'should', 'choose', 'Tom.'], ["I'd", 'like', 'to', 'see', 'your', 'ticket,', 'please.'], ['I', "haven't", 'seen', 'you', 'for', 'a', 'long', 'time.', 'Come', 'and', 'see', 'me', 'once', 'in', 'a', 'while.'], ['That', "wasn't", "Tom's", 'choice.'], ['Did', 'you', 'play', 'baseball', 'yesterday?'], ['When', 'you', 'watch', 'television', 'or', 'listen', 'to', 'the', 'radio,', 'the', 'music', 'which', 'you', 'hear', 'is', 'often', 'African', 'in', 'origin.'], ['I', "don't", 'want', 'to', 'see', 'you', 'again.'], ['He', 'went', 'back', 'to', 'the', 'store.'], ['"Will', 'it', 'stop', 'raining', 'soon?"', '"I\'m', 'afraid', 'not."'], ['I', "don't", 'need', 'an', 'explanation.'], ['We', 'swam', 'in', 'the', 'sea.'], ['Please', 'lower', 'the', 'window.'], ["That's", 'not', 'what', 'I', 'wanted', 'to', 'do.'], ['You', 'have', 'a', 'good', 'reputation.'], ['I', "can't", 'make', 'it', 'any', 'clearer.'], ['When', 'did', 'you', 'arrive?', 'Did', 'you', 'arrive', 'today?'], ['You', 'have', 'a', 'little', 'fever', 'today,', "don't", 'you?'], ['What', 'is', 'your', 'job?'], ["Don't", 'forget', 'about', 'us!'], ['I', 'lived', 'in', 'a', 'small', 'town.'], ['It', 'appears', 'that', 'he', 'is', 'mistaken.'], ['Tom', 'is', 'tall,', 'but', 'not', 'as', 'tall', 'as', 'me.'], ["I'm", 'rational.'], ['Now', 'go', 'have', 'fun.'], ['A', 'reception', 'was', 'given', 'for', 'the', 'Japanese', 'foreign', 'minister.'], ['They', 'enjoy', 'one', "another's", 'company.'], ['I', 'think', 'we', 'can', 'handle', 'that.'], ['Will', 'it', 'snow', 'tonight?'], ["It's", 'not', 'our', 'fault.'], ['He', 'stopped', 'reading', 'the', 'newspaper.'], ['Are', 'you', 'sure', 'you', 'want', 'to', 'leave', 'without', 'saying', 'goodbye?'], ['You', 'gotta', 'get', 'more', 'organized.'], ["You've", 'gone', 'too', 'far', 'this', 'time.'], ['I', 'sat', 'down', 'next', 'to', 'him.'], ['That', 'car', 'belongs', 'in', 'a', 'museum.'], ['Nobody', 'can', 'solve', 'this', 'problem.'], ["I've", 'been', 'waiting', 'for', 'the', 'bus', 'for', 'three', 'hours.'], ['I', 'think', 'you', 'need', 'to', 'find', 'yourself', 'a', 'part-time', 'job.'], ["You're", 'very', 'skeptical.'], ['I', 'heard', 'a', 'strange', 'sound.'], ['That', 'kind', 'of', 'thing', 'happens', 'every', 'day.'], ['I', 'want', 'to', 'know', 'what', "you'll", 'do.'], ['I', "can't", 'fix', 'the', 'seat.'], ['She', 'made', 'the', 'same', 'mistake', 'again.'], ["I'm", 'sick', 'of', 'this', 'hot', 'weather.'], ['Nobody', 'knows', 'it', 'but', 'me.'], ['Tom', 'has', 'no', 'insurance.'], ['Do', 'you', 'actually', 'like', 'this?'], ['I', "don't", 'wear', 'chapstick.'], ['My', 'impression', 'of', 'the', 'United', 'States', 'is', 'very', 'good.'], ['This', 'law', 'is', 'applicable', 'to', 'all', 'cases.'], ['I', 'bought', 'it', 'in', 'a', 'thrift', 'store.'], ['Did', 'you', 'write', 'this', 'book?'], ['Tom', 'is', 'deaf', 'in', 'his', 'left', 'ear.'], ['I', 'will', 'go', 'along', 'with', 'you', 'as', 'far', 'as', 'the', 'station.'], ['Pretty', 'flowers', 'do', 'not', 'necessarily', 'smell', 'sweet.'], ['Do', 'you', 'have', 'enough', 'energy?'], ["I'd", 'like', 'to', 'see', 'a', 'doctor.'], ['I', 'will', 'not', 'let', 'you', 'do', 'it.'], ['Tom', 'is', 'not', 'my', 'friend', 'anymore.'], ['Wait', 'until', 'tomorrow', 'morning.'], ['Did', 'Tom', 'ever', 'tell', 'you', 'how', 'he', 'first', 'met', 'Mary?'], ['I', 'could', 'have', 'done', 'it', 'without', 'your', 'help.'], ['Can', 'you', 'tell', 'me', 'the', 'time,', 'please?'], ['The', 'chair', 'is', 'broken.'], ['He', 'got', 'the', 'first', 'prize.'], ["I'll", 'call', 'you', 'in', 'a', 'couple', 'of', 'days.'], ['Throw', 'me', 'the', 'ball.'], ['What', 'are', 'you', 'doing', 'next', 'summer?'], ['Tell', 'me', 'the', 'reason', 'why', 'you', 'want', 'to', 'live', 'in', 'the', 'countryside.'], ['Music', 'is', 'a', 'universal', 'language.'], ['Do', 'you', 'have', 'any', 'French', 'newspapers?'], ['Why', 'do', 'you', 'always', 'wear', 'that', 'hat?'], ['You', "shouldn't", 'have', 'paid', 'the', 'bill.'], ["I've", 'already', 'read', 'it.'], ['Parents', 'were', 'hopeful', 'about', 'the', 'future.'], ['I', 'knew', 'we', 'were', 'going', 'to', 'get', 'married', 'the', 'moment', 'I', 'met', 'you.'], ['Let', 'me', 'see', 'that', 'list.'], ["That's", 'icky.'], ['It', 'was', 'just', 'hype.'], ['Tom', 'sent', 'Mary', 'a', 'gift.'], ['I', 'know', 'that', 'was', 'a', 'mistake.'], ['The', 'car', 'cut', 'to', 'the', 'left.'], ['Who', 'made', 'the', 'actual', 'arrest?'], ['We', 'need', 'to', 'burn', 'all', 'this', 'stuff', 'before', 'the', 'police', 'get', 'here.'], ['Is', 'your', 'new', 'computer', 'working', 'well?'], ['He', 'called', 'me', 'a', 'cab.'], ['I', 'felt', 'somebody', 'pat', 'me', 'on', 'the', 'shoulder.'], ['Has', 'he', 'given', 'up', 'cigarettes?'], ["You're", 'a', 'snob.'], ['I', "don't", 'have', 'much', 'longer.'], ['Please', "don't", 'nitpick', 'just', 'for', 'the', 'sake', 'of', 'nitpicking.'], ['I', 'work', 'here.'], ['Good', 'luck.', "You'll", 'need', 'it.'], ['I', 'like', 'spending', 'time', 'with', 'Tom.'], ['You', "shouldn't", 'have', 'done', 'it.'], ['She', 'shrieked.'], ['Tom', 'understands', 'the', 'risks.'], ['Take', 'a', 'chance.'], ['Nothing', 'is', 'more', 'disappointing', 'than', 'to', 'lose', 'in', 'the', 'finals.'], ['When', 'did', 'you', 'get', 'back', 'from', 'Boston?'], ['We', 'have', 'a', 'big', 'day', 'tomorrow.'], ['We', 'all', 'wondered', 'why', 'she', 'had', 'dumped', 'such', 'a', 'nice', 'man.'], ["I'm", 'feeling', 'good', 'this', 'morning.'], ['He', 'said', 'we', 'must', 'keep', 'the', 'secret.'], ['It', 'is', 'not', 'the', 'correct', 'solution.'], ['Allow', 'me', 'to', 'accompany', 'you.'], ['I', 'still', 'have', 'some', 'doubts.'], ['I', "don't", 'feel', 'well.'], ['Today', "it's", 'very', 'sunny,', 'so', 'everyone', 'is', 'wearing', 'sunglasses.'], ['As', 'soon', 'as', 'the', 'accident', 'occurred,', 'a', 'police', 'car', 'rushed', 'to', 'the', 'scene.'], ['Attach', 'a', 'recent', 'photograph', 'to', 'your', 'application', 'form.'], ["I'll", 'handle', 'things.'], ['I', 'thought', 'about', 'that.'], ['It', 'is', 'under', 'the', 'chair.'], ['If', 'I', 'remember', 'correctly,', "that's", 'the', 'song', 'Tom', 'sang', 'at', "Mary's", 'wedding.'], ['I', 'appreciate', 'your', 'patience.'], ['I', 'saw', 'a', 'man', 'enter', 'the', 'room.'], ["It's", 'just', 'a', 'dream.'], ['Tom', 'called', 'Mary', 'before', 'breakfast.'], ['She', 'advised', 'him', 'to', 'drink', 'more', 'milk.'], ['Grandma', 'is', 'three', 'and', 'a', 'half', 'times', 'your', 'age.'], ['I', "don't", 'have', 'to', 'apologize', 'for', 'what', 'I', 'said.'], ['Maybe', 'we', 'should', 'cancel', 'the', 'meeting.'], ['He', 'usually', 'fed', 'his', 'dog', 'cheap', 'dog', 'food.'], ['There', "isn't", 'much', 'time.'], ['I', "didn't", 'realize', 'you', 'were', 'awake.'], ['Tom', "didn't", 'kiss', 'anybody.'], ['She', 'threw', 'her', 'hands', 'up', 'in', 'horror', 'when', 'she', 'saw', 'what', 'he', 'had', 'done.'], ['That', 'box', 'is', 'bigger', 'than', 'this', 'one.'], ["It's", 'hers.'], ["I'm", 'cooking.'], ["I'll", 'be', 'late.'], ['Does', 'someone', 'here', 'know', 'how', 'to', 'do', 'this?'], ['I', 'just', 'had', 'a', 'talk', 'with', 'your', 'teacher.'], ['You', 'must', 'be', 'cautious.'], ['Where', 'did', 'you', 'learn', 'to', 'dance', 'like', 'this?'], ['"Thank', 'you', 'for', 'your', 'help."', '"It\'s', 'my', 'pleasure."'], ["I'm", 'proud', 'of', 'my', 'family.'], ["I'm", 'staying', 'out', 'of', 'it.'], ['Tom', 'knew', 'too', 'much.'], ['Tom', 'introduced', 'me', 'to', 'Mary.'], ['Let', 'me', 'get', 'that', 'for', 'you.'], ['Where', 'do', 'you', 'all', 'come', 'from?'], ['In', 'a', 'town', 'with', 'only', 'one', 'barber,', 'who', 'shaves', 'the', 'barber?'], ['Neither', 'Tom', 'nor', 'Mary', 'wears', 'glasses.'], ['Tom', 'often', 'changes', 'his', 'mind.'], ['Can', 'you', 'climb', 'the', 'tree?'], ['It', 'was', 'supposed', 'to', 'be', 'kept', 'secret.'], ['I', 'heard', 'something', 'outside.'], ['People', 'say', 'that', 'life', 'is', 'short.'], ['E-cigarettes', 'are', 'being', 'promoted', 'as', 'a', 'healthy', 'alternative', 'to', 'tobacco', 'cigarettes,', 'but', 'health', 'authorities', 'are', 'concerned', 'about', 'the', 'long-term', 'health', 'effects', 'on', 'users.'], ['I', 'started', 'to', 'learn', 'English', 'with', 'the', 'aim', 'of', 'becoming', 'a', 'teacher.'], ['Maybe', 'what', 'you', 'said', 'is', 'true.'], ['Do', 'you', 'mind', 'if', 'I', "don't", 'do', 'this?'], ['We', 'need', 'to', 'do', 'that', 'as', 'soon', 'as', 'we', 'can.'], ['I', 'tore', 'up', 'all', 'the', 'letters', 'that', 'you', 'wrote', 'to', 'me.'], ['My', 'children', "don't", 'listen', 'to', 'me.'], ['You', "shouldn't", 'have', 'done', 'it.'], ['I', 'need', 'the', 'tape.'], ["Let's", 'share', 'the', 'expenses.'], ['He', 'came', 'back', 'from', 'America.'], ['She', 'fell', 'unconscious', 'to', 'the', 'floor.'], ['We', 'have', 'until', 'October', 'to', 'complete', 'our', 'plan.'], ['Tom', 'got', 'stuck', 'in', 'traffic.'], ['I', "can't", 'figure', 'out', 'how', 'to', 'operate', 'this', 'machine.'], ['What', 'foods', 'are', 'you', 'allergic', 'to?'], ['If', 'something', 'is', 'wrong,', 'tell', 'me.'], ['Is', 'this', 'the', 'train', 'for', 'New', 'York?'], ["It's", 'inevitable.'], ['Show', 'me', 'where', 'it', 'happened.'], ["I'm", 'on', 'my', 'way', 'home', 'from', 'work.'], ["It's", 'kind', 'of', 'hard.'], ['Philosophy', 'is', 'often', 'regarded', 'as', 'difficult.'], ['I', 'want', 'a', 'jump', 'rope', 'with', 'wooden', 'handles.'], ['They', 'were', 'attacked.'], ['Does', 'anyone', 'want', 'some', 'more', 'pie?'], ["It's", 'just', 'the', 'right', 'size.'], ['You', 'have', 'to', 'do', 'that', 'whether', 'you', 'like', 'it', 'or', 'not.'], ['The', 'garden', 'was', 'full', 'of', 'yellow', 'flowers.'], ['Do', 'you', 'want', 'coffee?'], ['You', 'can', 'read', 'this', 'book.'], ['I', 'cannot', 'agree', 'to', 'his', 'proposal.'], ['I', 'want', 'my', 'freedom.'], ['What', 'are', 'some', 'of', 'your', 'favorite', 'foods?'], ['Tom', "won't", 'talk', 'to', 'me', 'about', 'it.'], ['My', 'father', 'would', 'often', 'go', 'fishing.'], ['I', 'love', 'my', 'mother', 'very', 'much.'], ['Louis', 'Pasteur', 'discovered', 'that', 'germs', 'cause', 'most', 'infectious', 'diseases.'], ['Somebody', 'tried', 'to', 'kill', 'me.'], ['Buy', 'it', 'for', 'me,', 'please.'], ['You', "don't", 'have', 'to', 'talk', 'about', 'it', 'if', 'you', "don't", 'want', 'to.'], ['Enjoy', 'yourself', 'for', 'a', 'change.'], ['My', 'wife', 'was', 'mad.'], ['Mary', 'looks', 'like', 'her', 'mother,', 'but', 'her', 'personality', 'is', 'different.'], ['Which', 'one', 'of', 'you', 'is', 'the', 'psychic?'], ['Is', 'it', 'really', 'that', 'hard', 'to', 'speak', 'French?'], ['It', "wasn't", 'a', 'dream.'], ['She', 'spoke', 'impolitely.'], ['Is', 'this', 'your', 'first', 'conference', 'in', 'Paris?'], ['Are', 'you', 'sure', 'you', "don't", 'want', 'to', 'go', 'with', 'us?'], ['All', 'we', 'can', 'do', 'is', 'wait', 'for', 'the', 'police', 'to', 'arrive.'], ['I', "don't", 'know', 'what', 'to', 'do', 'from', 'now', 'on.'], ['We', "haven't", 'been', 'to', 'Boston', 'in', 'a', 'long', 'time.'], ['You', 'should', 'apologize.'], ['He', 'has', 'spent', 'ten', 'years', 'in', 'jail', 'for', 'murder.'], ['That', 'was', 'the', 'goal.'], ['I', "can't", 'remember', 'how', 'to', 'spell', 'her', 'name.'], ["I'm", 'bringing', 'home', 'a', 'pizza.'], ['If', 'I', 'were', 'you,', 'I', 'would', 'stay', 'quiet.'], ['I', 'always', 'carry', 'a', 'bottle', 'of', 'mineral', 'water', 'with', 'me.'], ["That's", 'what', 'people', 'say.'], ['He', 'took', 'a', 'day', 'off.'], ['This', 'building', 'looks', 'very', 'futuristic.'], ['How', 'did', 'you', 'know', 'about', 'the', 'bomb?'], ['He', 'was', 'sent', 'into', 'combat.'], ['Can', 'you', 'walk', 'on', 'stilts?'], ['Who', 'are', 'you?'], ['That', 'almost', 'sounds', 'like', 'a', 'threat.'], ["We're", 'all', 'at', 'risk.'], ['Mind', 'your', 'own', 'business.'], ['By', 'the', 'way,', 'have', 'you', 'heard', 'from', 'her', 'since', 'then?'], ['You', "aren't", 'likely', 'to', 'find', 'that', 'word', 'in', 'a', 'dictionary', "that's", 'this', 'small.'], ['You', 'are', 'both', 'in', 'the', 'wrong.'], ['Changes', 'came', 'quickly.'], ['I', 'want', 'to', 'play,', 'too.'], ['Tom', "didn't", 'scream.'], ['I', 'want', 'you', 'to', 'open', 'the', 'window.'], ['I', 'had', 'to', 'see', 'you.'], ['Having', 'a', 'full', 'time', 'job', 'and', 'raising', 'two', 'kids', 'at', 'the', 'same', 'time', 'is', 'hard.'], ['Please', 'go', 'right', 'away.'], ['What', 'are', 'some', 'foods', 'you', 'usually', 'eat', 'with', 'your', 'children?'], ['I', 'love', 'hanging', 'out', 'with', 'you.'], ['He', 'is', 'better', 'than', 'me', 'at', 'math.'], ['When', 'did', 'you', 'see', 'her', 'dancing', 'with', 'him?'], ['Why', 'were', 'you', 'late', 'this', 'morning?'], ['They', 'drive', 'on', 'the', 'left', 'in', 'England.'], ["I've", 'got', 'some', 'very', 'good', 'news.'], ['You', "don't", 'have', 'what', 'it', 'takes', 'to', 'be', 'a', 'leader.'], ['She', 'is', 'French.'], ['Please', 'knock', 'before', 'entering.'], ["I'm", 'glad', 'Tom', 'was', 'there', 'with', 'me.'], ['Prices', 'dropped', 'suddenly.'], ['Do', 'you', 'prefer', 'Coke', 'or', 'Pepsi?'], ['I', 'heard', 'you', 'did', 'well.'], ["Don't", 'stop', 'him.'], ['This', "isn't", 'the', 'first', 'time', 'this', 'has', 'happened.'], ['He', 'has', 'taken', 'all', 'this', 'trouble', 'for', 'nothing.'], ["It's", 'beautiful.'], ['I', 'imagine', 'that', 'you', 'went', 'through', 'a', 'lot', 'of', 'difficulties.'], ['He', 'is', 'used', 'to', 'such', 'situations.'], ['I', 'woke', 'up', 'at', 'sunrise.'], ['It', 'was', 'too', 'small.'], ['You', 'hurt', 'my', 'feelings.'], ['I', "can't", 'make', 'you', 'any', 'promises.'], ['I', 'just', 'kept', 'my', 'mouth', 'shut.'], ['Please', 'think', 'about', 'the', 'problem.'], ['What', 'do', 'you', 'plan', 'on', 'doing', 'tonight?'], ['Did', 'you', 'do', 'that', 'purposely?'], ['My', 'bicycle', 'has', 'a', 'flat.'], ['The', 'good', 'news', 'is', 'that', 'you', "don't", 'have', 'cancer.'], ["It's", 'very', 'entertaining.'], ['A', 'dog', 'can', 'see', 'in', 'the', 'dark.'], ['Do', 'you', 'have', 'any', 'kids?'], ['We', 'all', 'stood', 'up', 'at', 'once.'], ["You're", 'out', 'of', 'touch', 'with', 'reality.'], ['This', 'is', 'our', 'last', 'chance.'], ['Are', 'you', 'afraid', 'of', 'something?'], ['She', 'will', 'give', 'her', 'picture', 'to', 'whoever', 'wants', 'it.'], ['Do', 'you', 'miss', 'it?'], ["You're", 'always', 'wearing', 'the', 'same', 'clothes.'], ["I've", 'lost', 'interest', 'in', 'golf.'], ['Look', 'at', 'that', 'bird.'], ['Can', 'you', 'please', 'walk', 'away?'], ["I've", 'learned', 'something', 'from', 'this', 'book.'], ["We're", 'not', 'friends', 'anymore.'], ['He', 'told', 'me', 'that', 'he', 'wanted', 'to', 'leave', 'the', 'company.'], ['Break', 'the', 'chocolate', 'into', 'small', 'pieces.'], ['Why', 'are', 'you', 'so', 'quiet?'], ['How', 'lovely!'], ['What', 'is', 'the', 'name', 'of', 'that', 'bird?'], ['Tom', 'put', 'a', 'star', 'on', 'top', 'of', 'the', 'Christmas', 'tree.'], ['I', "can't", 'stand', 'being', 'treated', 'like', 'a', 'child.'], ["You're", 'the', 'most', 'beautiful', 'girl', 'in', 'the', 'world.'], ['I', "won't", 'pay', 'for', 'that.'], ['I', "don't", 'care', 'how', 'you', 'do', 'it.', 'Just', 'do', 'it.'], ['My', 'mother', 'likes', 'tulips', 'very', 'much', 'and', 'so', 'does', 'my', 'sister.'], ['I', 'prefer', 'tea', 'to', 'coffee.'], ['I', 'have', 'doubts', 'about', 'the', 'success', 'of', 'their', 'plan.'], ['They', 'have', 'an', 'extra', 'bed.'], ['The', 'old', 'lady', 'smiled', 'at', 'her', 'granddaughter.'], ['We', 'want', 'it', 'back.'], ["They're", 'mad', 'at', 'you.'], ['Can', 'you', 'give', 'me', 'a', 'ride?'], ['He', 'lost', 'his', 'sight', 'in', 'the', 'accident.'], ['Tom', "isn't", 'serious,', 'is', 'he?'], ['Attendance', 'is', 'mandatory.'], ["It's", 'awfully', 'expensive.'], ['Customer', 'satisfaction', 'is', 'our', 'number', 'one', 'priority.'], ['What', 'are', 'you', 'going', 'to', 'do', 'with', 'it?'], ['Japan', 'imports', 'oranges', 'from', 'California.'], ["I'll", 'find', 'you.'], ['I', 'sensed', 'immediately', 'that', 'something', 'was', 'wrong.'], ['I', "don't", 'know', 'my', 'address', 'yet,', "I'm", 'going', 'to', 'stay', 'with', 'my', 'friend', 'for', 'a', 'while.'], ['Achilles', 'was', 'an', 'ancient', 'Greek', 'hero.'], ['I', 'know', 'that', 'I', 'can', 'do', 'better.'], ['The', 'house', 'was', 'burned', 'to', 'the', 'ground.'], ['Tom', 'is', 'full', 'of', 'ambition.'], ['That', 'man', 'is', 'unworthy', 'of', 'you.'], ['Can', 'you', 'believe', 'it?'], ['Gradually', 'the', 'true', 'meaning', 'of', 'what', 'he', 'said', 'began', 'to', 'dawn', 'on', 'me.'], ["You're", 'very', 'wise.'], ['He', 'made', 'a', 'tour', 'of', 'Europe.'], ['I', 'think', "this'll", 'work.'], ["That's", 'a', 'complex', 'question.'], ['She', 'made', 'the', 'same', 'mistake', 'again.'], ['He', 'lifted', 'her', 'in', 'the', 'air.'], ["I've", 'drifted', 'apart', 'from', 'my', 'friends.'], ['I', 'have', 'something', 'of', 'yours.'], ['Cuban', 'soldiers', 'were', 'guarding', 'the', 'streets.'], ['I', 'told', 'you', 'the', 'truth', 'when', 'I', 'told', 'you', 'I', 'loved', 'you.'], ['Were', 'you', 'with', 'anyone?'], ['Is', 'everything', 'OK?'], ["I've", 'got', 'a', 'friend', 'in', 'the', 'FBI.'], ['Choose', 'a', 'dress', 'you', 'like.'], ['How', 'are', 'things', 'at', 'home?'], ["It's", 'very', 'hard', 'to', 'see', 'yourself', 'as', 'others', 'see', 'you.'], ['Tom', 'closed', 'his', 'eyes.'], ['He', 'had', 'the', 'old', 'machine', 'fixed.'], ['I', "don't", 'want', 'you', 'to', 'be', 'upset.'], ['I', 'think', 'you', 'ought', 'to', 'listen.'], ['They', 'crushed', 'all', 'resistance.'], ['I', 'met', 'my', 'teacher', 'on', 'the', 'way', 'to', 'the', 'station.'], ['Does', 'anyone', 'in', 'your', 'office', 'speak', 'French?'], ['Tom', 'broke', 'my', 'heart.'], ['He', 'traveled', 'all', 'over', 'the', 'world.'], ['She', 'disappeared.'], ["You're", 'nuts!'], ["They'll", 'eat', 'those.'], ['Why', 'would', 'anybody', 'come', 'here?'], ['What', 'movie', 'was', 'it', 'that', 'you', 'told', 'me', 'I', 'should', 'watch?'], ['Culture', 'plays', 'a', 'dynamic', 'role', 'in', 'shaping', 'an', "individual's", 'character,', 'attitude,', 'and', 'outlook', 'on', 'life.'], ['Tom', 'and', 'Mary', 'are', 'vegetarians.'], ['I', 'saved', 'you.'], ['I', 'think', 'they', 'know', 'me.'], ['She', 'keeps', 'her', 'diary', 'in', 'English.'], ["Don't", 'waste', 'your', 'time', 'thinking', 'about', 'it.'], ['The', 'door', "won't", 'open.'], ['It', 'was', 'a', 'dark', 'and', 'stormy', 'night.'], ['I', "don't", 'care', 'about', 'fashion.'], ['We', 'home-schooled', 'all', 'three', 'of', 'our', 'children.'], ['My', 'brother', 'is', 'stupid.'], ['Unfortunately,', 'my', 'father', "isn't", 'at', 'home.'], ['This', 'is', 'a', 'book', 'about', 'stars.'], ['Do', 'you', 'like', 'mine?'], ['There', 'is', 'something', 'you', 'must', 'know.'], ['I', "didn't", 'take', 'a', 'shower.'], ['Tom', 'often', 'speaks', 'in', 'riddles.'], ['I', 'just', 'want', 'to', 'let', 'you', 'know', 'that', 'I', "won't", 'let', 'you', 'down.'], ['You', 'were', 'my', 'friend.'], ["I'm", 'living', 'with', 'my', 'parents.'], ["It's", 'not', 'worth', 'the', 'wait.'], ['People', 'are', 'always', 'dying.'], ['The', 'train', 'came', 'to', 'a', 'smooth', 'stop.'], ['The', 'doctor', 'examined', 'the', 'baby.'], ["You're", 'very', 'smart.'], ['Why', "wasn't", 'Tom', 'there?'], ['I', 'never', 'thought', 'it', 'would', 'be', 'this', 'bad.'], ['Tom', 'screamed', 'at', 'the', 'top', 'of', 'his', 'lungs.'], ['Which', 'one', 'would', 'you', 'take?'], ['I', 'know', 'Tom', 'is', 'a', 'strong', 'guy.'], ['What', 'are', 'you', 'doing', 'in', 'my', 'room?'], ['"You\'re', 'a', 'good', 'guitarist."', '"I\'d', 'like', 'to', 'think', 'I', 'am."'], ['Why', "don't", 'you', 'stay', 'there?'], ['Do', 'you', 'think', 'in', 'French?'], ['How', 'did', 'you', 'know', 'all', 'that?'], ['Was', 'it', 'good?'], ['The', 'time', 'has', 'come', 'for', 'you', 'to', 'play', 'your', 'trump', 'card.'], ['I', 'thought', "I'd", 'lost', 'you.'], ['I', 'cannot', 'see', 'this', 'picture', 'without', 'remembering', 'my', 'childhood.'], ['We', 'enjoyed', 'watching', 'TV.'], ['What', 'you', 'spend', 'time', 'doing', 'in', 'your', 'childhood', 'affects', 'the', 'rest', 'of', 'your', 'life.'], ['My', 'watch', 'loses', 'two', 'minutes', 'a', 'day.'], ['She', 'practices', 'the', 'piano', 'in', 'the', 'afternoon', 'or', 'in', 'the', 'evening.'], ['I', 'doubt', "that's", 'what', 'really', 'happened.'], ['Have', 'you', 'ever', 'been', 'kissed', 'before?'], ['I', 'hear', 'you', 'were', 'grounded.'], ['I', 'think', 'it', "won't", 'rain', 'tomorrow.'], ['We', "couldn't", 'stop', 'him', 'from', 'hitting', 'her.'], ['He', "doesn't", 'have', 'a', 'hat', 'on.'], ["I'm", 'lucky', 'today.'], ['Nobody', 'encouraged', 'her.'], ['Tom', 'is', 'making', 'tea.'], ['Is', 'that', 'the', 'only', 'way', 'out?'], ['He', 'is', 'too', 'dumb', 'to', 'fear', 'danger.'], ['Stay', 'out', 'of', 'my', 'way.'], ['I', 'had', 'a', 'good', 'job.'], ['How', 'was', 'the', 'weather', 'yesterday?'], ['I', 'had', 'no', 'choice', 'but', 'to', 'do', 'what', 'he', 'asked.'], ['I', 'know', 'how', 'busy', 'you', 'are.'], ['Where', 'on', 'earth', 'did', 'you', 'get', 'it?'], ["I'm", 'sorry', 'to', 'hear', 'it.'], ['We', 'learned', 'about', 'the', 'importance', 'of', 'eating', 'a', 'healthy', 'lunch.'], ["I'm", 'looking', 'for', 'my', 'pen.'], ["They're", 'handcuffed.'], ['There', 'are', 'times', 'when', "I'd", 'like', 'to', 'be', 'more', 'like', 'you.'], ['Can', 'you', 'touch', 'your', 'toes', 'without', 'bending', 'your', 'legs?'], ['He', 'married', 'his', 'daughter', 'to', 'a', 'lawyer.'], ['Put', 'your', 'pants', 'on.'], ['I', 'know', 'Tom', 'is', 'a', 'bad', 'loser.'], ['We', 'miss', 'Tom', 'terribly.'], ["I'm", 'sad.'], ['I', 'expect', 'to', 'be', 'back', 'next', 'Monday.'], ['You', "can't", 'both', 'be', 'right.'], ['Did', 'anyone', 'see', 'you', 'come', 'in', 'here?'], ['I', 'was', 'more', 'than', 'a', 'little', 'shocked', 'by', 'this.'], ['Take', 'off', 'your', 'clothes.'], ["I'm", 'very', 'surprised', 'to', 'see', 'that.'], ['We', 'had', 'to', 'walk', 'all', 'the', 'way', 'to', 'the', 'station.'], ['I', 'want', 'to', 'wash', 'myself.'], ['I', 'have', 'read', 'the', 'book', 'before.'], ["It's", 'a', 'rumor.'], ['We', 'all', 'learn', 'by', 'experience.'], ["Don't", 'disappear', 'on', 'me', 'again.'], ['I', 'bet', "you're", 'wondering', 'how', 'this', 'works.'], ['She', 'told', 'him', 'where', 'to', 'put', 'the', 'suitcase.'], ['You', 'are', 'twice', 'as', 'strong', 'as', 'I', 'am.'], ['Tell', 'Tom', "it's", 'an', 'emergency.'], ['I', 'am', 'doubtful', 'of', 'his', 'success.'], ["I'm", 'Canadian.'], ['We', "don't", 'know.'], ['I', 'tried', 'to', 'tell', 'you', 'this', 'before.'], ['Tom', "wasn't", 'at', 'all', 'surprised.'], ['All', 'I', 'found', 'is', 'a', 'pair', 'of', 'scissors.'], ['Tom', "doesn't", 'want', 'to', 'wait', 'that', 'long.'], ["I'd", 'like', 'to', 'stay', 'here', 'a', 'little', 'longer.'], ['Are', 'you', 'old', 'enough', 'to', 'drive?'], ['There', 'are', 'many', 'wild', 'animals', 'around', 'here.'], ['The', 'boy', 'enjoyed', 'painting', 'a', 'picture.'], ['We', "weren't", 'invited', 'to', 'the', 'opening', 'ceremony.'], ['You', 'can', 'invite', 'other', 'people.'], ['Let', 'me', 'handle', 'it.'], ['If', 'for', 'some', 'reason', 'that', 'should', 'happen,', 'what', 'would', 'you', 'do?'], ['The', 'train', 'was', 'about', 'to', 'leave.'], ['I', 'got', 'this', 'one', 'for', '$300.'], ['He', 'received', 'quite', 'a', 'few', 'letters', 'this', 'morning.'], ['The', 'supplies', 'are', 'beginning', 'to', 'give', 'out.'], ['Tom', "doesn't", 'want', 'to', 'go', 'with', 'Mary.'], ["You're", 'the', 'pro.'], ['A', 'is', '5', 'times', 'as', 'long', 'as', 'B.'], ['Everyone', 'fell', 'asleep.'], ['The', 'mailman', 'comes', 'around', 'every', 'three', 'days.'], ['My', 'grandfather', 'gave', 'me', 'a', 'birthday', 'present.'], ['I', "couldn't", 'make', 'him', 'understand', 'my', 'English.'], ['Every', 'season', 'is', 'different.'], ['You', 'might', 'be', 'the', 'only', 'one', 'who', 'can', 'do', 'that.'], ["I'll", 'leave.'], ['Tom', 'is', 'back', 'in', 'town.'], ['I', 'went', 'home.'], ['They', 'had', 'no', 'money', 'left.'], ["You'll", 'be', 'thirty', 'years', 'old', 'next', 'year.'], ['Get', 'on', 'your', 'horse.'], ["We've", 'all', 'done', 'it.'], ['I', 'should', 'be', 'studying', 'English,', 'but', "I'd", 'rather', 'watch', 'a', 'movie.'], ['The', 'birds', 'were', 'hungry.'], ['I', 'will', 'see', 'to', 'it', 'that', 'you', 'meet', 'her', 'at', 'the', 'party.'], ['They', 'work', 'at', 'night.'], ['They', "won't", 'last', 'that', 'long.'], ['Stop', 'acting', 'like', 'a', 'child.'], ["Let's", 'get', 'together', 'the', 'next', 'time', 'you', 'come', 'back', 'to', 'Boston.'], ['I', 'thought', 'you', 'needed', 'money.'], ['I', "don't", 'know', 'whether', 'it', 'is', 'true', 'or', 'not.'], ['I', 'thought', 'Tom', 'was', 'mistaken.'], ['Stop', 'arguing.'], ["Where's", 'your', 'school?'], ['I', 'think', "you've", 'overcooked', 'the', 'broccoli.'], ['We', 'have', 'had', 'a', 'lot', 'of', 'snow', 'this', 'winter.'], ['Taking', 'care', 'of', 'the', 'baby', 'is', 'my', 'job.'], ['Where', 'were', 'all', 'of', 'you?'], ['Is', 'he', 'breathing?'], ['How', 'long', 'does', 'it', 'take', 'to', 'get', 'to', 'Vienna', 'on', 'foot?'], ['Why', 'did', 'you', 'quit?'], ['He', "can't", 'cook', 'very', 'well.'], ['He', 'lay', 'face', 'up.'], ['Can', 'you', 'drive', 'a', 'car?'], ['Have', 'a', 'nice', 'holiday.'], ['Most', 'people', 'are', 'very', 'passionate', 'about', 'something.'], ['This', 'book', 'is', 'a', 'whodunit.'], ['Tom', 'is', 'naive.'], ['Some', 'medicine', 'does', 'us', 'harm.'], ['I', 'hope', 'I', 'never', 'meet', 'him', 'again.'], ['Can', 'you', 'put', 'up', 'with', 'the', 'way', 'he', 'behaves?'], ['I', 'held', 'his', 'sleeve.'], ['She', 'is', 'anxious', 'to', 'meet', 'you.'], ['Tom', 'is', 'dating', 'an', 'exchange', 'student', 'from', 'China.'], ['Somebody', 'must', 'care', 'for', 'the', 'patient.'], ['Tom', 'said', 'Mary', 'told', 'him', 'that.'], ['Tom', "couldn't", 'have', 'done', 'it', 'any', 'better.'], ['Let', 'me', 'hear', 'from', 'you', 'very', 'soon.'], ['Does', 'Tom', 'also', 'live', 'on', 'this', 'street?'], ['I', 'need', 'to', 'change', 'my', 'shirt.'], ['The', 'answer', 'is', 'anything', 'but', 'simple.'], ['Have', 'you', 'had', 'a', 'thorough', 'medical', 'checkup', 'within', 'the', 'last', 'year?'], ["There's", 'no', 'chance', "you're", 'getting', 'away.'], ['It', 'would', 'be', 'fun', 'to', 'see', 'how', 'things', 'change', 'over', 'the', 'years.'], ['I', 'understand', 'perfectly.'], ["That's", 'too', 'good', 'to', 'be', 'true.'], ['Tom', 'said', 'he', "didn't", 'want', 'to', 'eat', 'anything.'], ['The', 'game', 'has', 'been', 'postponed.'], ['What', 'brings', 'you', 'here?'], ["It's", 'probably', 'a', 'virus.'], ['Never', 'hesitate', 'to', 'tell', 'the', 'truth.'], ['I', 'stepped', 'aside', 'so', 'that', 'he', 'could', 'pass.'], ['I', 'felt', 'winded', 'after', 'running', 'up', 'the', 'stairs.'], ['Of', 'course!', 'Why', "didn't", 'I', 'think', 'of', 'that', 'before?'], ['Something', 'happened', 'here,', 'but', 'I', "don't", 'know', 'what.'], ['My', 'bicycle', 'has', 'a', 'flat', 'tire.'], ['I', 'did', 'warn', 'you.'], ['The', 'sound', 'came', 'from', 'that', 'direction.'], ['Everyone', 'has', 'their', 'own', 'strong', 'and', 'weak', 'points.'], ["Don't", 'forget', 'to', 'put', 'on', 'some', 'sunscreen.'], ['I', 'had', 'to', 'see', 'you', 'again.'], ['Tom', 'took', 'care', 'of', 'our', 'children', 'last', 'weekend.'], ['Do', 'you', 'know', 'who', 'we', 'are?'], ['I', 'am', 'going', 'out', 'this', 'afternoon.'], ['Which', 'is', 'the', 'heavier', 'of', 'the', 'two?'], ['I', 'just', 'want', 'to', 'know', 'what', "I'm", 'getting', 'into.'], ['He', "doesn't", 'know', 'how', 'to', 'write', 'a', 'letter', 'in', 'English.'], ['I', 'see', 'life', 'differently', 'now.'], ['You', "didn't", 'complain,', 'did', 'you?'], ["Don't", 'phone', 'me', 'while', "I'm", 'at', 'the', 'office.'], ['He', 'inherited', 'the', 'house.'], ['Is', 'this', 'your', 'family?'], ['Why', 'is', 'life', 'so', 'full', 'of', 'suffering?'], ["It's", 'not', 'going', 'to', 'end', 'well.'], ['Absence', 'of', 'rain', 'caused', 'the', 'plants', 'to', 'die.'], ['She', 'studies', 'mathematics.'], ['Could', 'I', 'say', 'something,', 'please?'], ['Tom', 'tied', 'the', 'canoe', 'to', 'the', 'top', 'of', 'his', 'car.'], ['I', 'thought', "it'd", 'be', 'harder.'], ['That', "doesn't", 'sound', 'good.'], ['Is', 'what', 'you', 'told', 'me', 'secret?'], ['I', 'want', 'to', 'know', 'what', 'you', 'mean.'], ['She', 'took', 'off', 'her', 'coat.'], ['I', 'am', 'very', 'interested', 'in', 'these', 'stories.'], ['He', 'is', 'in', 'Tokyo.'], ['Are', 'they', 'in', 'love?'], ['Banks', 'charge', 'higher', 'interest', 'on', 'loans', 'to', 'risky', 'customers.'], ['Humans', 'only', 'live', 'about', '70', 'years.'], ["You're", 'acting', 'like', 'a', 'child.'], ['No', 'matter', 'what', 'you', 'say,', 'I', "won't", 'give', 'up.'], ['What', 'do', 'you', 'usually', 'have', 'for', 'breakfast?'], ["He's", 'young', 'and', 'attractive.'], ["It's", 'unbelievable.'], ['I', 'was', 'chosen', 'for', 'that.'], ['Good', 'morning.'], ['She', 'has', 'just', 'turned', 'twelve.'], ['You', 'know', 'very', 'well', 'what', 'I', 'want.'], ['Give', 'me', 'some', 'coffee', 'if', 'there', 'is', 'any', 'left.'], ["It's", 'all', 'OK.'], ['Black', 'absorbs', 'light.'], ['I', 'hate', 'you.'], ['We', 'have', 'half', 'a', 'dozen', 'eggs.'], ['I', 'was', 'tired.'], ['You', 'look', 'very', 'tired.'], ['How', 'much', 'do', 'you', 'want', 'be', 'paid?'], ["It's", 'too', 'bad', 'you', "can't", 'come', 'with', 'us', 'today.'], ["It's", 'good', 'to', 'see', 'that', 'our', 'efforts', 'were', 'not', 'in', 'vain.'], ['It', 'matters.'], ["I'm", 'not', 'feeling', 'too', 'well.'], ['He', 'always', 'works', 'hard.'], ['When', 'did', 'you', 'get', 'there?'], ['She', 'relied', 'on', 'the', 'medicine', 'as', 'a', 'last', 'resort.'], ['Tom', 'goes', 'there', 'three', 'times', 'a', 'week.'], ['I', 'hate', 'being', 'told', 'what', 'I', "can't", 'do.'], ["Let's", 'begin', 'on', 'page', '30.'], ["He's", 'a', 'talented', 'writer.'], ['I', "don't", 'like', 'homework.'], ['My', 'grandfather', 'is', 'very', 'hard', 'to', 'please.'], ['Your', 'hair', 'is', 'different.'], ['How', 'do', 'I', 'get', 'a', 'hold', 'of', 'you?'], ['Do', 'you', 'have', 'money?'], ["Let's", 'measure', 'how', 'tall', 'you', 'are.'], ['They', 'want', 'you', 'dead.'], ['A', "dog's", 'sense', 'of', 'smell', 'is', 'much', 'keener', 'than', 'a', "human's."], ['I', 'think', 'I', 'could', 'handle', 'that.'], ['I', 'hate', 'it', 'here.'], ['It', 'is', 'definite', 'that', 'he', 'will', 'go', 'to', 'America.'], ['These', 'pictures', 'were', 'painted', 'by', 'him.'], ['She', 'advised', 'him', 'not', 'to', 'drive', 'too', 'fast,', 'but', 'he', "wouldn't", 'listen', 'to', 'her.'], ['I', 'can', 'sing.'], ['Why', "don't", 'you', 'sit', 'right', 'there', 'on', 'the', 'couch?'], ['I', "should've", 'taken', 'that', 'more', 'seriously.'], ['I', 'have', 'a', 'computer.'], ['I', "can't", 'really', 'remember.'], ["I'd", 'be', 'happy', 'to', 'sing', 'for', 'you.'], ["Tom's", 'eyelids', 'were', 'half', 'open.'], ["We're", 'too', 'close.'], ['Do', 'me', 'a', 'favor,', 'will', 'you?'], ['This', 'is', 'my', 'horse.'], ['You', "can't", 'just', 'come', 'here', 'without', 'an', 'appointment.'], ['How', 'did', 'you', 'get', 'these?'], ['I', 'won', 'again.'], ['I', "should've", 'done', 'that', 'somewhere', 'else.'], ["Aren't", 'you', 'done', 'with', 'this?'], ['Loneliness', 'and', 'being', 'alone', 'are', 'not', 'the', 'same', 'thing.'], ['Either', 'you', 'or', 'I', 'am', 'right.'], ['I', 'was', 'the', 'only', 'one', 'not', 'invited', 'to', 'the', 'party.'], ["He's", 'done', 'it', 'before.'], ['What', 'gave', 'it', 'away?'], ['What', 'is', 'there', 'to', 'understand?'], ["You're", 'wasting', 'time.'], ['The', 'month', 'is', 'drawing', 'to', 'an', 'end.'], ['Tom', "can't", 'win.'], ['I', 'do', 'love', 'you.'], ['Give', 'me', 'a', 'hammer.'], ["I'm", 'flabbergasted.'], ['We', 'won.'], ['Water', 'covers', 'about', '70%', 'of', 'the', 'earth.'], ['It', 'was', 'obviously', 'a', 'joke.'], ['What', 'is', 'the', 'origin', 'of', 'the', 'universe?'], ["What's", 'the', 'fare', 'to', 'Liverpool?'], ['I', 'want', 'the', 'work', 'done', 'quickly.'], ["Don't", 'let', 'me', 'down', 'like', 'you', 'did', 'the', 'other', 'day.'], ['The', 'room', 'is', 'dark.'], ['That', 'was', 'disgusting.'], ['Let', 'me', 'borrow', 'that.'], ['I', 'never', 'thought', 'that', 'would', 'happen.'], ['It', "doesn't", 'get', 'any', 'better', 'than', 'this.'], ['He', 'hates', 'spiders.'], ['Tom', 'seems', 'to', 'know', 'all', 'that', 'already.'], ['He', 'can', 'play', 'tennis', 'better', 'than', 'any', 'other', 'boy', 'in', 'his', 'class.'], ['Get', 'some', 'sleep.'], ['You', "don't", 'sound', 'so', 'sure.'], ["I'm", 'the', 'one', 'who', 'painted', 'this', 'picture.'], ['He', 'sang', 'some', 'old', 'songs.'], ['I', 'miss', 'my', 'cat.'], ['What', 'is', 'his', 'shoe', 'size?'], ['What', 'exactly', 'are', 'you', 'looking', 'for?'], ['He', 'speaks', 'Arabic.'], ['Can', 'I', 'have', 'this', 'dance?'], ["I'm", 'not', 'going', 'to', 'get', 'involved.'], ['Where', 'did', 'you', 'learn', 'this?'], ['Tom', 'showed', 'Mary', 'the', 'ropes.'], ["We'd", 'like', 'you', 'to', 'sing', 'some', 'songs.'], ['No', 'pain,', 'no', 'gain.'], ['Tom', 'waited', 'for', 'Mary', 'for', 'a', 'long', 'time.'], ['He', 'leaped', 'over', 'the', 'shallow', 'ditch.'], ['He', 'asked', 'me', 'what', 'I', 'had', 'bought.'], ['I', "didn't", 'notice.'], ['There', "isn't", 'anyone', 'in', 'the', 'room.'], ['I', 'like', 'candlelight.'], ['We', 'hugged', 'each', 'other.'], ['One', 'of', 'us', 'will', 'attend', 'the', 'meeting.'], ['I', 'did', 'it', 'for', 'you.'], ['I', 'had', 'no', 'idea', 'you', 'were', 'so', 'young.'], ['No', 'one', 'will', 'believe', 'you.'], ["Tom's", 'big-headed.'], ['I', 'have', 'no', 'insurance.'], ['I', 'think', 'you', 'need', 'to', 'find', 'yourself', 'a', 'part-time', 'job.'], ['Not', 'everyone', 'needs', 'a', 'college', 'degree.'], ['Let', 'me', 'say', 'a', 'few', 'words', 'by', 'way', 'of', 'apology.'], ['When', 'is', 'the', 'party?'], ['He', 'was', 'ashamed', 'of', 'his', 'tears.'], ['He', 'ran', 'to', 'school,', 'arriving', 'in', 'time.'], ['Fishing', 'is', 'not', 'allowed', 'here.'], ['Tom', 'used', 'to', 'bake', 'us', 'cookies.'], ['I', 'have', 'all', 'the', 'money', 'I', 'need.'], ['This', 'is', 'by', 'far', 'the', 'best', 'way.'], ["Don't", 'deceive', 'him.'], ['You', "don't", 'have', 'to', 'explain.'], ['Thirteen', 'percent', 'were', 'opposed.'], ['I', 'want', 'you', 'to', 'drop', 'it.'], ['I', 'also', 'went', 'there.'], ["He's", 'getting', 'more', 'and', 'more', 'stubborn', 'with', 'age.'], ['Take', 'mine.'], ['Everybody', 'in', 'the', 'world', 'desires', 'peace.'], ['I', 'just', 'want', 'a', 'little', 'more', 'time.'], ['May', 'I', 'pay', 'by', 'check?'], ['I', 'study', 'Korean.'], ['I', "don't", 'want', 'to', 'talk', 'to', 'anyone.'], ["Don't", 'worry.', 'Tom', "won't", 'let', 'us', 'down.'], ['She', 'stopped', 'talking.'], ['If', 'you', 'tell', 'too', 'many', 'lies,', 'people', "won't", 'ever', 'believe', 'you.'], ["I've", 'got', 'to', 'do', 'something', 'first.'], ['I', 'really', 'like', 'you', 'a', 'lot.'], ['That', 'was', 'a', 'bad', 'decision.'], ['If', 'you', 'keep', 'breaking', 'the', 'club', 'rules,', "you'll", 'get', 'thrown', 'out.'], ['Where', 'did', 'you', 'find', 'this', 'wallet?'], ['You', 'have', 'lipstick', 'on', 'your', 'cheek.'], ["I'm", 'not', 'here.'], ["It's", 'all', 'yours.'], ['The', 'drug', 'smuggler', 'was', 'arrested', 'at', 'the', 'airport.'], ['The', 'two', 'answers', 'are', 'both', 'correct.'], ['He', 'jumped', 'into', 'the', 'water.'], ['What', 'kind', 'of', 'bread', 'do', 'you', 'usually', 'eat?'], ['I', 'believe', 'all', 'that.'], ['Tom', 'is', 'exactly', 'like', 'us.'], ['He', 'forgot', 'her', 'name.'], ['I', "didn't", 'come', 'here', 'for', 'that', 'reason.'], ['She', 'parted', 'from', 'her', 'friend', 'in', 'tears.'], ['He', 'was', 'my', 'best', 'friend', 'in', 'high', 'school.'], ['Can', 'you', 'do', 'that?'], ['That', 'was', 'a', 'good', 'idea.'], ['Tell', 'the', 'maid', 'to', 'make', 'the', 'beds.'], ["You're", 'safe.'], ['You', "don't", 'know', 'anything.'], ['Sorry', 'Tom,', 'I', "don't", 'believe', 'you.'], ['I', 'had', 'to', 'find', 'out', 'for', 'myself.'], ['You', 'were', 'so', 'strong.'], ["That's", 'the', 'best', 'thing', 'that', 'could', 'happen', 'to', 'me.'], ['There', 'were', 'no', 'signs', 'of', 'life', 'on', 'the', 'island.'], ["I'd", 'like', 'to', 'apologize', 'for', 'this', 'morning.'], ["What'll", 'they', 'do', 'to', 'Tom?'], ['She', 'was', 'advised', 'by', 'him', 'to', 'lose', 'weight.'], ["We're", 'ready', 'now.'], ['There', 'is', 'a', 'river', 'between', 'Saitama', 'and', 'Chiba.'], ['I', "can't", 'feel', 'it.'], ["I'm", 'going', 'to', 'see', 'him', 'tomorrow.'], ['The', 'employee', 'was', 'escorted', 'off', 'the', 'premises.'], ['Does', 'anyone', 'have', 'a', 'picture', 'of', 'this?'], ['They', 'wanted', 'to', 'oust', 'the', 'communist', 'government', 'of', 'Fidel', 'Castro.'], ['We', 'must', 'stick', 'together.'], ['I', 'cannot', 'get', 'rid', 'of', 'my', 'cough.'], ['Health', 'is', 'better', 'than', 'wealth.'], ['I', "don't", 'have', 'any', 'money.'], ['I', 'recorded', 'the', 'interview.'], ['She', 'came', 'to', 'like', 'the', 'new', 'teacher.'], ["I'm", 'not', 'able', 'to', 'fix', 'the', 'computer.'], ['He', 'threw', 'a', 'stone', 'at', 'the', 'dog.'], ['I', 'have', 'to', 'stop', 'that.', "It's", 'a', 'bad', 'habit.'], ['My', 'cat', 'got', 'stuck', 'up', 'a', 'tree.'], ['I', 'wonder', 'if', "they'll", 'get', 'divorced.'], ['Would', 'you', 'like', 'me', 'to', 'call', 'a', 'taxi?'], ['I', 'can', 'remember', 'when', 'you', 'were', 'just', 'a', 'little', 'girl.'], ['What', 'kind', 'of', 'fool', 'do', 'you', 'think', 'I', 'am?'], ['He', 'got', 'wonderful', 'results.'], ['Tom', 'often', 'gets', 'headaches.'], ["I'm", 'worried.'], ['He', 'is', 'a', 'handsome', 'young', 'man.'], ['Who', 'will', 'you', 'go', 'with?'], ['It', 'feels', 'silly.'], ['I', 'did', 'this', 'for', 'my', 'son.'], ["Someone's", 'coming.'], ['Would', 'you', 'be', 'willing', 'to', 'help', 'me', 'clean', 'the', 'garage?'], ['I', 'often', 'refer', 'to', 'the', 'dictionary.'], ['It', 'feels', 'weird.'], ["You'd", 'better', 'watch', 'what', 'you', 'say.'], ["It's", 'all', 'total', 'nonsense.'], ['It', 'is', 'becoming', 'warmer', 'day', 'by', 'day.'], ['Honesty', 'pays', 'in', 'the', 'long', 'run.'], ['Could', 'you', 'check', 'this', 'for', 'me?'], ['I', 'just', 'want', 'to', 'be', 'prepared.'], ['Tom', 'has', 'come', 'to', 'see', 'you.'], ['You', 'have', 'to', 'leave.'], ['They', 'all', 'entered.'], ['We', 'must', 'look', 'at', 'the', 'problem', 'from', 'a', 'global', 'point', 'of', 'view.'], ['I', 'was', 'stupid', 'enough', 'to', 'believe', 'Tom.'], ['Do', 'you', 'have', 'plans', 'for', 'tomorrow', 'night?'], ['Is', 'this', 'your', 'girlfriend?'], ["You'll", 'forget', 'about', 'me', 'someday.'], ['I', 'just', "can't", 'take', 'it.'], ["It's", 'not', 'so', 'good.'], ['Can', 'you', 'help', 'look', 'after', 'the', 'kids?'], ['I', 'was', 'surprised', 'to', 'see', 'so', 'many', 'people', 'at', 'the', 'concert.'], ['May', 'I', 'do', 'it', 'right', 'now?'], ['You', 'snooze,', 'you', 'lose.'], ['Tom', 'has', 'made', 'his', 'choice.'], ['I', 'just', "don't", 'want', 'you', 'to', 'get', 'hurt.'], ['How', 'many', 'times', 'do', 'I', 'have', 'to', 'say', 'that?'], ['Slavery', 'has', 'been', 'abolished', 'in', 'most', 'parts', 'of', 'the', 'world.'], ['Your', 'prophecy', 'has', 'come', 'true.'], ['This', 'story', 'is', 'worth', 'reading.'], ['I', 'have', 'low', 'blood', 'pressure.'], ['It', 'is', 'too', 'long', 'ago.'], ['You', 'need', 'written', 'permission.'], ['You', 'were', 'always', 'very', 'kind.'], ['The', 'job', 'is', 'almost', 'done.'], ['Who', 'else', 'do', 'you', 'want', 'on', 'your', 'team?'], ['I', 'found', 'this', 'watch', 'at', 'the', 'station.'], ['She', 'is', 'dressed', 'in', 'her', 'best.'], ['What', 'is', 'that', 'over', 'there?'], ['Did', 'you', 'buy', 'it', 'on', 'the', 'black', 'market?'], ["That's", 'better,', "isn't", 'it?'], ['The', 'whole', 'company', 'stood', 'in', 'silence', 'for', 'a', 'few', 'moments,', 'as', 'a', 'tribute', 'to', 'the', 'dead.'], ['Just', 'be', 'quiet.'], ['I', 'got', 'an', 'ink', 'blot', 'on', 'this', 'form.'], ['Tom', 'is', 'a', 'convicted', 'felon.'], ['Tom', 'died', 'instantly.'], ["I'm", 'looking', 'forward', 'to', 'hearing', 'from', 'you', 'soon.'], ['Without', 'your', 'help,', 'I', 'would', 'have', 'failed.'], ["I'm", 'in', 'no', 'hurry.'], ['Who', 'forced', 'you', 'to', 'do', 'that?'], ['How', 'can', 'you', 'say', 'such', 'a', 'foolish', 'thing?'], ['I', 'know', 'all', 'I', 'need', 'to', 'know.'], ['Tom', 'built', 'his', 'own', 'house.'], ['He', 'is', 'familiar', 'with', 'computers.'], ['I', 'knew', "you'd", 'mess', 'things', 'up.'], ['Who', 'cares?'], ['Is', 'that', 'why', 'they', 'died?'], ['Open', 'the', 'door', 'and', 'let', 'me', 'in,', 'please.'], ['I', "don't", 'know', 'how', 'to', 'drive.'], ['Tom', 'is', 'now', 'in', 'danger.'], ['What', 'do', 'you', 'like', 'about', 'her?'], ['Tom', 'took', 'a', 'lot', 'of', 'photographs.'], ['I', 'think', "we're", 'out', 'of', 'gas.'], ['What', 'are', 'you', 'going', 'to', 'do', 'if', 'it', 'rains?'], ['Say', 'it', 'clearly.'], ['He', 'is', 'the', 'last', 'person', 'to', 'speak', 'ill', 'of', 'others.'], ['He', 'is', 'a', 'man', 'of', 'character.'], ['All', 'you', 'care', 'about', 'is', 'yourself.'], ["You're", 'still', 'too', 'young', 'to', 'get', 'a', "driver's", 'license.'], ['Do', 'you', 'understand', 'that?'], ['The', 'furniture', 'belongs', 'to', 'my', 'mother.'], ['I', 'want', 'to', 'get', 'off', 'this', 'island.'], ['I', "didn't", 'know', 'that', 'you', 'cared.'], ["We'll", 'succeed.'], ['If', 'I', 'were', 'you,', 'I', "wouldn't", 'do', 'such', 'a', 'rude', 'thing.'], ["We're", 'not', 'open.'], ['Have', 'you', 'been', 'crying', 'all', 'night?', 'Your', 'eyes', 'are', 'all', 'puffy.'], ['How', 'many', 'computers', 'have', 'you', 'had', 'so', 'far?'], ['Do', 'I', 'look', 'like', "I'm", 'busy?'], ["I'm", 'very', 'pleased', 'with', 'your', 'work.'], ["Let's", 'go', 'outside', 'and', 'play.'], ['I', 'never', 'expected', 'that', 'to', 'happen.'], ['I', 'feel', 'a', 'little', 'awkward.'], ['Apart', 'from', 'a', 'few', 'mistakes,', 'your', 'composition', 'was', 'excellent.'], ['Who', 'lives', 'in', 'the', 'room', 'below?'], ['When', 'the', 'man', 'saw', 'a', 'policeman,', 'he', 'fled.'], ['Tom', "won't", 'go', 'to', 'Boston', 'without', 'Mary.'], ['All', 'graduates', 'are', 'invited.'], ['He', 'will', 'be', 'playing', 'tennis', 'tomorrow', 'afternoon.'], ['He', 'lives', 'with', 'his', 'mother.'], ['These', 'are', 'not', 'your', 'forks.'], ["I'm", 'excited', 'about', 'the', 'move.'], ["You're", 'never', 'going', 'to', 'believe', 'this.'], ['We', 'should', 'all', 'stick', 'together.'], ['I', 'suppose', "it's", 'time', 'to', 'go.'], ['He', 'is', 'ahead', 'of', 'his', 'class', 'in', 'English.'], ['We', 'will', 'have', 'to', 'put', 'off', 'the', 'soccer', 'game', 'because', 'of', 'the', 'bad', 'weather.'], ['Did', 'you', 'have', 'breakfast', 'this', 'morning?'], ['I', 'want', 'to', 'talk', 'to', 'you', 'about', 'this', 'report.'], ['It', 'was', 'disgusting.'], ['Tom', 'is', 'a', 'teenager.'], ['May', 'I', 'start', 'eating', 'now?'], ['The', 'dog', 'is', 'bleeding.'], ['I', 'was', 'overwhelmed.'], ['When', 'did', 'your', 'sister', 'leave', 'Tokyo', 'for', 'London?'], ['He', 'had', 'called', 'the', 'rebels', 'traitors.'], ['Everything', 'is', 'now', 'ready', 'for', 'you.'], ["I'll", 'drive.'], ['Tom', 'wanted', 'Mary', 'to', 'apologize', 'to', 'John.'], ["We're", 'punctual.'], ['I', 'feel', 'bad', 'that', 'I', "haven't", 'paid', 'you', 'yet.'], ["I'd", 'like', 'to', 'be', 'woken', 'up', 'tomorrow', 'at', '6:30.'], ['Why', "don't", 'you', 'quit?'], ["You've", 'gone', 'too', 'far.'], ['Let', 'me', 'have', 'your', 'attention.'], ['I', 'watch', 'lots', 'of', 'movies.'], ['She', 'idolized', 'him.'], ['I', "don't", 'have', 'a', 'lot', 'of', 'time', 'for', 'this.'], ['If', 'my', 'wife', 'calls,', 'just', 'tell', 'her', "I'm", 'in', 'an', 'important', 'meeting', 'and', 'cannot', 'be', 'disturbed.'], ["I'm", 'concerned.'], ['What', 'Tom', 'said', 'was', 'a', 'lie.'], ['He', 'likes', 'drinking', 'coffee', 'without', 'sugar.'], ['I', 'destroyed', 'all', 'the', 'evidence.'], ["There's", 'no', 'harm', 'in', 'looking.'], ['Is', 'Tom', 'lazy?'], ['We', 'went', 'to', 'the', 'river.'], ['Did', 'I', 'hear', 'you', 'talking', 'to', 'someone?'], ['I', 'finally', 'understand.'], ['Tom', 'gave', 'Mary', 'his', 'phone', 'number.'], ['Why', 'are', 'you', 'leaving', 'so', 'soon?'], ['I', 'want', 'you', 'to', 'get', 'in', 'your', 'car.'], ['I', 'was', 'naive.'], ['Take', 'care', 'of', 'yourselves!'], ['I', 'think', 'you', 'need', 'a', 'vacation.'], ['There', "isn't", 'anybody', 'else.'], ["You're", 'so', 'beautiful', 'in', 'that', 'dress.'], ["I'm", 'sure', 'this', 'is', 'just', 'a', 'misunderstanding.'], ["It's", 'impossible', 'to', 'eat', 'soup', 'with', 'a', 'fork.'], ['If', 'you', 'want', 'to', 'succeed,', 'use', 'your', 'time', 'well.'], ['Did', 'you', 'sleep', 'in', 'here?'], ["We've", 'decided', 'to', 'postpone', 'the', 'meeting', 'till', 'next', 'Monday.'], ['The', 'disease', 'spread', 'in', 'several', 'ways.'], ['We', 'need', 'to', 'go', 'shopping.'], ['You', 'should', 'have', 'done', 'it', 'with', 'us.'], ['They', 'must', 'be', 'cops.'], ['Do', 'you', 'know', 'of', 'an', 'apartment', 'I', 'can', 'rent', 'that', 'allows', 'pets?'], ['I', "can't", 'tell', 'you', 'how', 'happy', 'I', 'am', 'that', "you've", 'come', 'to', 'visit', 'us.'], ['Have', 'you', 'already', 'told', 'Tom', 'about', 'what', 'happened', 'to', 'Mary?'], ['Guns', "don't", 'kill', 'people.', 'People', 'kill', 'people.'], ['I', "didn't", 'sleep', 'well.'], ['Can', 'you', 'sell', 'the', 'book', 'to', 'me', 'for', '500', 'yen?'], ['This', 'is', 'a', 'very', 'special', 'night.'], ['Their', 'car', 'passed', 'ours.'], ['It', 'may', 'have', 'rained', 'a', 'little', 'last', 'night.'], ['It', 'could', 'be', 'anybody.'], ['I', 'want', 'to', 'walk.'], ['May', 'I', 'introduce', 'myself?'], ['She', 'was', 'cleaning', 'the', 'house', 'in', 'preparation', 'for', 'a', 'party.'], ['Please', 'turn', 'the', 'television', 'on.'], ['Tom', 'lost', 'his', 'job.'], ['I', 'saw', 'Tom', 'talking', 'to', 'Mary.'], ["I'll", 'see', 'to', 'it', 'right', 'away.'], ['Is', 'this', 'place', 'secure?'], ['Tom', "didn't", 'look', 'as', 'bored', 'as', 'Mary.'], ['My', 'uncle', 'said', 'that', 'he', 'jogs', 'every', 'morning.'], ["I'm", 'living', 'in', 'Boston.'], ['If', 'it', "hadn't", 'been', 'for', 'the', 'storm,', 'I', "would've", 'arrived', 'sooner.'], ['Once', 'washed,', 'the', 'lining', 'will', 'look', 'brand', 'new.'], ['One', 'of', 'the', 'children', 'left', 'the', 'door', 'open.'], ['I', "don't", 'like', 'your', 'suggestion.'], ['Is', 'it', 'a', 'yes', 'or', 'a', 'no?'], ['Can', 'I', 'talk', 'to', 'you', 'alone', 'for', 'a', 'second?'], ['His', 'hobbies', 'are', 'playing', 'the', 'guitar', 'and', 'singing.'], ['Republicans', 'were', 'defeated', 'in', 'many', 'states.'], ['I', "don't", 'think', 'you', 'really', 'want', 'to', 'know.'], ['Tom', 'wears', 'thick', 'glasses.'], ['It', 'depends', 'on', 'the', 'size', 'of', 'the', 'chair.'], ['Tom', "doesn't", 'like', 'talking', 'about', 'politics.'], ['We', 'had', 'a', 'short', 'vacation', 'in', 'February.'], ["That's", 'too', 'long.'], ['Women', 'like', 'men', 'who', 'make', 'them', 'feel', 'special.'], ["It'll", 'definitely', 'rain.'], ['Jealousy', 'made', 'him', 'do', 'that.'], ["I'm", 'pretty', 'sure', 'that', 'this', 'is', "Tom's", 'umbrella.'], ['I', "didn't", 'realize', 'you', 'were', 'Canadian.'], ['If', 'you', 'see', 'Tom,', 'please', 'tell', 'him', 'to', 'call', 'me.'], ['She', 'has', 'not', 'come', 'here', 'yet.'], ['You', 'were', "Tom's", 'only', 'friend.'], ['I', 'love', 'playing', 'Chopin.'], ['My', 'cat', 'rubbed', 'her', 'head', 'against', 'my', 'shoulder.'], ['He', 'could', 'not', 'sleep', 'because', 'of', 'the', 'heat.'], ['I', 'caught', 'up', 'with', 'them', 'soon.'], ['I', 'want', 'the', 'fan.'], ['Those', 'children', 'are', 'cheerful.'], ['They', 'all', 'scoffed.'], ['You', 'were', 'drunk,', "weren't", 'you?'], ['They', 'hate', 'us.'], ['You', "can't", 'take', 'that', 'with', 'you.'], ['I', 'dried', 'my', 'face.'], ['She', "can't", 'swim.'], ['I', 'have', 'seen', 'that', 'girl', 'before.'], ['I', 'want', 'to', 'make', 'you', 'work', 'harder.'], ['He', 'will', 'play', 'soccer', 'tomorrow.'], ["You're", 'not', 'in', 'a', 'hurry,', 'are', 'you?'], ['I', "can't", 'believe', 'you', 'said', 'that.'], ['The', 'news', 'that', 'he', 'was', 'still', 'alive', 'reached', 'us.'], ['I', 'like', 'him.'], ['We', 'are', 'in', 'favor', 'of', 'your', 'plan.'], ['We', 'have', 'to', 'stop.'], ["I'd", 'like', 'to', 'visit', 'Australia.'], ['You', 'have', 'two', 'balls.'], ['I', 'felt', 'embarrassed', 'at', 'first.'], ['How', 'are', 'you?'], ['The', 'traffic', 'was', 'bad.'], ['Nobody', 'would', 'listen', 'to', 'me.'], ['Guacamole', 'is', 'a', 'dip', 'made', 'from', 'avocados.'], ["There's", 'a', 'book', 'here.'], ["I've", 'had', 'enough.'], ["I'm", 'happy', 'to', 'see', 'you', 'here.'], ['Take', 'as', 'long', 'as', 'you', 'need.'], ['I', "haven't", 'had', 'time', 'to', 'look', 'for', 'what', 'you', 'wanted.'], ['You', 'found', 'me', 'where', 'no', 'one', 'else', 'was', 'looking.'], ['Mary', 'came', 'up', 'to', 'me', 'when', 'she', 'saw', 'me.'], ['How', 'many', 'of', 'us', 'were', 'there?'], ['See', 'you', 'in', 'a', 'few', 'minutes.'], ['I', 'fully', 'understand', 'your', 'concerns.'], ['She', 'warned', 'him', 'not', 'to', 'go', 'out', 'at', 'night', 'alone.'], ['I', 'like', 'her', 'sister', 'very', 'much.'], ['My', 'parents', 'are', 'both', 'dead.'], ['I', 'want', 'to', 'stay', 'alive.'], ['You', 'were', 'great', 'today.'], ['My', 'husband', 'and', 'daughter', 'are', 'fast', 'asleep.'], ["They've", 'changed', 'a', 'lot.'], ['I', 'was', 'searching', 'for', 'something', 'that', "didn't", 'exist.'], ['I', 'understand', "Tom's", 'frustration.'], ['He', "didn't", 'look', 'happy.'], ['He', 'was', 'busy', 'when', 'I', 'called', 'him', 'up.'], ['You', 'should', 'probably', 'speak', 'a', 'little', 'bit', 'slower.'], ['Tom', 'is', 'waiting', 'for', "Mary's", 'call.'], ['Do', 'you', 'want', 'to', 'come', 'sit', 'by', 'me?'], ['The', 'bus', 'turned', 'the', 'corner', 'and', 'stopped.'], ['I', 'know', 'Tom', 'had', 'to', 'do', 'that.'], ['Hold', 'down', 'the', 'fort', 'while', "I'm", 'gone.'], ['There', 'were', 'boxes', 'everywhere.'], ["I'm", 'being', 'promoted.'], ['I', 'want', 'a', 'boyfriend.'], ['I', 'know', 'when', "I'm", 'not', 'wanted.'], ['I', 'will', 'go.'], ['They', 'all', 'went', 'to', 'the', 'restaurant.'], ['Would', 'you', 'like', 'to', 'visit', 'the', 'White', 'House', 'someday?'], ['Take', 'an', 'umbrella.', "It's", 'likely', 'to', 'rain.'], ['A', 'blood', 'vessel', 'burst', 'inside', 'his', 'brain.'], ["It's", 'a', 'fake', 'one,', 'right?'], ['Everybody', 'was', 'stunned.'], ['Tom', 'only', 'does', 'that', 'when', "he's", 'tired.'], ['I', "don't", 'have', 'time', 'to', 'say', 'this', 'twice,', 'so', 'listen', 'carefully.'], ['The', 'rain', 'made', 'it', 'impossible', 'for', 'us', 'to', 'go', 'on', 'the', 'picnic.'], ['The', 'thief', 'cut', 'the', 'telephone', 'lines', 'before', 'breaking', 'into', 'the', 'house.'], ['I', "don't", 'know', 'how', 'to', 'do', 'that.'], ['I', 'painted', 'the', 'gate', 'blue.'], ['I', 'have', 'to', 'go', 'to', 'sleep.'], ['I', 'believed', 'you.'], ['How', 'did', 'you', 'come', 'up', 'with', 'this', 'crazy', 'idea?'], ['Criminals', 'should', 'be', 'punished.'], ['Each', 'country', 'has', 'its', 'own', 'customs.'], ['He', "doesn't", 'lie.'], ['I', 'was', 'kept', 'waiting', 'nearly', 'half', 'an', 'hour.'], ['Tom', "didn't", 'know', 'where', 'Mary', 'had', 'gone', 'skiing.'], ['Tom', 'looked', 'a', 'bit', 'puzzled.'], ['Websites', 'collect', 'information', 'about', 'you.'], ['Watch', 'what', "you're", 'doing.'], ['You', 'had', 'better', 'make', 'sure', 'that', 'he', 'is', 'at', 'home', 'before', 'you', 'call', 'on', 'him.'], ["That's", 'not', 'funny.'], ['I', 'require', 'your', 'assistance.'], ['I', 'think', "it's", 'time', 'for', 'me', 'to', 'walk', 'away', 'from', 'this', 'mess.'], ['He', 'is', 'lazy.'], ['I', 'will', 'always', 'remember', 'you.'], ['You', 'seem', 'like', 'a', 'very', 'smart', 'person.'], ["I'll", 'be', 'there', 'at', 'six.'], ["Don't", 'you', 'want', 'to', 'be', 'in', 'love', 'again?'], ['"Did', 'you', 'find', 'any', 'dirt', 'on', 'him?"', '"No,', "he's", 'clean', 'as', 'a', 'whistle."'], ['You', 'are', 'wearing', 'your', 'shirt', 'inside', 'out.'], ['I', 'think', 'you', 'know', 'everyone', 'here.'], ['Do', 'you', 'know', 'the', 'reason?'], ["You're", 'hiding', 'something,', "aren't", 'you?'], ['Your', 'problem', 'is', "you're", 'easily', 'distracted.'], ['My', 'mother', 'is', 'making', 'dinner.'], ['Someone', 'broke', 'the', 'window.'], ["She's", 'a', 'tough', 'one.'], ['She', 'was', 'alone', 'on', "Valentine's", 'Day.'], ['I', 'need', 'to', 'make', 'my', 'bed.'], ['Maybe', 'I', 'should', 'do', 'it.'], ['He', 'is', 'almost', 'always', 'at', 'home.'], ['I', 'feel', 'lost', 'without', 'you.'], ['He', 'kept', 'staring', 'at', 'me.'], ['Do', 'you', 'ever', 'think', 'about', 'that', 'guy?'], ['The', 'new', 'model', 'will', 'retail', 'for', '30,000', 'yen.'], ["Don't", 'your', 'neighbors', 'ever', 'complain?'], ['He', 'made', 'it', 'clear', 'that', 'he', 'had', 'nothing', 'to', 'do', 'with', 'the', 'matter.'], ['I', 'want', 'to', 'help', 'you', 'figure', 'this', 'out.'], ["It's", 'sort', 'of', 'strange.'], ["I'm", 'not', 'lying.'], ['Leave', 'it', 'to', 'me.'], ["I'm", 'lucky', 'to', 'have', 'you', 'as', 'a', 'friend.'], ['Tom', 'took', 'another', 'sip.'], ['We', 'all', 'sang', 'in', 'unison.'], ['I', 'am', 'through', 'with', 'my', 'work.'], ['Do', 'stop', 'talking', 'and', 'listen', 'to', 'the', 'music.'], ['Tom', 'wanted', 'to', 'dance', 'with', 'Mary.'], ['I', 'must', 'make', 'up', 'for', 'lost', 'time', 'by', 'driving', 'fast.'], ["I've", 'decided', 'not', 'to', 'swim', 'this', 'afternoon.'], ['I', "wouldn't", 'want', 'you', 'to', 'get', 'the', 'wrong', 'impression', 'about', 'me.'], ["Don't", 'forget', 'to', 'extinguish', 'your', 'cigarette.'], ['Do', 'you', 'have', 'a', 'pen?'], ['Two', 'vanilla', 'ice', 'creams', 'please.'], ['I', 'hope', 'that', 'she', 'will', 'get', 'well', 'soon.'], ['I', 'was', 'beaten.'], ['She', 'was', 'wearing', 'an', 'ugly', 'dress.'], ['Come', 'again', 'tomorrow.'], ["I'll", 'kill', 'the', 'both', 'of', 'you.'], ['My', 'wife', 'has', 'faults.', 'None', 'the', 'less,', 'I', 'love', 'her.'], ["There's", 'something', 'about', 'him', 'that', 'just', "doesn't", 'sit', 'right', 'with', 'me.'], ['Thanks', 'a', 'lot', 'for', 'the', 'invitation.'], ['Tom', 'was', 'talkative.'], ['I', "don't", 'want', 'Tom', 'to', 'know', 'this.'], ['Why', 'did', 'you', 'listen', 'to', 'them?'], ["Let's", 'play', 'by', 'ourselves.'], ['Are', 'you', 'dating', 'anyone?'], ['She', 'may', 'not', 'come.'], ['She', 'lives', 'in', 'a', 'large', 'house.'], ['Tom', 'and', 'Mary', 'adopted', 'three', 'children.'], ['Can', 'I', 'have', 'your', 'phone', 'number?'], ['They', 'decided', 'to', 'put', 'an', 'end', 'to', 'the', 'discussion.'], ['Tom', 'has', 'an', 'older', 'brother', 'named', 'John.'], ['They', 'could', 'do', 'with', 'our', 'help.'], ['Do', 'you', 'know', 'why', 'he', 'has', 'been', 'absent', 'from', 'school?'], ["You're", 'forgetful.'], ['What', 'a', 'wonderful', 'morning!', 'I', 'feel', 'on', 'top', 'of', 'the', 'world.'], ['Tom', 'hanged', 'himself', 'in', 'his', 'jail', 'cell.'], ["Don't", 'fish', 'in', 'this', 'river.', "It's", 'prohibited.'], ['Are', 'there', 'any', 'tours', 'of', 'the', 'city?'], ['I', 'major', 'in', 'economics.'], ['I', "can't", 'tell', 'you', 'all', 'my', 'secrets.'], ['I', 'feel', 'bad.'], ["Where's", 'the', 'restroom?'], ['My', 'father', 'smokes', 'a', 'pack', 'of', 'cigarettes', 'a', 'day.'], ['Just', 'wait', 'a', 'second.'], ["You're", 'conscientious.'], ['How', 'long', 'have', 'you', 'been', 'a', 'teacher?'], ['I', 'think', "it'll", 'be', 'a', 'busy', 'week.'], ["Don't", 'give', 'up', 'on', 'your', 'dreams.'], ['I', 'never', 'lied', 'to', 'you.'], ['You', 'are', 'curious,', "aren't", 'you?'], ['We', 'know', 'enough.'], ['I', 'intend', 'to', 'do', 'that.'], ["I'm", 'sure', "it'll", 'be', 'easy', 'to', 'find', 'a', 'place.'], ['Luckily', 'nobody', 'drowned.'], ['We', 'have', 'friends', 'in', 'common.'], ['Do', 'you', 'know', 'a', 'good', 'dentist?'], ['What', 'time', 'did', 'you', 'go', 'to', 'bed', 'yesterday?'], ['Never', 'say', 'never.'], ['Could', 'you', 'turn', 'the', 'heat', 'down,', 'please?'], ['Right', 'now', 'I', "don't", 'have', 'any', 'time.'], ["Don't", 'talk', 'to', 'anyone.'], ['Tom', 'is', 'laughing.'], ['We', 'partied', 'all', 'night', 'long.'], ['She', 'celebrated', 'her', 'fifteenth', 'birthday', 'yesterday.'], ["We're", 'just', 'hanging', 'out.'], ['Remember', 'your', 'promise.'], ['They', 'are', 'proud', 'of', 'their', 'clever', 'son.'], ['Who', 'was', 'the', 'girl', 'you', 'were', 'talking', 'to?'], ["I'm", 'too', 'tired', 'to', 'help.'], ['They', 'forgot', 'to', 'lock', 'the', 'door.'], ["I've", 'seen', 'a', 'lot', 'of', 'him', 'recently.'], ['Tom', "didn't", 'know', 'whether', 'he', 'should', 'do', 'that', 'or', 'not.'], ['He', 'saved', 'my', 'life.'], ['They', 'trusted', 'you.'], ['These', 'are', 'bad', 'times.'], ['Tom', 'has', 'a', 'high', 'IQ.'], ['She', 'has', 'to', 'look', 'after', 'her', 'mother.'], ["I'll", 'go', 'in', 'first.'], ['My', 'right', 'leg', 'hurts.'], ['Tom', 'thought', 'it', 'would', 'be', 'a', 'good', 'idea', 'to', 'see', 'a', 'doctor.'], ['I', 'usually', 'shower', 'at', 'night.'], ['The', 'teacher', 'has', 'a', 'great', 'influence', 'on', 'his', 'pupils.'], ['In', 'my', 'opinion,', 'he', 'is', 'correct.'], ['Please', "don't", 'leave', 'valuable', 'things', 'here.'], ['She', 'likes', 'music', 'very', 'much.'], ['I', 'must', 'have', 'tried', 'on', 'everything', 'in', 'the', 'shop,', 'but', 'nothing', 'looked', 'right', 'on', 'me.'], ['I', 'like', 'your', 'mirror.'], ["I'd", 'better', 'call', 'you', 'back.'], ['Thanks', 'for', 'the', 'book.'], ['I', 'know', 'that', "won't", 'happen', 'again.'], ["They're", 'doing', 'it', 'right.'], ['Who', 'is', 'in', 'charge', 'of', 'the', 'office', 'while', 'the', 'boss', 'is', 'away?'], ['Where', 'were', 'these', 'pictures', 'taken?'], ['It', 'took', 'courage', 'to', 'sail', 'across', 'the', 'Pacific', 'single-handed.'], ['How', 'long', 'does', 'it', 'take?'], ['Let', 'us', 'do', 'the', 'work.'], ['You', 'should', 'get', 'rid', 'of', 'these', 'weeds.'], ["It's", 'a', 'doll.'], ['If', "you're", 'going', 'to', 'kill', 'me,', 'I', 'want', 'to', 'know', 'why.'], ['I', 'need', 'a', 'lot', 'of', 'cloth', 'to', 'make', 'a', 'long', 'dress.'], ['That', 'will', 'please', 'my', 'father.'], ['Drop', 'your', 'gun!'], ['What', 'do', 'you', 'do', 'in', 'the', 'afternoon?'], ['My', 'boss', 'wants', 'me', 'to', 'work', 'late', 'tonight.'], ['The', 'food', 'is', 'horrible.'], ['I', "wasn't", 'going', 'to', 'give', 'up.'], ['Tom', "doesn't", 'have', 'what', 'it', 'takes', 'to', 'be', 'a', 'teacher.'], ['I', 'was', 'foolish', 'enough', 'to', 'believe', 'it.'], ['I', 'had', 'a', 'raincoat', 'on', 'so', 'I', "didn't", 'get', 'so', 'wet.'], ["I'm", 'the', 'captain.'], ["Let's", 'go', 'to', 'the', 'mountains.'], ['She', 'was', 'having', 'a', 'hard', 'time', 'swimming.'], ["What's", 'the', 'commotion?'], ['You', 'have', 'no', 'right', 'to', 'be', 'here.'], ['Some', 'voters', 'waited', 'hours', 'to', 'vote.'], ['I', 'hear', 'the', 'Freemasons', 'have', 'a', 'secret', 'handshake.'], ["What's", 'our', 'plan?'], ['My', 'father', 'finally', 'compromised.'], ['Tom', 'has', 'a', 'sister', 'in', 'Boston.'], ['Doing', 'that', 'will', 'take', 'a', 'long', 'time.'], ['Women', 'are', 'beautiful.'], ['I', "don't", 'believe', 'any', 'of', 'this.'], ["You're", 'welcome', 'to', 'come', 'with', 'us', 'if', 'you', 'want', 'to.'], ['I', 'wish', 'to', 'speak', 'with', 'you', 'in', 'private.'], ["Don't", 'trust', 'anyone.'], ['You', 'ought', 'not', 'to', 'make', 'fun', 'of', 'them.'], ['You', "don't", 'seem', 'to', 'love', 'me', 'anymore.'], ['Where', 'did', 'you', 'go', 'for', 'spring', 'break?'], ['Good', 'job!'], ['They', 'found', 'out.'], ['My', 'wife', 'is', 'a', 'good', 'manager.'], ['We', 'have', 'to', 'learn', 'how', 'to', 'do', 'that.'], ["I've", 'been', 'looking', 'all', 'over', 'for', 'you.'], ['He', 'looks', 'kind', 'of', 'pale.'], ['She', 'advised', 'him', 'to', 'be', 'more', 'careful.'], ['Did', 'you', 'study', 'by', 'yourself?'], ['I', "don't", 'know', 'them.'], ['How', 'do', 'I', 'look?'], ['What', 'do', 'you', 'think', 'about', 'this', 'outfit?'], ["I'm", 'shopping.'], ["I'm", 'sorry', 'if', 'I', 'frightened', 'you.'], ['I', 'took', 'part', 'in', 'the', 'contest.'], ['Tom', 'leaned', 'back', 'against', 'the', 'wall.'], ['I', 'am', 'sorry', 'that', 'I', "haven't", 'written', 'to', 'you', 'in', 'such', 'a', 'long', 'time.'], ['She', 'insisted', 'on', 'my', 'going', 'there.'], ["Don't", 'you', 'just', 'hate', 'technology?'], ['I', "don't", 'want', 'to', 'share', 'the', 'hotel', 'room', 'with', 'a', 'stranger.'], ['She', 'bought', 'a', 'shirt', 'for', 'him', 'to', 'wear', 'to', 'the', 'party.'], ['I', 'enjoyed', 'myself.'], ['Tom', 'said', 'he', "didn't", 'want', 'to', 'do', 'that', 'with', 'you.'], ['Why', "aren't", 'you', 'talking', 'to', 'me?'], ['Many', 'people', 'have', 'made', 'the', 'same', 'mistake.'], ["I've", 'always', 'liked', 'your', 'hair', 'that', 'way.'], ["It's", 'going', 'to', 'be', 'close.'], ['All', 'three', 'of', 'you', 'need', 'to', 'do', 'that.'], ['If', 'only', "I'd", 'done', 'my', 'homework!'], ['I', 'like', 'rock', 'music.'], ['You', "shouldn't", 'talk', 'when', 'the', "teacher's", 'talking.'], ['Tom', 'lost', '30', 'kilograms.'], ['I', 'do', 'know', 'it', "isn't", 'right.'], ['Call', 'me', 'right', 'back.'], ['How', 'do', 'you', 'intend', 'to', 'do', 'that?'], ['Where', 'can', 'I', 'pick', 'up', 'my', 'airplane', 'ticket?'], ['Food', 'must', 'be', 'chewed', 'well', 'to', 'be', 'digested', 'properly.'], ['Did', 'you', 'see', 'a', 'doctor?'], ['I', "didn't", 'apologize.'], ['How', 'many', 'books', 'have', 'you', 'read?'], ['Do', 'you', 'go', 'to', 'church', 'on', 'Christmas', 'Day?'], ['I', 'was', 'in', 'a', 'great', 'mood.'], ['They', 'are', 'in', 'the', 'same', 'class.'], ['She', 'is', 'not', 'so', 'much', 'a', 'singer', 'as', 'a', 'comedian.'], ['Show', 'me', 'how', 'to', 'do', 'that.'], ["Who's", 'in', 'control?'], ['What', 'a', 'beautiful', 'place!'], ['What', 'would', 'your', 'father', 'think?'], ['You', "don't", 'have', 'to', 'be', 'a', 'genius', 'to', 'know', 'who', 'said', 'that.'], ['The', 'hedgehog', 'is', 'a', 'small', 'animal.'], ['Am', 'I', 'disturbing', 'you?'], ['Is', 'anyone', 'going', 'to', 'eat', 'that?'], ['Do', 'you', 'live', 'here?'], ['Tell', 'me', 'the', 'reason', 'you', 'were', 'absent', 'from', 'school', 'yesterday.'], ['I', 'have', 'no', 'interest', 'in', 'putting', 'my', 'money', 'into', 'your', 'dreams.'], ['You', 'should', 'prepare', 'a', 'room', 'for', 'the', 'visitor.'], ['Stop', 'sending', 'me', 'flowers.'], ['Hey,', 'this', 'is', 'nice.'], ['I', 'saw', 'fear', 'in', 'his', 'eyes.'], ['Tom', "didn't", 'give', 'it', 'back', 'to', 'me.'], ['Are', 'you', 'a', 'paleontologist?'], ['We', 'might', 'die.'], ["I'd", 'like', 'to', 'apologize.'], ["I've", 'never', 'liked', 'this.'], ['Please', 'sing.'], ["Let's", 'check', 'it', 'later.'], ['I', 'could', 'see', 'it', 'was', 'you.'], ['That', 'TV', 'station', 'broadcasts', 'only', 'movies.'], ['They', 'did', 'what', 'they', 'were', 'told.'], ['Can', 'you', 'believe', 'it?', "He's", 'even', 'lazier', 'than', 'me.'], ["I'd", 'like', 'to', 'go', 'inside.'], ['I', 'have', 'a', 'flat', 'tire.'], ['A', 'time', 'bomb', 'went', 'off', 'in', 'the', 'airport', 'killing', 'thirteen', 'people.'], ['I', 'can', 'hold', 'my', 'breath', 'for', 'a', 'long', 'time.'], ["I'm", 'looking', 'forward', 'to', 'seeing', 'you', 'soon.'], ['We', 'had', 'a', 'traditional', 'church', 'wedding.'], ['Could', 'you', 'spare', 'me', 'a', 'few', 'minutes?'], ['I', 'used', 'to', 'be', 'fat', 'like', 'you.'], ['I', 'turned', 'right.'], ['He', 'has', 'a', 'lunch.'], ['She', 'showed', 'me', 'her', 'new', 'car.'], ['It', 'was', 'such', 'a', 'cold', 'day', 'that', 'there', 'was', 'nobody', 'on', 'the', 'street.'], ["I'm", 'armed.'], ['That', 'dog', 'runs', 'very', 'fast.'], ["Let's", 'not', 'let', 'that', 'happen', 'again.'], ['I', 'spent', 'the', 'weekend', 'with', 'friends.'], ["You'll", 'never', 'get', 'ahead', 'in', 'this', 'place', 'unless', 'you', 'go', 'through', 'the', 'proper', 'channels.'], ["I'd", 'better', 'go', 'now.'], ['Tom', 'told', 'me', 'which', 'book', 'I', 'should', 'buy.'], ["You're", 'old.'], ['Everyone', 'is', 'proud', 'of', 'you.'], ['Our', 'dog', 'seldom', 'bites.'], ['The', 'meeting', 'was', 'all', 'but', 'over.'], ["I'm", 'out', 'of', 'place', 'here.'], ['How', 'long', 'did', 'you', 'stay?'], ['We', 'can', 'do', 'that.'], ['Be', 'polite', 'to', 'everyone.'], ['When', 'will', 'you', 'come', 'back?'], ['It', 'is', 'not', 'too', 'much', 'to', 'say', 'that', 'he', 'is', 'a', 'genius.'], ['You', 'are', 'expecting', 'too', 'much', 'of', 'her.'], ['May', 'I', 'have', 'a', 'look', 'at', 'that?'], ['He', 'is', 'a', 'teacher', 'of', 'English.'], ['You', "don't", 'fit', 'in', 'here.'], ["I'm", 'sorry', 'about', 'this.'], ['Can', 'you', 'tell', "what's", 'wrong', 'with', 'it?'], ["That's", 'how', 'he', 'invented', 'the', 'machine.'], ["You're", 'back', 'late.', 'What', 'have', 'you', 'been', 'up', 'to?'], ["Don't", 'tell', 'me.', 'Let', 'me', 'guess.'], ["I'm", 'glad', 'you', 'came', 'over.'], ["I've", 'been', 'meditating', 'on', 'what', 'you', 'said', 'last', 'week.'], ['It', 'was', 'night.'], ['I', 'was', 'kidnapped.'], ['If', 'you', 'do', 'it', 'this', 'way,', 'you', 'can', 'save', 'several', 'hours.'], ['I', "don't", 'understand', 'this', 'obsession', 'of', 'yours.'], ['I', 'want', 'to', 'hear', 'more', 'about', 'your', 'trip.'], ['Who', 'is', 'he', 'talking', 'to?'], ['Tom', 'plays', 'the', 'trombone.'], ['It', 'began', 'to', 'rain', 'before', 'I', 'got', 'home.'], ['I', "don't", 'have', 'them', 'yet.'], ['I', "hadn't", 'planned', 'to', 'tell', 'you', 'anything', 'about', 'this.'], ["I've", 'been', 'thinking', 'about', 'it,', 'too.'], ['I', "couldn't", 'take', 'money', 'from', 'you.'], ["That's", 'my', 'idea.'], ['Tom', 'has', 'decided', 'to', 'put', 'off', 'his', 'departure.'], ['We', 'all', 'do', 'that.'], ['Can', 'I', 'leave', 'a', 'message?'], ["I've", 'been', 'waiting', 'all', 'night.'], ['Tom', "doesn't", 'know', 'everything.'], ['Opportunities', 'like', 'this', "don't", 'come', 'along', 'every', 'day.'], ['Are', 'you', 'home?'], ['There', 'is', 'milk', 'all', 'over', 'the', 'kitchen', 'floor', 'because', 'my', 'wife', 'broke', 'the', 'bottle.'], ['Why', 'is', 'she', 'here?'], ['Tom', 'is', 'only', 'three', 'weeks', 'old.'], ['The', 'tower', 'leaned', 'slightly', 'to', 'the', 'left.'], ['He', 'is', 'not', 'the', 'sort', 'of', 'guy', 'who', 'gives', 'in', 'easily.'], ['The', 'sky', 'grew', 'darker', 'and', 'darker.'], ["He's", 'a', 'bit', 'jealous.'], ['Are', 'you', 'hurt?'], ['I', "don't", 'want', 'you', 'hanging', 'out', 'with', 'Tom.'], ['My', 'car,', 'which', 'broke', 'down', 'yesterday,', 'has', 'not', 'been', 'repaired', 'yet.'], ['I', 'have', 'someone', 'I', 'want', 'you', 'to', 'meet.'], ['I', "can't", 'tell', 'you', 'how', 'happy', 'I', 'am', 'that', "you've", 'come', 'to', 'visit', 'us.'], ['My', 'knife', 'has', 'lost', 'its', 'edge.'], ['I', 'found', 'something', 'interesting', 'in', 'the', 'town.'], ['My', 'favorite', 'dance', 'is', 'the', 'tango.'], ['A', 'river', 'runs', 'down', 'through', 'the', 'valley.'], ['You', "shouldn't", 'judge', 'a', 'person', 'by', 'his', 'looks.'], ['I', 'deserve', 'that.'], ['I', 'noticed', 'him', 'sneak', 'into', 'the', 'room.'], ['She', 'married', 'young.'], ["I'm", 'not', 'a', 'liar.'], ['My', 'parents', 'were', 'opposed', 'to', 'our', 'marriage.'], ['He', 'is', 'tall', 'and', 'strong.'], ['She', 'lives', 'in', 'New', 'York.'], ["I've", 'got', 'little', 'time', 'for', 'reading', 'these', 'days.'], ["Let's", 'be', 'happy.'], ['Are', 'you', 'hungry,', 'too?'], ['All', 'the', 'players', 'did', 'their', 'best.'], ['These', 'problems', 'will', 'be', 'solved', 'in', 'the', 'near', 'future.'], ['It', 'just', "doesn't", 'make', 'sense', 'anymore.'], ['He', 'told', 'me', 'about', 'it.'], ['You', 'need', 'a', 'joystick.'], ["We're", 'not', 'through', 'yet.'], ['His', 'absence', 'was', 'due', 'to', 'illness.'], ['Is', 'that', 'enough?'], ['Afghanistan', 'is', 'at', 'war.'], ['Please', 'turn', 'up', 'the', 'sound.'], ['Do', 'they', 'learn', 'English?'], ["I'm", 'feeling', 'low.'], ['I', "can't", 'put', 'up', 'with', 'it.'], ['I', 'bought', 'a', 'scarf', 'for', 'my', 'grandfather', 'for', 'his', '88th', 'birthday.'], ["That's", 'exactly', 'my', 'point.'], ['The', 'water', 'turned', 'to', 'ice.'], ["I'll", 'fix', 'a', 'drink.'], ['Check', 'that.'], ['Every', 'dog', 'has', 'his', 'day.'], ['An', 'unforgettable', 'event', 'occurred.'], ['I', "don't", 'know', 'what', "you're", 'complaining', 'about.'], ['You', 'will', 'need', 'a', 'bodyguard.'], ['We', 'appreciate', 'your', 'kind', 'advice.'], ['At', 'seventy,', 'my', 'father', 'is', 'still', 'very', 'active.'], ['I', 'was', 'born', 'in', 'Kyoto.'], ['I', 'admire', "Tom's", 'perseverance.'], ['Tom', 'ran', 'to', 'the', 'bathroom.'], ['Tom', 'is', 'a', 'very', 'violent', 'person.'], ['Can', 'I', 'borrow', 'your', 'car?'], ['He', "wasn't", 'there', 'last', 'week.'], ["I'm", 'dieting.'], ['There', 'is', 'no', 'school', 'during', 'August.'], ['I', 'can', 'lend', 'you', 'some', 'money', 'if', 'you', 'need', 'some.'], ['They', "won't", 'risk', 'doing', 'that.'], ['You', 'can', 'all', 'help.'], ["I'll", 'give', 'you', 'another', 'minute.'], ['Our', 'team', 'is', 'five', 'points', 'ahead.'], ["I'd", 'like', 'to', 'eat', 'something.'], ['I', 'felt', 'quite', 'relieved', 'after', 'I', 'had', 'said', 'all', 'I', 'wanted', 'to', 'say.'], ['We', 'did', 'not', 'evolve', 'from', 'monkeys.', 'We', 'share', 'a', 'common', 'ancestor.'], ['A', 'nail', 'punctured', 'the', 'tire.'], ['They', 'were', 'all', 'here.'], ['Do', 'you', 'like', 'sports?'], ['I', 'hope', 'it', 'was', 'only', 'an', 'accident.'], ['Blow', 'out', 'the', 'candles.'], ['Is', 'anything', 'happening?'], ['Do', 'you', 'have', 'a', 'dictionary?'], ['He', 'did', 'a', 'cartwheel.'], ['I', 'have', 'no', 'reason', 'to', 'lie', 'to', 'you.'], ['This', 'is', 'not', 'a', 'small', 'problem.'], ["I'll", 'monitor', 'your', 'progress', 'from', 'my', 'computer.'], ['Yes,', 'I', 'know', 'it.'], ['I', 'think', 'we', 'both', 'should', 'leave.'], ["There's", 'a', 'rumor', 'going', 'around.'], ['Everyone', 'needs', 'a', 'place', 'to', 'call', 'home.'], ["What's", 'happened', 'here', 'is', 'a', 'travesty.'], ['I', "don't", 'know', 'the', 'name', 'of', 'that', 'temple.'], ["It's", 'not', 'legal', 'to', 'keep', 'wild', 'animals', 'as', 'pets.'], ["That's", 'true,', 'too.'], ['Remain', 'seated,', 'please.'], ['I', 'know', 'a', 'few', 'things.'], ['You', 'have', 'to', 'be', 'prepared.'], ['He', 'does', 'not', 'smoke.'], ["Don't", 'shout', 'like', 'that.', 'I', 'can', 'hear', 'you', 'perfectly.'], ['What', 'do', 'you', 'say', 'we', 'go', 'there?'], ['We', "don't", 'want', 'them', 'to', 'decrease', 'our', 'paycheck.'], ['I', 'locked', 'myself', 'in', 'my', 'room.'], ['You', 'cannot', 'take', 'pictures', 'in', 'the', 'theater', 'without', 'permission.'], ["Don't", 'look', 'so', 'sad.'], ["It's", 'very', 'hot', 'today.'], ['I', 'think', 'you', 'should', 'stop', 'giving', 'Tom', 'money.'], ['He', 'said,', '"I', 'want', 'to', 'be', 'a', 'scientist."'], ['Your', 'answer', 'is', 'far', 'from', 'perfect.'], ['They', "can't", 'get', 'out.'], ['I', 'just', "don't", 'want', 'you', 'to', 'have', 'it.'], ['How', 'much', 'did', 'you', 'pay', 'for', 'this', 'skirt?'], ['I', 'saw', 'a', 'black', 'cat', 'run', 'into', 'the', 'house.'], ['Tom', "didn't", 'want', 'to', 'go', 'back', 'to', 'where', 'he', 'was', 'born.'], ['How', 'do', 'you', 'know?'], ['Kabuki', 'is', 'an', 'old', 'Japanese', 'art.'], ["Don't", 'kid', 'yourself.', 'You', "couldn't", 'afford', 'to', 'buy', 'a', 'house', 'like', 'this.'], ['How', 'many', 'slices', 'of', 'meat', 'would', 'you', 'like?'], ['I', 'figured', 'that', 'you', "weren't", 'coming.'], ["I'm", 'feeling', 'dizzy.'], ['If', 'you', 'want', 'to', 'sell', 'your', 'old', 'sofa,', 'why', 'not', 'put', 'an', 'advertisement', 'in', 'the', 'local', 'paper?'], ['What', 'for?'], ["Don't", 'do', 'it', 'again.'], ['Did', 'you', 'go', 'to', 'the', 'last', 'class?'], ["You're", 'such', 'a', 'wimp.'], ['It', 'was', 'so', 'dark', 'that', 'I', "couldn't", 'see', 'anything.'], ['Why', 'did', 'you', 'buy', 'this', 'car?'], ['When', 'did', 'you', 'finish', 'it?'], ['I', "didn't", 'look', 'at', 'it.'], ['I', 'thought', "you'd", 'been', 'killed.', "I'm", 'glad', 'I', 'was', 'wrong.'], ['Is', 'there', 'any', 'salt', 'left?'], ['She', 'has', 'a', 'good', 'figure.'], ['She', 'was', 'anxious', 'about', 'her', "children's", 'health.'], ['Why', "don't", 'you', 'tell', 'me', 'the', 'way', 'you', 'think', 'it', 'happened?'], ['This', 'seems', 'risky.'], ['I', 'know', 'that', 'you', 'love', 'Tom.'], ['I', 'had', 'to', 'wait', 'twenty', 'minutes', 'for', 'the', 'next', 'bus.'], ["Tom's", 'room', 'is', 'always', 'neat.'], ['Irritating,', "isn't", 'it?'], ['Just', 'let', 'me', 'walk', 'away.'], ['Should', 'I', 'go?'], ['This', 'makes', 'no', 'sense.'], ['I', 'really', 'wish', 'you', "hadn't", 'seen', 'that.'], ["You're", 'not', 'the', 'only', 'one', 'who', 'feels', 'that', 'way.'], ['Contact', 'my', 'assistant', 'if', 'you', 'have', 'any', 'questions.'], ["I've", 'arranged', 'for', 'a', 'bit', 'of', 'privacy.'], ['I', "can't", 'believe', 'I', 'used', 'to', 'watch', 'this', 'show.'], ['Will', 'you', 'drink', 'another', 'cup', 'of', 'coffee?'], ['Nobody', 'does', 'it', 'better.'], ['I', 'saw', 'Tom', 'yesterday', 'and', 'he', 'looked', 'sad.'], ['Her', 'death', 'was', 'a', 'great', 'shock', 'to', 'me.'], ['You', 'understand', 'what', "I'm", 'saying,', "don't", 'you?'], ['Where', 'exactly', 'are', 'we', 'going?'], ['I', "can't", 'wait', 'any', 'more.'], ['I', 'agreed', 'to', 'help', 'him', 'in', 'his', 'work.'], ['I', 'want', 'to', 'talk', 'now.'], ['I', 'wish', 'you', 'had', 'told', 'me', 'that.'], ['I', 'know', 'that', 'you', 'live', 'here.'], ['I', "won't", 'tolerate', 'that.'], ['You', "aren't", 'busy', 'now,', 'are', 'you?'], ['You', "don't", 'understand', "what's", 'happening.'], ['This', 'theory', 'is', 'scientifically', 'controversial.'], ['Do', 'men', 'cry?'], ['She', 'died', 'from', 'TB.'], ['I', 'think', 'I', 'know', 'who', 'painted', 'that', 'picture.'], ['You', 'were', 'drunk,', "weren't", 'you?'], ['I', 'bought', 'a', 'pair', 'of', 'gloves.'], ["I'd", 'like', 'to', 'come', 'with', 'you.'], ['I', 'know', 'what', 'Tom', 'and', 'Mary', 'are', 'going', 'through.'], ['Is', 'this', 'man', 'threatening', 'you?'], ['I', 'know', 'Tom', 'is', 'a', 'grouch.'], ['Not', 'every', 'bird', 'can', 'sing.'], ['Could', 'you', 'pass', 'me', 'the', 'salt,', 'please?'], ['My', 'dream', 'is', 'to', 'lead', 'a', 'quiet', 'life', 'in', 'the', 'country.'], ['I', 'made', 'an', 'appointment', 'to', 'see', 'the', 'doctor', 'at', 'four', "o'clock."], ['This', 'stone', 'was', 'so', 'heavy', 'that', 'I', 'could', 'not', 'lift', 'it.'], ['It', 'was', 'his', 'bicycle', 'that', 'was', 'stolen.'], ['I', 'am', 'taking', 'my', 'son', 'to', 'the', 'zoo', 'this', 'afternoon.'], ['Do', 'we', 'need', 'a', 'universal', 'language?'], ['We', 'did', 'that', 'yesterday.'], ['I', 'look', 'forward', 'to', 'reading', 'your', 'new', 'novel.'], ['Do', 'you', 'want', 'to', 'go?'], ['We', 'live', 'in', 'a', 'civilized', 'society.'], ['He', 'must', 'be', 'severely', 'punished.'], ['She', 'interrupted', 'him', 'while', 'he', 'was', 'speaking', 'to', 'my', 'father.'], ['The', 'fact', 'is', 'that', 'he', "didn't", 'even', 'take', 'the', 'exam.'], ['Do', 'you', 'think', 'that', 'you', 'can', 'put', 'your', 'idea', 'into', 'practice?'], ['Tom', 'is', 'the', 'ranking', 'officer.'], ['How', 'can', 'it', 'be', 'done?'], ["I'm", 'using', 'that', 'cup.'], ['I', 'was', 'really', 'tired', 'so', 'I', 'went', 'to', 'bed', 'early.'], ["You're", 'lost.'], ['Tom', "can't", 'help', 'himself.'], ['When', 'did', 'you', 'get', 'there?'], ['Every', 'ship', 'needs', 'a', 'captain.'], ['Are', 'you', 'here', 'alone?'], ['I', 'know', 'you', 'know', 'where', 'Tom', 'is.'], ['Wow!', 'That', 'looks', 'delicious.'], ['I', 'played', 'tennis', 'the', 'whole', 'day.'], ['This', 'is', 'a', 'fantastic', 'place.'], ['Did', 'you', 'take', 'the', 'money?'], ["It's", 'all', 'clear', 'to', 'me', 'now.'], ["I've", 'seen', 'enough.'], ['Could', 'I', 'have', 'money', 'for', 'my', 'piano', 'lesson?'], ['They', 'hate', 'us.'], ['Thank', 'you', 'very', 'much', 'for', 'your', 'letter.'], ["There's", 'a', 'general', 'sense', 'that', 'something', 'should', 'be', 'done', 'about', 'unemployment.'], ['I', "don't", 'know', 'what', 'to', 'do', 'now.'], ["I've", 'got', 'a', 'sweet', 'tooth.'], ['My', 'sister', 'is', 'also', 'my', 'best', 'friend.'], ['How', 'long', 'will', 'this', 'take?'], ['I', 'think', 'I', 'can', 'come', 'over', 'this', 'afternoon.'], ["It's", 'already', 'nine', "o'clock."], ['She', 'advised', 'him', 'to', 'go', 'by', 'bicycle.'], ["I'll", 'do', 'that', 'tomorrow', 'if', 'possible.'], ["Didn't", 'you', 'tell', 'me', 'yesterday', 'that', 'you', 'and', 'your', 'boyfriend', 'had', 'broken', 'up?'], ['Tom', 'wondered', 'if', 'it', 'was', 'true.'], ["I'm", 'free', 'on', 'Sunday.'], ['Every', 'time', 'they', 'talk,', 'they', 'argue.'], ['Stay', 'out', 'of', 'it.'], ['I', 'was', 'profoundly', 'disturbed', 'by', 'this', 'news.'], ["We're", 'not', 'supposed', 'to', 'do', 'that.'], ['I', "can't", 'do', 'without', 'an', 'air', 'conditioner', 'in', 'the', 'summer.'], ['I', 'just', 'want', 'some', 'souvenirs', 'to', 'remember', 'this', 'place', 'by.'], ['He', 'is', 'too', 'busy', 'dreaming', 'dreams', 'to', 'plan', 'what', 'he', 'will', 'do', 'in', 'his', 'old', 'age.'], ['This', 'watch', 'is', 'expensive.'], ["I'm", 'asking', 'you', 'as', 'a', 'friend.'], ['Do', 'you', 'mind', 'if', 'I', 'turn', 'on', 'the', 'radio?'], ['Which', 'language', 'do', 'you', 'use', 'when', 'you', 'speak', 'to', 'your', 'parents?'], ['I', 'am', 'in', 'the', 'classroom.'], ['This', 'chair', 'is', 'too', 'low', 'for', 'me.'], ['What', 'are', 'you', 'staring', 'at?'], ['She', 'majored', 'in', 'economics.'], ['He', 'was', 'guilty', 'of', 'murder.'], ['I', 'saw', 'you.'], ['She', 'demanded', 'to', 'see', 'the', 'manager.'], ["They're", 'angry.'], ['He', 'fought', 'against', 'racial', 'discrimination.'], ['When', 'we', 'arrived,', 'the', 'lecture', 'had', 'already', 'begun.'], ['They', 'concluded', 'he', 'was', 'lying.'], ['She', 'is', 'sharp.'], ['You', 'have', 'nothing', 'to', 'be', 'afraid', 'of.'], ['Most', 'people', 'are', 'idiots.'], ['My', 'dream', 'is', 'to', 'go', 'to', 'Japan.'], ['Tom', 'has', 'been', 'behaving', 'oddly.'], ["I'm", 'smarter', 'than', 'you.'], ["What's", 'your', 'favorite', 'toothpaste?'], ['We', "don't", 'know', 'anyone', 'here.'], ['Light', 'the', 'candles.'], ['Sorry,', 'but', 'I', 'have', 'to', 'work', 'tonight.'], ["He's", 'your', 'son.'], ['She', 'misses', 'him,', 'especially', 'on', 'rainy', 'days.'], ['Buffalo', 'bones', 'were', 'made', 'into', 'tools.'], ['Who', 'designed', 'the', 'White', 'House?'], ['We', 'must', 'sleep', 'outside', 'today.'], ['There', 'is', 'no', 'paint.'], ['I', 'just', 'wanted', 'to', 'thank', 'everyone.'], ['This', 'is', 'so', 'crazy.'], ["Who's", 'your', 'mother-in-law?'], ['Your', 'life', 'is', 'in', 'danger.'], ['What', 'time', 'will', 'you', 'have', 'to', 'go', 'to', 'bed?'], ['Tom', 'said', 'he', 'was', 'starving.'], ['The', 'car', 'turned', 'to', 'the', 'left.'], ["Don't", 'try', 'to', 'make', 'me', 'angry.'], ['What', 'are', 'your', 'responsibilities?'], ['What', 'he', 'said', 'yesterday', 'is', 'not', 'consistent', 'with', 'what', 'he', 'had', 'said', 'last', 'week.'], ['I', 'thought', 'Tom', 'was', 'with', 'you.'], ['I', 'was', 'in', 'the', 'garden', 'all', 'afternoon.'], ["You're", 'very', 'curious.'], ['Do', 'you', 'like', 'robots?'], ["Don't", 'be', 'sorry.'], ['The', 'worst', 'is', 'probably', 'over.'], ['I', "haven't", 'seen', 'Tom', 'since', 'Monday.'], ['I', 'thought', 'you', 'did', 'fairly', 'well.'], ['Go', 'ahead', 'and', 'take', 'one.'], ['That', 'pretty', 'bird', 'did', 'nothing', 'but', 'sing', 'day', 'after', 'day.'], ['I', 'work', 'for', "McDonald's."], ["That'll", 'remain', 'our', 'secret.'], ["That's", 'a', 'coincidence.'], ['No', 'one', 'can', 'escape', 'growing', 'old.'], ["He's", 'unconscious.'], ['The', 'show', 'starts', 'in', 'ten', 'minutes.'], ['She', 'is', 'a', 'poor', 'cook.'], ['His', 'son', 'became', 'a', 'famous', 'pianist.'], ['Have', 'you', 'ever', 'dreamed', 'of', 'me?'], ['Everyone', 'should', 'know', 'this.'], ['She', 'told', 'him', 'that', 'he', 'was', 'right.'], ['What', 'he', 'said', 'would', 'happen', 'has', 'happened.'], ['Is', 'that', 'thing', 'yours?'], ['Over', 'the', 'holidays,', 'I', 'spent', 'days', 'doing', 'nothing.'], ["I'm", 'doing', 'it', 'in', 'spite', 'of', 'you.'], ['Can', 'you', 'skip', 'me?'], ['"What', 'are', 'you', 'trying', 'to', 'hide?"', '"Nothing."'], ['You', 'missed', 'the', 'meeting.'], ['This', 'is', 'my', 'first', 'time,', 'so', "I'm", 'a', 'little', 'nervous.'], ['What', 'I', 'told', 'you', 'about', 'him', 'also', 'holds', 'true', 'for', 'his', 'brother.'], ["You're", 'supposed', 'to', 'do', 'that.'], ['Were', 'you', 'spying', 'on', 'me?'], ['We', 'had', 'a', 'lot', 'of', 'furniture.'], ['I', 'just', "can't", 'take', 'it.'], ['We', 'just', 'fed', 'the', 'baby.'], ['Why', 'are', 'you', 'lazy?'], ["Let's", 'get', 'this', 'party', 'started!'], ["What's", 'she', 'doing?'], ["I'm", 'actually', 'enjoying', 'myself.'], ['I', 'advise', 'you', 'to', 'be', 'punctual.'], ['Can', 'you', 'translate', 'this', 'manuscript', 'from', 'French', 'to', 'English?'], ['Do', 'you', 'think', "I'm", 'fat?'], ['Is', 'it', 'complicated?'], ['I', "can't", 'tell', 'you', 'how', 'happy', 'I', 'am', 'that', "you've", 'come', 'to', 'visit', 'us.'], ['This', 'air', 'conditioner', 'consumes', 'a', 'lot', 'of', 'electricity.'], ['Sorry,', 'I', "didn't", 'mean', 'to', 'scare', 'you.'], ['I', 'love', 'to', 'paint', 'with', 'watercolors.'], ['I', "don't", 'think', 'I', 'can', 'do', 'this', 'anymore.'], ["That's", "Tom's", 'apartment.'], ['My', 'mom', 'likes', 'my', 'brother', 'more', 'than', 'me.'], ['Why', 'am', 'I', 'so', 'tired?'], ['It', "doesn't", 'matter', 'how', 'old', 'you', 'are.'], ['Be', 'honest', 'with', 'me.'], ['That', 'joke', "isn't", 'funny.'], ['We', 'have', 'captured', 'one', 'of', 'their', 'spies.'], ["Don't", 'you', 'ever', 'call', 'Tom?'], ["I'd", 'rather', 'do', 'this', 'by', 'myself.'], ['I', 'just', "don't", 'want', 'you', 'to', 'catch', 'my', 'cold.'], ['She', 'went', 'with', 'him', 'to', 'the', 'zoo.'], ['No', 'one', 'encouraged', 'her.'], ['Please', 'take', 'one.'], ["You'll", 'have', 'a', 'rough', 'time.'], ['I', 'was', 'the', 'worst', 'student', 'in', 'the', 'class.'], ['Did', 'you', 'have', 'a', 'good', 'summer?'], ['Give', 'him', 'a', 'break!'], ['He', 'would', 'be', 'glad', 'to', 'hear', 'that.'], ['Include', 'me', 'in', 'your', 'plans.'], ['What', 'do', 'you', 'want', 'in', 'return?'], ['I', 'have', 'no', 'control', 'over', 'it.'], ['Do', 'you', 'think', 'that', 'eating', 'breakfast', 'every', 'day', 'is', 'important?'], ['Do', 'your', 'parents', 'know', 'about', 'this?'], ["Let's", 'try', 'this', 'cake.'], ['I', 'should', 'tell', 'you', 'about', 'that', 'sometime.'], ['Who', 'gave', 'the', 'command?'], ['If', 'I', 'had', 'a', 'dime', 'for', 'every', 'time', 'I', 'heard', 'that,', "I'd", 'be', 'rich.'], ["I've", 'made', 'a', 'couple', 'of', 'friends', 'here.'], ["Don't", 'worry.', "We'll", 'figure', 'everything', 'out.'], ['My', 'French', 'teacher', 'is', 'the', 'same', 'age', 'as', 'me.'], ['I', "can't", 'hear', 'what', "they're", 'saying.'], ['Let', 'me', 'take', 'this', 'one.'], ["You've", 'taught', 'us', 'a', 'great', 'deal.'], ['Above', 'all,', "don't", 'forget', 'to', 'write', 'me.'], ["It's", 'not', 'as', 'easy', 'as', 'you', 'think.'], ['We', 'have', 'to', 'protect', 'our', 'kids.'], ['Did', 'you', 'learn', 'to', 'swim', 'when', 'you', 'were', 'a', 'child?'], ["I'll", 'tell', 'everyone', 'what', 'you', 'did.'], ['I', 'am', 'living', 'with', 'my', 'uncle.'], ["It's", 'not', 'clear', 'when', 'he', 'came', 'here.'], ['Tom', 'could', 'do', 'nothing', 'but', 'sit', 'and', 'wait.'], ['The', 'teachers', 'teach', 'all', 'day', 'long.'], ['I', 'usually', 'agree', 'with', 'Tom.'], ['I', 'had', 'a', 'great', 'time', 'here.'], ['The', 'money', 'is', 'gone.'], ['Tom', 'asked', 'Mary', 'to', 'watch', 'the', 'children.'], ['Can', 'I', 'sleep', 'on', 'the', 'couch?'], ['This', 'morning', 'I', 'missed', 'the', 'train', 'I', 'usually', 'take.'], ['We', 'were', 'very', 'lucky.'], ['I', 'do', 'worry.'], ["I've", 'got', 'someone', 'with', 'me.'], ['I', 'have', 'very', 'good', 'eyesight.'], ['I', 'know', 'exactly', 'what', 'I', 'should', 'do.'], ['When', 'did', 'you', 'find', 'out', 'that', 'Tom', "didn't", 'have', 'to', 'do', 'that?'], ['That', "doesn't", 'work', 'at', 'all.'], ['A', 'large', 'pillar', 'obstructs', 'the', 'view', 'of', 'the', 'lake.'], ['I', 'am', 'very', 'pleased.'], ['Those', 'agenda', 'items', 'were', 'discussed', 'together.'], ['I', 'think', "it's", 'good', 'for', 'you', 'to', 'read', 'this', 'book.'], ["It's", 'my', 'own', 'fault.'], ["It's", 'time', 'to', 'go', 'to', 'bed.', 'Turn', 'off', 'the', 'radio.'], ['I', "don't", 'feel', 'like', 'doing', 'it', 'today.'], ['Tom', 'was', 'really', 'crazy.'], ['How', 'did', 'that', 'happen?'], ['My', 'shoes', 'are', 'too', 'tight.'], ['Nobody', 'heard', 'the', 'bell', 'ring.'], ['I', 'feel', 'the', 'same', 'way', 'as', 'you', 'do.'], ['Gesture', 'is', 'another', 'way', 'of', 'communication.'], ['It', 'was', 'a', 'mistake.'], ['I', 'can', 'speak', 'English.'], ['How', 'did', 'you', 'discover', 'that?'], ['I', "don't", 'like', 'being', 'interrogated.'], ['The', 'urban-renewal', 'project', 'is', 'now', 'well', 'under', 'way.'], ['Bring', 'me', 'another', 'fork,', 'please.'], ['She', 'nursed', 'him', 'back', 'to', 'health.'], ['You', "should've", 'told', 'Tom', 'that', 'a', 'long', 'time', 'ago.'], ['We', 'are', 'traveling', 'on', 'a', 'tight', 'budget.'], ['When', 'you', 'come', 'next', 'time,', 'bring', 'your', 'brother.'], ['He', 'has', 'a', 'basket', 'full', 'of', 'strawberries.'], ["I'm", 'not', 'the', 'kind', 'to', 'kiss', 'and', 'tell.'], ['I', "didn't", 'shoot', 'anyone.'], ['I', "don't", 'know', 'whether', "he'll", 'come', 'by', 'train', 'or', 'by', 'car.'], ['Where', 'do', 'I', 'turn?'], ['He', "didn't", 'give', 'me', 'much', 'advice.'], ['Tom', 'is', 'obese,', "isn't", 'he?'], ["Don't", 'tempt', 'me.'], ['Is', 'it', 'bad?'], ['The', 'offer', 'is', 'too', 'good', 'to', 'turn', 'down.'], ['Seen', 'from', 'an', 'airplane,', 'the', 'island', 'looks', 'like', 'a', 'big', 'spider.'], ['Sewage', 'often', 'pollutes', 'the', 'ocean.'], ['I', 'ordered', 'a', 'book', 'from', 'London.'], ['Tom', 'is', 'still', 'young.'], ['This', 'book', 'is', 'fascinating.'], ['Have', 'you', 'fed', 'the', 'dog?'], ['Tom', 'wanted', 'to', 'travel.'], ['I', "would've", 'told', 'you', 'if', "I'd", 'known.'], ['You', 'really', 'want', 'to', 'do', 'this,', "don't", 'you?'], ['What', 'was', 'the', 'cause', 'of', 'the', 'accident?'], ['You', 'were', 'drunk,', "weren't", 'you?'], ['That', 'can', 'happen', 'to', 'anybody.'], ['You', 'got', 'what', 'you', 'wanted,', "didn't", 'you?'], ['Do', 'you', 'see', 'me?'], ["It's", 'so', 'imprecise.'], ['Japan', 'is', 'weird.'], ['Why', 'do', 'you', 'always', 'have', 'to', 'get', 'involved?'], ['What', 'an', 'opportunity!'], ['What', 'is', 'it', 'you', 'want', 'to', 'tell', 'us?'], ['He', 'is', 'able', 'to', 'speak', 'five', 'languages.'], ["I'll", 'visit', 'you', 'sometime', 'in', 'the', 'near', 'future.'], ["They're", 'all', 'terrified.'], ['I', 'eat', 'very', 'quickly.'], ['Does', 'anyone', 'else', 'use', 'your', 'account?'], ["That's", 'very', 'good', 'advice.'], ['Tom', "doesn't", 'seem', 'to', 'have', 'any', 'self-confidence.'], ['The', 'natives', 'have', 'to', 'defend', 'their', 'land', 'against', 'invaders.'], ['Everybody', 'was', 'stunned.'], ['Fill', 'in', 'the', 'blanks.'], ["That's", 'my', 'story', 'and', "I'm", 'sticking', 'to', 'it.'], ['I', 'chanced', 'to', 'meet', 'him', 'at', 'the', 'airport.'], ['Tom', 'is', 'an', 'excellent', 'marksman.'], ["It's", 'a', 'dead', 'giveaway.'], ['Please', 'lend', 'me', 'this', 'book', 'for', 'a', 'few', 'days.'], ['They', "won't", 'take', 'it', 'away.'], ['She', 'whispered', 'to', 'me', 'that', 'she', 'was', 'hungry.'], ['He', 'delivered', 'a', 'speech.'], ['How', 'did', 'you', 'get', 'here', 'so', 'fast?'], ['His', 'family', 'emigrated', 'to', 'the', 'United', 'States.'], ['I', 'made', 'a', 'mistake.'], ['I', "don't", 'see', 'why', 'everyone', 'thinks', 'this', 'book', 'is', 'so', 'good.'], ['He', 'lives', 'on', 'his', 'country', 'estate.'], ["We're", 'too', 'vulnerable.'], ['Do', 'you', 'still', 'want', 'to', 'be', 'an', 'officer?'], ['They', 'kept', 'flashing', 'that', 'light', 'in', 'my', 'eyes.'], ['I', 'bared', 'my', 'soul', 'to', 'her.'], ['I', 'never', 'sleep', 'in.'], ['I', 'am', 'interested', 'in', 'music.'], ['I', "can't", 'stop', 'coughing.'], ['The', 'cat', 'is', 'not', 'dead.'], ["I'm", 'looking', 'for', 'a', 'cheap', 'hotel.'], ['Tom', 'never', 'reached', 'Australia.'], ['Tom', 'wants', 'me', 'to', 'help', 'him.'], ['Will', 'you', 'go,', 'too?'], ["You've", 'gone', 'too', 'far', 'this', 'time.'], ['Why', "didn't", 'you', 'call', 'me', 'last', 'night?'], ['I', 'will', 'be', 'in', 'high', 'school', 'next', 'April.'], ['Tom', 'counts', 'on', 'Mary.'], ['You', 'have', 'more', 'energy', 'than', 'I', 'do.'], ['He', 'had', 'a', 'book', 'in', 'his', 'hand.'], ['He', 'died', 'a', 'few', 'days', 'before', 'his', 'hundredth', 'birthday.'], ['She', 'has', 'known', 'him', 'for', 'a', 'long', 'time.'], ["Don't", 'buy', 'that.'], ['I', 'get', 'along', 'with', 'everybody.'], ['Do', 'you', 'really', 'wanna', 'talk', 'about', 'this', 'now?'], ['Tom', 'broke', 'his', 'arm', 'playing', 'football.'], ['You', 'are', 'really', 'very', 'productive', 'today.'], ["I'm", 'winning.'], ['Dogs', "aren't", 'allowed', 'in', 'this', 'hotel.'], ['Be', 'as', 'quick', 'as', 'possible.'], ['Tom', 'just', 'showed', 'up', 'at', 'work.'], ['She', 'sat', 'next', 'to', 'him', 'wishing', 'she', 'were', 'somewhere', 'else.'], ["Don't", 'make', 'any', 'loud', 'noises.'], ['You', "don't", 'have', 'to', 'talk', 'about', 'it', 'if', 'you', "don't", 'want', 'to.'], ['It', 'seems', 'obvious', 'that', 'he', 'is', 'sick.'], ["I'll", 'take', 'the', 'next', 'bus.'], ['I', 'got', 'a', 'call', 'from', 'the', 'school', 'today.'], ['Are', 'they', 'speaking', 'French?'], ['There', 'are', 'dirty', 'dishes', 'in', 'the', 'sink\xad.'], ['My', 'father', "won't", 'allow', 'me', 'to', 'do', 'that.'], ['I', 'came', 'to', 'give', 'you', 'this.'], ['We', 'need', 'to', 'get', 'out', 'of', 'here.'], ['I', 'think', "it's", 'the', 'best', 'way.'], ['Do', 'you', 'want', 'to', 'come', 'over', 'tonight?'], ['You', 'said', 'you', 'were', 'going', 'to', 'handle', 'it.'], ['Tom', 'was', 'about', 'to', 'kiss', 'Mary', 'when', 'her', 'father', 'walked', 'into', 'the', 'room.'], ['She', 'talked', 'to', 'the', 'chairman.'], ['The', 'man', 'standing', 'over', 'there', 'is', 'the', 'owner', 'of', 'the', 'store.'], ["I'll", 'see', 'to', 'it.'], ['Wait', 'here', 'until', 'I', 'come', 'back.'], ['We', 'were', 'both', 'in', 'the', 'library.'], ['I', 'hardly', 'know', 'anything', 'about', 'you.'], ["We've", 'finished.'], ["I'm", 'not', 'leaving', 'with', 'you.'], ['What', 'were', 'you', 'waiting', 'for?'], ['I', 'had', 'some', 'engine', 'trouble', 'yesterday.'], ['We', 'hope', 'many', 'of', 'you', 'will', 'come.'], ['If', 'it', 'had', 'not', 'been', 'for', 'his', 'help,', 'I', 'would', 'have', 'failed.'], ['Everyone', 'had', 'fun.'], ['We', 'had', 'a', 'very', 'hot', 'summer', 'this', 'year.'], ['Hurry', 'up,', 'or', 'you', 'will', 'be', 'late', 'for', 'the', 'last', 'train.'], ['Boys', "don't", 'like', 'girls', 'who', 'talk', 'too', 'much.'], ['Did', 'you', 'hear', 'what', 'I', 'said?'], ['There', 'are', 'a', 'lot', 'of', 'dustballs', 'under', 'the', 'couch.'], ['Food', 'is', 'fuel', 'for', 'our', 'bodies.'], ["You're", 'not', 'suggesting', 'Tom', 'could', 'have', 'done', 'it,', 'are', 'you?'], ['Why', 'are', 'you', 'acting', 'this', 'way?'], ['He', 'usually', 'looks', 'through', 'the', 'newspapers', 'before', 'breakfast.'], ['The', 'boss', 'is', 'very', 'upset.'], ['I', 'like', 'to', 'fish', 'in', 'the', 'river.'], ["Don't", 'forget', 'your', 'money.'], ['Tom', 'is', 'a', 'Native', 'American.'], ['That', 'really', 'hurts.'], ["It's", 'possible', 'that', 'Tom', 'is', 'a', 'genius.'], ['The', 'school', 'was', 'established', 'in', '1650.'], ['This', 'is', 'correct.'], ['She', 'advised', 'him', 'to', 'see', 'a', 'lawyer.'], ['I', 'thought', 'they', 'were', 'wrong.'], ['Are', 'they', 'arriving', 'at', 'ten', "o'clock", 'in', 'the', 'morning', 'or', 'at', 'night?'], ['I', 'remember', 'reading', 'about', 'it.'], ['My', 'mother', 'has', 'gone', 'to', 'the', 'beauty', 'shop.'], ['Please', 'visit', 'us', 'at', 'your', 'convenience.'], ['I', 'like', 'the', 'Terminator', 'films', 'because', 'the', 'special', 'effects', 'are', 'fantastic.'], ['Tom', 'is', 'obstinate.'], ['Oh,', "don't", 'be', 'so', 'modest.'], ["You're", 'a', 'little', 'liar.'], ['I', 'am', 'grateful', 'to', 'you', 'for', 'your', 'kindness.'], ['I', "don't", 'mind', 'at', 'all.'], ['Each', 'state', 'had', 'just', 'one', 'vote.'], ["Tom's", 'party', 'was', 'boring.'], ["They're", 'thirty', 'dollars', 'each.'], ['How', 'is', 'this', 'relevant?'], ['Do', 'you', 'know', 'how', 'much', 'I', 'give', 'to', 'charity?'], ['What', 'are', 'friends', 'for?'], ['Tom', 'says', 'he', 'was', 'busy.'], ['They', 'adopted', 'the', 'orphan.'], ['I', 'have', 'been', 'expecting', 'you.'], ['Tom', 'is', 'the', 'boy', 'I', 'told', 'you', 'about.'], ['I', 'pretended', 'that', 'it', "didn't", 'bother', 'me.'], ['You', 'will', 'succeed', 'some', 'day.'], ["Columbus'", 'discovery', 'of', 'America', 'was', 'accidental.'], ['After', 'a', 'slow', 'summer', 'season,', 'business', 'began', 'to', 'pick', 'up.'], ["Here's", 'a', 'yellow', 'rose.'], ['What', 'an', 'idiot', 'I', 'was', 'to', 'lend', 'her', 'money.'], ['Tom', 'says', 'he', "hasn't", 'eaten', 'in', 'three', 'days.'], ['Excuse', 'me', 'for', 'one', 'moment.'], ['I', 'love', 'that', 'chair.'], ['Tom', 'was', 'in', 'high', 'spirits.'], ['Tom', 'fixed', 'everything.'], ['We', 'do', 'this', 'every', 'Monday.'], ['Can', 'you', 'please', 'repeat', 'the', 'question?'], ["Don't", 'blame', 'me.'], ["Don't", 'worry', 'about', 'a', 'thing.'], ['I', 'suggest', 'that', 'you', 'try', 'to', 'get', 'some', 'sleep.'], ['On', 'the', 'whole,', 'the', 'Japanese', 'are', 'conservative.'], ['Did', 'you', 'live', 'here', 'before?'], ['I', 'got', 'up', 'early', 'yesterday.'], ['I', 'support', 'you', 'a', 'hundred', 'percent.'], ["I've", 'heard', 'all', 'about', 'you.'], ['I', "don't", 'know', 'you', 'anymore.'], ['Tom', 'asked', 'Mary', 'to', 'get', 'him', 'a', 'cup', 'of', 'coffee.'], ['These', 'books', 'and', 'clothes', 'are', 'all', 'yours.'], ['I', 'know', 'I', "should've", 'done', 'that.'], ['You', 'stay', 'here.'], ["I'll", 'trust', 'you.'], ['It', 'was', 'a', 'huge', 'explosion.'], ['I', "wasn't", 'too', 'sure', 'about', 'it.'], ['This', 'is', 'most', 'unfortunate.'], ['I', 'appreciate', 'your', 'work.'], ['You', "don't", 'need', 'me', 'anymore.'], ['I', "didn't", 'even', 'notice', 'you.'], ['Are', 'you', 'guys', 'stupid', 'or', 'something?'], ["Let's", 'clean', 'our', 'room.'], ['The', 'radio', 'was', 'plugged', 'in.'], ['Hold', 'the', 'rope.'], ['I', "don't", 'know', 'how', 'long', "we've", 'got.'], ['This', 'history', 'book', 'is', 'written', 'for', 'high', 'school', 'students.'], ['I', 'thought', 'we', 'could', 'stay', 'here', 'all', 'day.'], ['The', 'vaccination', 'left', 'a', 'funny', 'little', 'mark', 'on', 'my', 'arm.'], ['You', "shouldn't", 'be', 'impatient', 'with', 'children.'], ['I', 'wonder', 'how', 'all', 'of', 'this', 'happened.'], ["I've", 'finished', 'reading', 'the', 'book.'], ["I'm", 'offering', 'you', 'a', 'choice.'], ['Seen', 'from', 'a', 'distance,', 'this', 'mountain', 'looks', 'like', 'Mt.', 'Fuji.'], ['I', 'taught', 'Tom', 'French', 'for', 'three', 'years.'], ['Tom', 'opened', 'the', 'book', 'and', 'started', 'reading.'], ['I', "wouldn't", 'want', 'anyone', 'to', 'see', 'us.'], ['Your', 'secret', 'is', 'safe', 'with', 'me.'], ['Butter', 'is', 'made', 'from', 'milk.'], ['I', 'think', 'we', 'can', 'make', 'it', 'on', 'time.'], ['A', 'hundred', 'years', 'is', 'called', 'a', 'century.'], ['You', 'really', 'have', 'an', 'ear', 'for', 'music.'], ['I', 'think', 'you', 'look', 'hot.'], ['Tom', 'is', 'now', 'in', 'custody.'], ["She's", 'looking', 'the', 'other', 'way.'], ['We', 'had', 'known', 'him', 'for', 'five', 'years', 'when', 'he', 'died.'], ['I', 'feel', 'tired', 'all', 'the', 'time.'], ['We', 'should', 'spend', 'our', 'time', 'creating', 'content', 'for', 'our', 'website', 'rather', 'than', 'wasting', 'time', 'worrying', 'about', 'minor', 'cosmetic', 'details.'], ['There', 'is', 'a', 'strike.'], ['What', 'are', 'you', 'going', 'to', 'have?'], ['The', 'Americans', 'did', 'not', 'like', 'the', 'new', 'plan.'], ['I', "don't", 'often', 'get', 'invited', 'to', 'parties.'], ['How', 'dare', 'you', 'talk', 'that', 'way', 'in', 'front', 'of', 'my', 'wife!'], ['The', 'dress', 'fits', 'you', 'very', 'well.'], ['Tom', "wasn't", 'allowed', 'to', 'see', 'his', 'father.'], ['He', 'is', 'regarded', 'as', 'the', 'best', 'doctor', 'in', 'the', 'village.'], ['What', 'do', 'you', 'want', 'to', 'do', 'in', 'the', 'afternoon?'], ['I', "didn't", 'buy', 'the', 'car.'], ['I', 'wish', 'nothing', 'but', 'the', 'best', 'for', 'you.'], ['I', 'wonder', 'if', 'exchange', 'students', 'can', 'join', 'this', 'club.'], ['He', 'was', 'a', 'former', 'university', 'professor', 'and', 'researcher.'], ['They', 'ironed', 'out', 'their', 'differences.'], ['He', 'shuddered', 'with', 'horror', 'at', 'the', 'grisly', 'sight.'], ['This', 'computer', 'is', 'powerful,', 'efficient,', 'and', 'easy', 'to', 'use.'], ['How', 'do', 'you', 'know', "they're", 'looking', 'for', 'us?'], ['Sing', 'us', 'a', 'song.'], ['Do', 'you', 'need', 'to', 'drink', 'wine?'], ["You're", 'too', 'young', 'to', 'marry.'], ['We', 'know', 'where', 'Tom', 'is.'], ['Would', 'you', 'please', 'wait', 'for', 'a', 'few', 'minutes?'], ['Money', 'does', 'not', 'always', 'bring', 'happiness.'], ['I', 'often', 'feel', 'homesick.'], ['I', 'remember', 'that', 'speech.'], ["You're", 'finicky.'], ['Tom', 'said', 'he', "didn't", 'know', 'how', 'to', 'swim', 'very', 'well.'], ['I', "didn't", 'go', 'to', 'school', 'because', 'I', 'was', 'sick.'], ['I', 'saw', 'his', 'car', 'make', 'a', 'right', 'turn.'], ['Do', 'you', 'want', 'anything?'], ['He', 'broke', 'his', 'word,', 'which', 'made', 'his', 'wife', 'angry.'], ['He', 'is', 'a', 'doctor', 'and', 'a', 'university', 'professor.'], ['Everyone', 'stayed', 'standing.'], ['There', 'are', 'fifty', 'members', 'in', 'this', 'club.'], ['He', 'is', 'walking', 'now.'], ['My', 'wife', 'did', 'not', 'attend', 'the', 'party', 'and', 'neither', 'did', 'I.'], ["We're", 'pretty', 'proud', 'of', 'that.'], ['You', 'know', 'where', "I'm", 'going.'], ['I', 'want', 'to', 'go', 'to', 'sleep', 'soon', 'because', 'I', 'need', 'to', 'get', 'up', 'early', 'tomorrow.'], ['I', 'saw', 'you', 'snickering.'], ["I'm", 'not', 'supposed', 'to', 'help', 'you.'], ['They', 'admired', 'the', 'lovely', 'scenery.'], ['I', 'think', 'the', 'movie', 'is', 'almost', 'over.'], ['You', 'ought', 'to', 'be', 'ashamed.'], ['The', 'line', 'is', 'busy', 'now.'], ['I', 'know', 'Tom', 'is', 'a', 'good', 'chef.'], ['Tell', 'him', 'to', 'wait.'], ['The', 'neighbor', 'asked', 'us', 'to', 'turn', 'the', 'music', 'down.'], ['I', 'know', 'that', "you're", 'clever.'], ["You're", 'very', 'resourceful.'], ['Tom', 'lived', 'in', 'Australia', 'in', '2013.'], ['She', 'has', 'been', 'unhappy', 'since', 'her', 'cat', 'died.'], ["You'll", 'be', 'in', 'trouble.'], ['I', 'eagerly', 'await', 'your', 'decision.'], ['I', 'admit', 'nothing.'], ['It', 'was', 'a', 'mess.'], ['My', 'book', 'has', 'to', 'be', 'somewhere', 'in', 'the', 'room.'], ['He', 'came', 'into', 'the', 'room.'], ["I'm", 'a', 'stranger', 'here', 'myself.'], ['Shepherd', 'tried', 'to', 'run', 'and', 'was', 'shot.'], ['You', 'lied', 'to', 'me.'], ['Tom', 'remembered', 'the', 'last', 'time', 'he', 'had', 'hugged', 'Mary.'], ['I', 'wish', 'I', 'had', 'a', 'camera.'], ['Did', 'anybody', 'see', 'Tom', 'leave?'], ["It's", 'certainly', 'a', 'waste', 'of', 'time.'], ['That', 'was', 'a', 'good', 'idea.'], ['Did', 'he', 'say', 'anything', 'about', 'it', 'to', 'you?'], ['Does', 'he', 'know', 'what', 'you', 'did?'], ['Tom', 'did', 'nothing', 'illegal.'], ['Women', 'like', 'colorful', 'umbrellas.'], ['Tom', "won't", 'let', 'you', 'go.'], ['If', "I'd", 'known', 'it,', "I'd", 'have', 'told', 'you.'], ['I', 'hope', "that's", 'satisfactory.'], ['You', 'finally', 'succeeded', 'in', 'getting', 'a', 'job.'], ['Had', 'you', 'been', 'drinking?'], ['Come', 'along.'], ['Tom', 'is', 'a', 'cold-hearted', 'murderer.'], ['I', 'have', 'many', 'friends', 'I', 'can', 'talk', 'to.'], ['I', 'often', 'talk', 'to', 'him', 'on', 'the', 'bus.'], ['They', 'have', 'solved', 'the', 'problem', 'once', 'and', 'for', 'all.'], ['Did', 'you', 'think', 'I', 'was', 'Canadian?'], ["It's", 'a', 'matter', 'of', 'time.'], ['I', 'nailed', 'it.'], ['He', 'is', 'rarely,', 'if', 'ever,', 'late', 'for', 'appointments.'], ['We', 'do', 'not', 'forget.'], ["They're", 'mad', 'at', 'you.'], ['They', 'are', 'in', 'favor', 'of', 'your', 'plan.'], ['Bern', 'is', 'the', 'capital', 'of', 'Switzerland.'], ['She', "couldn't", 'convince', 'him', 'to', 'ride', 'a', 'horse.'], ['Tom', 'flipped', 'on', 'the', 'dining', 'room', 'light.'], ['Where', 'are', 'your', 'children?'], ["It's", 'on', 'my', 'desk.'], ['They', 'fight', 'like', 'cat', 'and', 'dog.'], ['I', 'accept', 'your', 'conditions.'], ["They're", 'mine.'], ['Defense', 'lawyers', 'appealed', 'for', 'mercy.'], ['Are', 'you', 'good', 'at', 'cooking?'], ['She', 'walked', 'as', 'fast', 'as', 'she', 'could', 'to', 'catch', 'up', 'with', 'him.'], ['I', 'just', 'assumed', 'that', "you'd", 'be', 'here.'], ['The', 'horse', 'stopped', 'and', 'refused', 'to', 'move.'], ['The', 'radio', 'is', 'too', 'loud.', 'Turn', 'the', 'volume', 'down.'], ['I', 'have', 'bruises', 'all', 'over', 'my', 'body.'], ["We're", 'satisfied.'], ["You're", 'going', 'to', 'be', 'a', 'father.'], ['Make', 'your', 'bed.'], ["There's", 'no', 'room', 'under', 'the', 'bed.'], ['Can', 'we', 'really', 'learn', 'to', 'speak', 'a', 'foreign', 'language', 'like', 'a', 'native?'], ['Have', 'you', 'looked', 'at', 'these', 'brochures?'], ['Tom', 'had', 'his', 'wife', 'Mary', 'followed', 'by', 'a', 'private', 'detective.'], ['That', 'exercise', 'is', 'good', 'for', 'the', 'abdominal', 'muscles.'], ['We', 'must', 'go', 'to', 'bed', 'early', 'tonight.'], ['It', "doesn't", 'need', 'to', 'be', 'done', 'right', 'away.'], ['You', 'ought', 'not', 'to', 'make', 'fun', 'of', 'them.'], ["Don't", 'even', 'try', 'it.'], ['You', "can't", 'judge', 'people', 'by', 'their', 'looks.'], ['Why', 'did', 'you', 'do', 'this', 'to', 'me?'], ["They're", 'still', 'together.'], ['I', 'heard', 'that', 'he', 'gave', 'himself', 'up', 'to', 'the', 'police.'], ['You', "can't", 'just', 'quit.'], ['I', 'wrote', 'that.'], ['I', 'think', "you're", 'going', 'to', 'want', 'to', 'sit', 'down.'], ['He', 'shared', 'in', 'my', 'happiness.'], ['Nobody', 'wants', 'to', 'do', 'that.'], ['I', "can't", 'eat', 'pork.'], ['I', 'am', 'rather', 'happy.'], ['The', 'doctor', 'advised', 'him', 'to', 'ease', 'up', 'on', 'alcohol.'], ['Those', 'flowers', 'are', 'beautiful.'], ['These', 'new', 'cars', 'are', 'on', 'sale.'], ["It's", 'not', 'for', 'you.'], ['That', 'would', 'certainly', 'make', 'me', 'happy.'], ["We're", 'all', 'angry.'], ['You', 'must', 'always', 'keep', 'your', 'hands', 'clean.'], ["Let's", 'call', 'it', 'a', 'night.'], ["I'm", 'obedient.'], ['The', 'bank', 'lent', 'him', '500', 'dollars.'], ['I', 'did', 'write', 'to', 'him.'], ['My', 'mother', 'is', 'anxious', 'about', 'my', 'future.'], ['Do', 'you', 'have', 'a', 'passport?'], ['If', 'that', "doesn't", 'work,', 'try', 'something', 'else.'], ['I', 'am', 'at', 'a', 'loss', 'for', 'words.'], ['The', 'supermarket', 'is', 'open.'], ['She', 'ignored', 'him', 'until', 'he', 'became', 'rich.'], ['Mary', 'claims', 'you', 'stole', 'her', 'pearls.'], ['What', 'color', 'is', 'this?'], ['I', 'was', 'unable', 'to', 'go', 'outside.'], ['Go', 'ahead.', "I'll", 'meet', 'you', 'downstairs.'], ['What', 'have', 'I', 'misspelled?'], ['She', 'could', 'feel', 'her', 'knees', 'shaking.'], ["I'd", 'like', 'to', 'apologize', 'for', 'the', 'way', 'I', 'handled', 'the', 'situation.'], ['Your', 'hair', 'is', 'too', 'long.'], ['Tom', 'was', 'very', 'annoyed.'], ['I', "haven't", 'eaten', 'anything', 'except', 'one', 'slice', 'of', 'bread', 'all', 'day.'], ['Is', 'there', 'something', 'in', 'particular', 'that', "you're", 'looking', 'for?'], ['I', 'agree', 'with', 'everything', 'you', 'just', 'said.'], ["Let's", 'get', 'rid', 'of', 'that', 'one.'], ['If', "you're", 'not', 'with', 'us', 'then', "you're", 'against', 'us.'], ['Everything', 'is', 'OK.'], ['His', 'sister', 'looks', 'young.'], ['I', 'never', 'thought', 'about', 'it', 'that', 'way.'], ['You', 'should', 'stay', 'away', 'from', 'Tom.'], ['I', 'need', 'to', 'figure', 'out', 'what', "I'm", 'doing', 'wrong.'], ["That's", 'enough', 'for', 'today.'], ['I', 'put', 'it', 'on', 'your', 'desk.'], ['He', 'arrived', 'as', 'soon', 'as', 'he', 'could.'], ['Your', 'life', 'depends', 'on', 'it.'], ['I', 'am', 'loved', 'by', 'all', 'my', 'family.'], ['Is', 'this', 'the', 'train', 'station?'], ['I', "haven't", 'seen', 'you', 'in', 'ages.'], ['He', 'is', 'sadly', 'mistaken.'], ['No', 'matter', 'how', 'capable', 'you', 'are,', "you're", 'not', 'going', 'to', 'get', 'a', 'promotion.'], ['Tom', 'is', 'sincere,', "isn't", 'he?'], ['What', 'is', 'it', 'with', 'you', 'people?'], ['Can', 'I', 'borrow', 'something', 'to', 'write', 'on?'], ['You', 'are', 'a', 'teacher.'], ["You're", 'not', 'a', 'very', 'good', 'liar.'], ['Just', 'give', 'me', 'a', 'little', 'privacy.'], ['The', 'psychologist', 'asked', 'me', 'a', 'whole', 'battery', 'of', 'questions.'], ['I', 'come', 'here', 'every', 'Monday.'], ['He', 'worked', 'for', 'a', 'rich', 'man.'], ['I', 'lost', 'the', 'watch', 'that', 'my', 'father', 'gave', 'me.'], ['The', 'first', 'stage', 'is', 'complete.'], ['If', 'that', 'guitar', 'were', 'not', 'so', 'expensive,', 'I', 'could', 'buy', 'it.'], ["You've", 'got', 'to', 'be', 'bold!'], ["I'd", 'like', 'to', 'thank', 'you', 'for', 'coming', 'today.'], ['They', 'think', 'the', 'owner', 'of', 'the', 'house', 'is', 'studying', 'abroad.'], ['Do', 'you', 'know', 'anyone', 'who', 'needs', 'a', 'job?'], ['What', 'are', 'some', 'foods', 'you', 'usually', 'eat', 'with', 'chopsticks?'], ['Tom', 'tightened', 'the', 'knot.'], ['She', 'poured', 'me', 'a', 'cup', 'of', 'tea.'], ['He', 'bought', 'a', 'hat.'], ['Even', 'chocolate', 'contains', 'vitamins.'], ['Stay', 'where', 'you', 'are.'], ['I', 'plan', 'to', 'reply', 'to', 'his', 'letter', 'right', 'away.'], ['Tom', 'has', 'signed', 'a', 'three-year', 'contract.'], ['The', 'house', 'has', 'burnt', 'down.'], ['Do', 'you', 'want', 'to', 'look', 'at', 'it?'], ['If', 'you', 'need', 'help,', 'just', 'ask.'], ['Thanks', 'for', 'adding', 'me', 'as', 'a', 'friend.'], ['What', 'do', 'you', 'want', 'to', 'do', 'now?'], ['All', 'men', 'are', 'created', 'equal.'], ['Whoever', 'thought', 'of', 'this', 'stupid', 'plan', 'should', 'be', 'fired.'], ['He', 'asked', 'for', 'a', 'drink', 'of', 'water.'], ['How', 'tall', 'you', 'are!'], ['The', 'exhibition', 'was', 'very', 'impressive.'], ['I', 'need', 'a', 'shower.'], ['I', 'never', 'liked', 'that', 'one', 'anyway.'], ['Go', 'and', 'get', 'a', 'chair', 'from', 'the', 'next', 'room,', 'please.'], ['Tom', 'will', 'be', 'in', 'charge', 'while', "I'm", 'away.'], ['I', 'shave', 'every', 'morning.'], ['There', 'was', 'only', 'one', 'left.'], ['She', 'decided', 'to', 'be', 'a', 'doctor.'], ['I', 'want', 'you', 'to', 'stay', 'where', 'you', 'are.'], ['Do', 'you', 'have', 'a', 'knife?'], ['Apparently,', 'there', 'is', 'nothing', 'that', 'cannot', 'happen', 'today.'], ["She's", 'very', 'pretty.'], ['The', 'castle', 'might', 'be', 'haunted.'], ["I'm", 'sorry', 'I', "didn't", 'reply', 'to', 'you', 'sooner.'], ['Tom', 'goes', 'to', 'bed', 'at', 'the', 'same', 'time', 'every', 'night.'], ['There', 'were', 'a', 'lot', 'of', 'men', 'among', 'the', 'inhabitants.'], ['Go', 'away', 'before', 'they', 'see', 'you', 'here.'], ['Could', 'you', 'please', 'stop', 'singing?'], ["Let's", 'buy', 'this', 'one.'], ['She', 'gave', 'him', 'a', 'piece', 'of', 'paper.'], ['Is', 'there', 'space', 'for', 'one', 'more', 'person?'], ['The', 'truth', 'is', 'I', "don't", 'like', 'Tom.'], ['I', 'stayed', 'indoors', 'because', 'it', 'rained.'], ['Are', 'there', 'enough', 'chairs', 'to', 'go', 'around?'], ['Tom', 'is', 'due', 'to', 'come', 'at', 'noon.'], ['I', "can't", 'carry', 'on', 'like', 'this.'], ['They', 'quarreled.'], ['Now', "you've", 'mentioned', 'it,', 'I', 'remember', 'coming', 'here', 'with', 'my', 'parents', 'when', 'I', 'was', 'a', 'child.'], ["You're", 'not', 'listening', 'to', 'me.'], ["It's", 'a', 'waste', 'of', 'time.'], ['Am', 'I', 'going', 'to', 'be', 'normal', 'again?'], ['Tom', 'pointed', 'at', 'Mary.'], ['She', 'has', 'brought', 'up', 'five', 'children.'], ['I', 'was', 'right', 'behind', 'you.'], ['You', 'must', 'have', 'thought', 'of', 'something.'], ['She', 'appealed', 'to', 'me', 'for', 'help.'], ["I'm", 'on', 'my', 'way', 'to', 'work.'], ['The', 'wall', 'is', 'two', 'meters', 'thick.'], ["I'm", 'glad', 'you', 'brought', 'that', 'up.'], ['Her', 'daughter', 'has', 'what', 'it', 'takes', 'to', 'be', 'a', 'good', 'teacher.'], ['Try', 'not', 'to', 'look', 'so', 'nervous.'], ["Don't", 'go', 'near', 'the', 'dog.'], ["What's", 'the', 'forecast', 'for', 'tomorrow?'], ["It's", 'cheaper', 'if', 'you', 'order', 'these', 'by', 'the', 'dozen.'], ['He', 'fired', 'most', 'of', 'his', 'men.'], ['You', 'should', 'try', 'to', 'live', 'within', 'your', 'means.'], ['May', 'I', 'ask', 'you', 'a', 'personal', 'question?'], ['He', 'reached', 'the', 'rank', 'of', 'general.'], ['Nobody', 'is', 'paying', 'attention', 'to', 'Tom.'], ['I', "don't", 'mean', 'to', 'challenge', 'your', 'theory.'], ['What', 'are', 'you', 'doing', 'here?'], ["I'm", 'also', 'learning', 'French.'], ['What', 'a', 'big', 'supermarket!'], ['I', "couldn't", 'stop', 'crying.'], ['You', 'guys', 'are', 'no', 'fun.'], ['He', 'spends', 'too', 'much', 'money.'], ['I', "don't", 'want', 'to', 'go', 'through', 'another', 'experience', 'like', 'that.'], ['It', 'was', 'entirely', 'by', 'chance', 'that', 'I', 'found', 'out', 'what', 'he', 'was', 'doing.'], ['He', 'wiped', 'his', 'hands', 'on', 'a', 'handkerchief.'], ['It', 'was', 'really', 'considerate', 'of', 'you', 'to', 'lend', 'me', '$500', 'when', 'I', 'was', 'in', 'difficulties.'], ['Give', 'Tom', 'everything', 'you', 'have.'], ['It', 'took', 'me', 'a', 'long', 'time', 'to', 'get', 'over', 'my', 'last', 'relationship.'], ['I', 'knew', 'this', 'was', 'a', 'mistake.'], ['Do', 'you', 'want', 'to', 'try', 'it?'], ['Have', 'a', 'good', 'weekend!'], ['I', 'have', 'no', 'proof', 'of', 'that.'], ['She', 'made', 'him', 'happy.'], ["You're", 'the', 'only', 'person', 'who', 'ever', 'comes', 'to', 'visit', 'me.'], ["I'm", 'happy', 'you', 'liked', 'it.'], ['This', 'has', 'to', 'be', 'a', 'mistake.'], ["They'll", 'take', 'care', 'of', 'you.'], ['Will', 'we', 'have', 'a', 'hot', 'summer?'], ['I', 'thought', 'I', 'was', 'going', 'crazy.'], ['He', 'was', 'sentenced', 'to', 'prison.'], ['Are', 'you', 'about', 'done?'], ['I', 'do', 'what', 'is', 'required.'], ['I', "don't", 'want', 'you', 'to', 'get', 'involved.'], ['She', 'agreed', 'with', 'my', 'idea.'], ['I', "don't", 'even', 'want', 'to', 'hazard', 'a', 'guess.'], ['For', 'one', 'thing,', 'I', "couldn't", 'afford', 'to', 'do', 'that.'], ['Peace', 'talks', 'will', 'begin', 'next', 'week.'], ['I', "haven't", 'lost', 'any', 'weight.'], ['What', 'do', 'you', 'think?'], ['Anything', 'could', 'happen.'], ['No', 'one', 'saw', 'that.'], ["It's", 'way', 'too', 'crowded', 'in', 'here.', "Let's", 'go', 'somewhere', 'else.'], ['I', 'work', 'in', 'a', 'bank.'], ['Can', 'I', 'be', 'of', 'any', 'assistance', 'to', 'you?'], ["We're", 'still', 'not', 'sure.'], ['Tom', 'is', 'always', 'trying', 'to', 'be', 'cool.'], ["What's", 'your', 'favorite', 'subject?'], ['I', 'thought', "you'd", 'gone', 'home.'], ['Tom', "didn't", 'get', 'paid', 'as', 'much', 'as', 'he', 'thought', 'he', 'was', 'worth.'], ['She', 'threatened', 'him.'], ['We', "could've", 'done', 'better.'], ['I', 'like', 'blue.'], ['With', 'the', 'bridge', 'destroyed,', 'there', 'was', 'nothing', 'to', 'do', 'but', 'swim.'], ['Tom', 'was', 'surprised', 'by', "Mary's", 'reaction.'], ['It', 'was', 'a', 'resounding', 'success.'], ["It's", 'hard', 'to', 'argue', 'with', 'Tom.'], ['Climbing', 'that', 'mountain', 'was', 'a', 'piece', 'of', 'cake.'], ['I', 'want', 'to', 'name', 'the', 'baby', 'after', 'you.'], ['She', 'told', 'him', 'that', 'she', 'was', 'sad.'], ['The', 'meeting', "hasn't", 'started', 'yet.'], ['First', 'of', 'all,', 'you', 'have', 'to', 'read', 'this', 'book.'], ["Didn't", 'you', 'hear', 'your', 'name', 'called?'], ['My', 'friends', 'and', 'I', 'want', 'to', 'do', 'that.'], ["You're", 'lucky', 'that', 'you', 'have', 'a', 'job.'], ["We're", 'not', 'home.'], ['I', 'have', 'lots', 'of', 'friends.'], ['Tom', 'did', 'it', 'all.'], ['During', 'the', 'rush', 'hours', 'in', 'Tokyo,', 'traffic', 'is', 'heavy.'], ['What', 'do', 'you', 'feel', 'most', 'proud', 'of?'], ['If', 'I', 'could,', 'I', 'would', 'let', 'every', 'caged', 'bird', 'fly', 'free.'], ['My', 'joints', 'ache.'], ['You', 'must', 'not', 'stay', 'in', 'bed.'], ['Of', 'course', 'I', 'will', 'go.'], ['I', "don't", 'like', 'being', 'inside.'], ['This', 'is', 'infuriating.'], ['He', 'gathered', 'his', 'books', 'together.'], ["They're", 'cousins.'], ['I', 'have', 'been', 'living', 'in', 'Rio', 'de', 'Janeiro', 'for', 'four', 'years.'], ['I', 'liked', 'working', 'with', 'you.'], ['Algebra', 'is', 'a', 'branch', 'of', 'mathematics.'], ['You', 'seem', 'busy.'], ['The', 'game', 'became', 'exciting.'], ['I', 'never', 'drink', 'beer', 'before', 'lunch.'], ["Don't", 'leave.'], ['You', 'need', 'to', 'be', 'more', 'patient.'], ['We', 'went', 'on', 'foot.'], ["I'll", 'make', 'you', 'a', 'new', 'suit.'], ['You', 'always', 'said', 'you', 'wanted', 'to', 'become', 'a', 'scientist.', 'Why', "didn't", 'you?'], ['They', "can't", 'hurt', 'you', 'now.'], ['Thanks', 'to', 'his', 'help,', 'I', 'finished', 'my', 'homework.'], ['Fill', 'it', 'up.'], ['Keep', 'driving.'], ['I', 'thought', 'you', 'were', 'a', 'man.'], ['I', 'am', 'no', 'match', 'for', 'him.'], ['A', 'good', 'sense', 'of', 'humor', 'will', 'help', 'you', 'deal', 'with', 'hard', 'times.'], ['I', 'want', 'to', 'try.'], ['I', 'use', 'it.'], ["I'm", 'aware', 'of', 'that.'], ["Here's", 'my', 'phone', 'number.'], ["Don't", 'make', 'me', 'beg', 'for', 'it.'], ['You', "must've", 'been', 'surprised', 'to', 'meet', 'your', 'teacher', 'in', 'such', 'a', 'place.'], ["I'll", 'take', 'a', 'beer.'], ['We', 'all', 'know', 'Tom', 'is', 'guilty.'], ['Bangkok', 'is', 'the', 'capital', 'of', 'Thailand.'], ["You've", 'been', 'great.'], ['I', 'thought', 'she', 'was', '30', 'at', 'most.'], ["I'm", 'not', 'a', 'professional.'], ['Why', 'am', 'I', 'doing', 'this?'], ['This', 'really', "isn't", 'that', 'simple.'], ["I'll", 'never', 'forget', 'our', 'first', 'date.'], ["What's", 'your', 'theory', 'on', 'what', 'happened?'], ['The', 'soccer', 'game', 'will', 'be', 'played,', 'even', 'if', 'it', 'rains.'], ['The', 'price', 'of', 'gold', 'varies', 'from', 'day', 'to', 'day.'], ["You're", 'missing', 'the', 'point.'], ['Nothing', 'is', 'forever.'], ['What', 'do', 'you', 'say', 'to', 'taking', 'a', 'rest?'], ['I', 'was', 'just', 'going', 'to', 'work.'], ['How', 'many', 'times', 'have', 'you', 'done', 'this?'], ['I', 'knew', 'Tom', "wouldn't", 'be', 'able', 'to', 'learn', 'enough', 'French', 'in', 'just', 'three', 'weeks.'], ['She', 'advised', 'him', 'to', 'do', 'more', 'exercise.'], ['I', "can't", 'judge', 'distance.'], ['I', 'still', 'think', "it's", 'unlikely', 'that', "he'll", 'come', 'today.'], ['That', 'was', 'sweet.'], ["He's", 'addicted', 'to', 'drugs.'], ["I'll", 'play', 'with', 'you.'], ['Why', 'would', 'anyone', 'hide', 'something', 'like', 'that', 'inside', 'this', 'cave?'], ['Tom', 'started', 'running.'], ['That', 'is', 'a', 'mistake.'], ['Do', 'you', 'think', "I'm", 'that', 'stupid?'], ["Tom's", 'dad', 'is', 'cool.'], ['You', 'leave', 'me', 'no', 'choice.'], ['I', 'remember', 'hearing', 'the', 'story', 'once.'], ['The', 'ship', "hasn't", 'even', 'docked', 'yet.'], ["I'm", 'not', 'a', 'vegetarian.'], ['I', 'wanted', 'to', 'know', 'why', 'you', "didn't", 'come', 'yesterday.'], ['I', 'want', 'to', 'talk', 'to', 'you,', 'Tom.'], ['We', 'had', 'a', 'huge', 'fight.'], ['They', 'tried', 'to', 'discourage', 'him', 'from', 'going.'], ['I', 'kept', 'on', 'reading.'], ['You', "don't", 'have', 'to', 'be', 'so', 'rude.'], ["That's", 'so', 'rad.'], ["I'll", 'ask', 'my', 'father', 'for', 'money.'], ['What', 'are', 'your', 'pet', 'peeves?'], ['Can', 'I', 'see', 'you', 'for', 'a', 'moment?'], ['I', 'want', 'you', 'to', 'give', 'me', 'a', 'job.'], ['Come', 'on!', 'Give', 'me', 'a', 'chance.'], ['I', 'think', 'you', 'ought', 'to', 'postpone', 'the', 'meeting.'], ['This', 'tea', 'smells', 'nice.'], ['I', "don't", 'think', 'I', 'can', 'help', 'you.'], ['A', 'fire', 'broke', 'out', 'during', 'the', 'night.'], ['It', 'just', 'makes', 'no', 'sense.'], ['Apparently,', 'not', 'much', 'has', 'changed.'], ['I', 'almost', 'got', 'hit', 'by', 'a', 'car', 'today.'], ['Shut', 'up!'], ['I', 'want', 'you', 'to', 'be', 'with', 'me.'], ['You', 'seem', 'like', 'a', 'smart', 'person.'], ['I', 'changed', 'my', 'mind.'], ['Furniture', 'made', 'of', 'good', 'materials', 'sells', 'well.'], ["It's", 'way', 'too', 'cold', 'to', 'swim.'], ['Drop', 'your', 'gun!'], ['Are', 'you', 'ready', 'to', 'begin?'], ['You', "can't", 'believe', 'a', 'word', 'of', 'it.'], ['Come', 'with', 'me.'], ['It', "doesn't", 'matter,', 'right?'], ['We', 'must', 'take', 'care', 'of', 'ourselves.'], ['You', 'just', "don't", 'get', 'it,', 'do', 'you?'], ['Tom', "didn't", 'give', 'me', 'back', 'my', 'money.'], ["He's", 'a', 'university', 'student.'], ['She', 'advised', 'him', 'to', 'take', 'a', 'rest.'], ['She', 'likes', 'word', 'games.'], ["Can't", 'you', 'tell', 'me', 'how', 'to', 'do', 'this?'], ['Coastal', 'cities', 'will', 'take', 'the', 'brunt', 'of', 'the', 'storm.'], ['You', 'said', 'you', 'wanted', 'a', 'family.'], ['Go', 'back', 'to', 'sleep.'], ['Being', 'very', 'tired,', 'I', 'went', 'to', 'bed', 'early.'], ['I', 'want', 'to', 'catch', 'the', '11:45.'], ['He', 'will', 'leave', 'for', 'Paris', 'next', 'month.'], ['Please', 'back', 'me', 'up!'], ['That', 'sounds', 'really', 'interesting.'], ['We', 'must', 'reflect', 'on', 'our', 'failure.'], ['My', 'fingers', 'are', 'so', 'numb', 'with', 'cold', 'that', 'I', "can't", 'play', 'the', 'piano.'], ['Someone', 'must', 'have', 'left', 'the', 'door', 'open.'], ['From', 'a', 'distance,', 'that', 'stone', 'looks', 'like', 'a', "person's", 'face.'], ["That's", 'what', 'you', 'told', 'me.'], ['I', 'remember', 'everything', 'you', 'tell', 'me.'], ['The', 'photographs', 'are', 'the', 'only', 'proof', 'we', 'have.'], ['How', 'many', 'sandwiches', 'are', 'there', 'left?'], ['I', 'want', 'to', 'write', 'a', 'letter.'], ['Your', 'dog', 'is', 'very', 'fat.'], ["I'm", 'so', 'unlucky!'], ['He', 'is', 'awesome.'], ['Both', 'of', 'my', 'brothers', 'are', 'married.'], ['You', 'knew', 'I', 'was', 'married.'], ['You', 'should', 'stay', 'here', 'a', 'few', 'days.'], ['This', 'is', 'a', 'DVD.'], ['I', 'never', 'wanted', 'to', 'hurt', 'anyone.'], ['She', 'ordered', 'him', 'to', 'do', 'it.'], ['The', 'bus', 'stopped', 'to', 'pick', 'up', 'passengers.'], ['I', "won't", 'do', 'that', 'unless', 'you', 'want', 'me', 'to.'], ["It's", 'very', 'cold', 'today.'], ['Let', 'me', 'handle', 'this.'], ['She', 'told', 'us', 'an', 'interesting', 'story.'], ['They', 'were', 'even', 'more', 'interested', 'in', 'his', 'beautiful', 'wife.'], ['Are', 'you', 'hurt', 'anywhere?'], ['That', 'happens', 'a', 'lot.'], ['How', 'dare', 'you', 'speak', 'like', 'that?'], ["I'm", 'gullible.'], ['Will', 'you', 'help', 'me', 'with', 'my', 'French', 'homework?'], ["We'll", 'keep', 'in', 'touch.'], ['You', 'knew', 'that', 'already,', "didn't", 'you?'], ["It's", 'a', 'questionable', 'policy.'], ['This', 'bucket', 'leaks.'], ['Would', 'you', 'like', 'to', 'see', 'my', 'new', 'car?'], ['Did', 'you', 'lend', 'any', 'money', 'to', 'my', 'brother?'], ['Have', 'you', 'read', "today's", 'paper', 'yet?'], ['Has', 'Tom', 'cleaned', 'the', 'room', 'yet?'], ['Tell', 'Tom.'], ['I', 'was', 'happy', 'then.'], ['Do', 'you', 'think', 'I', 'can', 'use', 'my', 'cellphone', 'in', 'the', 'shower?'], ['We', 'won.'], ['You', "won't", 'die', 'today.'], ['Grab', 'that.'], ["I'm", 'going', 'to', 'deal', 'with', 'the', 'problem', 'in', 'this', 'chapter.'], ["You're", 'the', 'only', 'person', 'I', 'know', 'who', 'is', 'my', 'age.'], ['Her', 'sister', 'looks', 'young.'], ['What', 'do', 'you', 'mean?'], ['This', 'bomb', 'can', 'kill', 'a', 'lot', 'of', 'people.'], ['I', 'have', 'nothing', 'to', 'say', 'against', 'it.'], ['Everybody', 'blames', 'you.'], ['It', 'was', 'sunny', 'yesterday.'], ['Go', 'now.'], ['Do', 'you', 'want', 'something?'], ['I', 'will', 'give', 'it', 'a', 'try.'], ['What', 'does', 'that', 'word', 'mean?'], ["I'll", 'tell', 'you', 'on', 'the', 'way.'], ['You', 'know', 'I', 'have', 'to', 'go.'], ['He', 'gets', 'really', 'testy', 'when', 'he', "doesn't", 'get', 'his', 'way.'], ['I', 'know', "something's", 'going', 'on.'], ["I'll", 'stay', 'here.'], ['Tom', 'is', 'a', 'fairly', 'good', 'plumber.'], ['Country', 'people', 'are', 'traditionally', 'suspicious', 'of', 'strangers.'], ["I'm", 'looking', 'for', 'my', 'passport.', 'Have', 'you', 'seen', 'it?'], ['Your', 'idea', 'is', 'not', 'entirely', 'crazy.'], ['I', "didn't", 'know', 'you', 'were', 'so', 'tired.'], ['I', 'made', 'a', 'lot', 'of', 'mistakes', 'back', 'then.'], ['Why', 'would', 'that', 'make', 'a', 'difference?'], ['I', 'think', "it's", 'impossible', 'for', 'him', 'to', 'solve', 'the', 'problem.'], ['May', 'I', 'eat', 'that', 'cake?'], ['You', 'two', 'had', 'a', 'fight', 'today,', "didn't", 'you?'], ['They', 'abandoned', 'their', 'homeland.'], ['I', "can't", 'believe', "it's", 'raining', 'again.'], ['My', 'brother', 'is', 'engaged', 'in', 'cancer', 'research.'], ['Tom', 'can', 'swim,', "can't", 'he?'], ['He', 'is', 'afraid', 'of', 'dogs.'], ['The', 'two', 'towns', 'are', 'separated', 'by', 'a', 'river.'], ['I', 'know', "you're", 'on', 'vacation.'], ['Tom', 'was', 'in', 'no', 'mood', 'to', 'talk', 'to', 'Mary.'], ['Tom', 'struggled', 'to', 'climb', 'to', 'the', 'top.'], ['I', 'have', 'three', 'choices.'], ['The', 'British', 'would', 'need', 'strong', 'leadership.'], ['That', 'fact', "can't", 'be', 'denied.'], ['I', 'do', 'have', 'one', 'question.'], ["You'd", 'better', 'not', 'go', 'today.'], ['These', 'logs', 'are', 'heavy.'], ['I', 'waited', 'for', 'him', 'till', 'ten.'], ['It', 'looks', 'like', "it's", 'just', 'the', 'two', 'of', 'us.'], ['Tom', 'can', 'come', 'back', 'tomorrow.'], ['She', 'promised', 'that', 'she', 'would', 'meet', 'him', 'after', 'school.'], ['She', 'always', 'tries', 'something', 'new.'], ['Take', 'a', 'deep', 'breath,', 'please.'], ["I'll", 'lend', 'you', 'the', 'tools', 'that', 'you', 'need', 'to', 'do', 'that.'], ['I', 'made', 'a', 'list', 'of', 'things', 'I', 'needed', 'to', 'do.'], ['Tom', 'wants', 'you', 'to', 'help', 'him.'], ['Choose', 'the', 'one', 'you', 'like.'], ['I', 'presented', 'him', 'with', 'a', 'gold', 'watch.'], ['We', 'have', 'snow', 'in', 'January.'], ['Would', 'you', 'like', 'some', 'water?'], ['You', 'must', 'help', 'your', 'mother.'], ['I', "didn't", 'cheat.'], ['Tom', 'makes', 'his', 'own', 'bread.'], ['Have', 'you', 'tried', 'that', 'before?'], ["It's", 'an', 'absolute', 'waste', 'of', 'time', 'to', 'wait', 'any', 'longer.'], ['The', 'sun', 'gives', 'us', 'light', 'and', 'heat.'], ['I', 'go', 'up', 'to', 'the', 'rooftop', 'when', 'I', 'want', 'to', 'see', 'the', 'blue', 'sky.'], ['I', 'have', 'feeling', 'in', 'my', 'legs.'], ['You', 'lost,', "didn't", 'you?'], ["I've", 'got', 'to', 'head', 'back', 'to', 'work.'], ['I', 'know', 'that', 'there', 'was', 'a', 'big', 'church', 'here.'], ['Do', 'you', 'like', 'looking', 'in', 'the', 'mirror?'], ['I', 'had', 'to', 'do', 'this', 'today.'], ['The', 'teacher', 'was', 'disappointed', 'at', 'my', 'answer.'], ['They', 'died', 'in', 'battle.'], ['As', 'always,', 'you', 'have', 'understood', 'poorly!'], ['There', 'is', 'a', 'man', 'at', 'the', 'door.'], ["She's", 'lost', 'her', 'car', 'keys.'], ['You', 'are', 'as', 'white', 'as', 'a', 'sheet.'], ['The', 'books', 'are', 'on', 'the', 'bench.'], ['He', 'is', 'always', 'making', 'a', 'fool', 'of', 'me.'], ['I', 'just', 'want', 'to', 'talk', 'with', 'you', 'a', 'little', 'while.'], ['I', "don't", 'know', 'what', "I'm", 'doing', 'anymore.'], ['Do', 'you', 'know', 'why', "she's", 'so', 'angry?'], ['They', 'released', 'the', 'prisoner.'], ['What', 'fun!'], ['How', 'often', 'do', 'you', 'shower?'], ['I', 'have', 'a', 'lot', 'of', 'work', 'to', 'do.'], ['You', 'look', 'depressed.', 'Did', 'something', 'happen?'], ['I', 'like', 'the', 'way', 'you', 'walk.'], ['She', 'apologized', 'to', 'him', 'for', 'being', 'late.'], ['I', "don't", 'quite', 'believe', 'what', 'he', 'says.'], ['I', "don't", 'want', 'to', 'throw', 'that', 'away.'], ['Are', 'you', 'sure', "there's", 'no', 'meat', 'in', 'this', 'soup?'], ['He', 'played', 'tennis', 'all', 'day', 'long.'], ['I', 'like', 'that', 'song.'], ['They', 'had', 'an', 'argument.'], ['I', 'was', 'late', 'as', 'usual.'], ['That', 'should', 'do', 'it.'], ['I', "didn't", 'know', 'that', 'you', 'cared', 'that', 'much.'], ['I', 'told', 'her', 'that', 'if', 'I', 'could', 'be', 'of', 'any', 'use', 'I', 'would', 'be', 'glad', 'to', 'help.'], ['It', 'depends', 'on', 'the', 'situation.'], ['We', 'were', 'playing', 'chess.'], ['What', 'are', 'you', 'going', 'to', 'do', 'next?'], ['Why', 'do', 'you', 'want', 'to', 'go', 'out', 'with', 'me?'], ["You'll", 'sleep', 'better', 'tonight.'], ['Have', 'you', 'even', 'heard', 'a', 'word', "I've", 'said?'], ['I', "don't", 'know', 'where', 'to', 'wait', 'for', 'her.'], ['The', 'old', 'couple', 'had', 'no', 'children.'], ['When', 'does', 'it', 'end?'], ['They', "can't", 'all', 'be', 'full.'], ['You', "don't", 'have', 'to', 'go.'], ['Tom', 'has', 'charisma.'], ["That's", 'my', 'real', 'name.'], ['I', 'have', 'small', 'hands.'], ['This', 'is', 'a', 'difficult', 'time', 'for', 'all', 'of', 'us.'], ["I'd", 'like', 'to', 'earn', 'my', 'keep', 'while', "I'm", 'staying', 'with', 'you.'], ['I', 'am', 'a', 'university', 'student.'], ['Tom', 'wished', 'he', "could've", 'stayed', 'longer.'], ['So', 'how', 'did', 'the', 'date', 'go?'], ['After', 'work,', 'Tom', 'is', 'always', 'tired.'], ["Don't", 'come', 'near', 'me.', 'I', 'have', 'a', 'cold.'], ["I'm", 'surprised', 'Tom', 'remembers', 'us.'], ["I'd", 'be', 'delighted', 'if', 'they', 'asked', 'me', 'to', 'give', 'a', 'speech.'], ['I', "don't", 'like', 'Tom', 'very', 'much,', 'to', 'be', 'honest.'], ['Your', 'office', 'is', 'nicer', 'than', 'mine.'], ['People', 'are', 'stupid.'], ['I', "don't", 'like', 'people', 'like', 'Tom.'], ["Don't", 'change', 'a', 'thing.'], ['What', 'do', 'I', 'care?'], ['What', 'are', 'your', 'thoughts', 'on', 'this?'], ['He', 'took', 'over', 'the', 'business', 'after', 'his', 'father', 'died.'], ['How', 'far', 'do', 'you', 'live', 'from', 'here?'], ['I', 'like', 'women.'], ['You', "didn't", 'eat', 'much', 'lunch,', 'did', 'you?'], ['Books', 'such', 'as', 'these', 'are', 'too', 'difficult', 'for', 'him.'], ['They', "don't", 'know', 'yet.'], ['Would', 'you', 'open', 'the', 'door?'], ["You'd", 'be', 'better', 'off', 'without', 'me.'], ['Will', 'you', 'join', 'us?'], ['Sorry,', 'I', "didn't", 'hear', 'you.'], ['According', 'to', 'this', 'magazine,', 'my', 'favorite', 'actress', 'will', 'marry', 'a', 'jazz', 'musician', 'next', 'spring.'], ['I', 'really', 'like', 'what', 'I', 'do.'], ['I', 'work', 'at', 'a', 'zoo.'], ['I', 'gave', 'him', 'my', 'address.'], ['We', 'ran', 'after', 'the', 'thief.'], ['There', 'are', 'a', 'few', 'apples', 'on', 'the', 'tree,', "aren't", 'there?'], ['I', 'have', 'a', 'splinter', 'in', 'the', 'palm', 'of', 'my', 'hand.'], ['This', 'carpet', 'is', 'beautiful.'], ['Is', 'there', 'anybody', 'who', 'can', 'drive', 'a', 'car?'], ['Don’t', 'post', 'drunk', 'pictures', 'on', 'Facebook', 'or', 'Twitter.'], ["I'm", 'not', 'sure', "it's", 'a', 'good', 'idea.'], ['Do', 'you', 'want', 'to', 'join', 'them?'], ["I'll", 'try', 'to', 'contact', 'Tom.'], ['I', 'thought', 'you', 'were', 'broke.'], ['Are', 'you', 'sure', "you're", 'warm', 'enough?'], ['Translating', 'this', 'sentence', 'will', 'be', 'very', 'easy.'], ["I've", 'got', 'a', 'big', 'surprise', 'for', 'you.'], ['Are', 'you', 'seriously', 'thinking', 'about', 'quitting', 'your', 'job?'], ["That's", 'all', 'I', 'know', 'for', 'sure.'], ['I', "wasn't", 'home.'], ['He', 'was', 'in', 'the', 'hot', 'seat.'], ['I', 'just', 'want', 'a', 'little', 'more', 'of', 'that.'], ['He', 'will', 'be', 'here', 'soon.'], ['Tom', 'told', 'Mary', 'he', "wasn't", 'married.'], ['I', 'know', 'you', 'want', 'to', 'help', 'him.'], ['I', "don't", 'know', "what's", 'wrong.'], ['You', "don't", 'have', 'to', 'go.'], ["I'll", 'do', 'it,', 'if', 'you', 'insist.'], ['We', 'need', 'supplies.'], ['Is', 'college', 'worth', 'it?'], ['I', "don't", 'want', 'to', 'know', 'what', 'you', 'did', 'yesterday.'], ["I'm", 'a', 'trainee.'], ['The', 'explorers', 'cut', 'their', 'way', 'through', 'the', 'forest.'], ['He', 'asked', 'his', 'friends', 'for', 'help.'], ["I'm", 'very', 'concerned', 'about', 'her', 'illness.'], ['He', 'became', 'a', 'Catholic.'], ['Tom', 'refused', 'to', 'listen', 'to', 'Mary.'], ['I', 'want', 'for', 'you', 'and', 'me', 'to', 'be', 'happy.'], ['This', 'has', 'got', 'to', 'be', 'a', 'joke.'], ["I'm", 'glad', 'you', 'could', 'join', 'us.'], ['I', 'put', 'the', 'money', 'into', 'the', 'safe.'], ['You', 'can', 'run,', 'but', 'you', "can't", 'hide.'], ['Dust', 'had', 'accumulated', 'on', 'the', 'desk.'], ['Maybe', 'we', 'should', 'try', 'to', 'change', 'that', 'law.'], ['If', 'the', 'spaghetti', 'sticks', 'when', 'you', 'throw', 'it', 'against', 'the', 'wall,', "it's", 'done.'], ['He', 'tried', 'opening', 'the', 'door.'], ["Don't", 'make', 'fun', 'of', 'children.'], ['We', 'are', 'still', 'clinging', 'to', 'the', 'dreams', 'of', 'our', 'youth.'], ['There', 'are', 'some', 'things', 'that', 'I', "don't", 'understand.'], ['Do', 'you', 'really', 'think', 'Tom', 'is', 'better', 'than', 'I', 'am?'], ['Water', 'is', 'a', 'liquid.'], ['Tom', "didn't", 'leave', 'Mary.'], ['Please', 'remain', 'seated.'], ['Tom', 'often', 'mispronounces', "people's", 'names.'], ['You', "don't", 'have', 'a', 'fever.'], ['I', 'woke', 'you', 'up.'], ['I', 'only', 'got', 'your', 'letter', 'yesterday.'], ['He', 'is', 'a', 'heroin', 'addict.'], ['I', "don't", 'know', 'if', 'we', 'want', 'to', 'do', 'that.'], ['You', 'look', 'amazing.'], ['My', 'stepfather', 'was', 'diabetic.'], ['The', 'point', 'is,', 'why', "didn't", 'you', 'tell', 'me?'], ['Since', 'I', 'had', 'a', 'cold,', 'I', 'was', 'absent', 'from', 'school.'], ['Are', 'you', 'going', 'by', 'bus', 'or', 'car?'], ['She', "wasn't", 'able', 'to', 'contact', 'him', 'by', 'phone.'], ["I'm", 'not', 'here.'], ['Did', 'the', 'phone', 'wake', 'you?'], ['There', 'is', 'a', 'boy', 'near', 'the', 'door.'], ["Don't", 'be', 'upset.'], ["You're", 'lost.'], ['I', 'like', 'him', 'because', 'he', 'is', 'honest.'], ['Very', 'few', 'fat', 'men', 'have', 'long', 'noses.'], ["I'll", 'find', 'friends', 'wherever', 'I', 'go.'], ['They', 'loaded', 'the', 'truck.'], ['There', 'are', 'two', 'possibilities.'], ['He', "can't", 'drive.'], ['It', 'is', 'a', 'kind', 'of', 'orange.'], ['That', 'has', 'allowed', 'the', 'creation', 'of', '4.000', 'new', 'jobs.'], ['The', 'blue', 'lines', 'on', 'the', 'map', 'represent', 'rivers.'], ['Would', 'you', 'please', 'lock', 'the', 'door?'], ['Several', 'dozen', 'young', 'people', 'participated', 'in', 'the', 'demonstration.'], ["Don't", 'I', 'have', 'some', 'say', 'in', 'this?'], ['My', 'father', 'is', 'interested', 'in', 'ancient', 'history.'], ['What', 'a', 'joke!'], ['Tom', 'was', 'here', 'a', 'minute', 'ago.'], ['Your', 'hands', 'need', 'to', 'be', 'washed.'], ['Have', 'you', 'found', 'a', 'cure?'], ['I', 'want', 'my', 'children', 'to', 'have', 'the', 'best', 'of', 'everything.'], ['They', 'went', 'their', 'separate', 'ways.'], ['Please', 'shut', 'the', 'door', 'behind', 'you.'], ['The', 'train', 'stopped.'], ['I', "don't", 'really', 'know', 'what', 'you', 'mean.'], ['I', 'want', 'you', 'to', 'stop', 'this', 'immediately.'], ['Why', 'were', 'you', 'holding', 'his', 'hand?'], ["I'm", 'not', 'like', 'you.'], ['What', 'I', 'need', 'worst', 'is', 'a', 'haircut.'], ['I', 'just', 'want', 'you', 'to', 'know', "I'm", 'sorry.'], ['Have', 'you', 'ever', 'been', 'betrayed', 'by', 'a', 'friend?'], ['Is', 'there', 'somebody', 'you', 'want', 'to', 'talk', 'to?'], ['I', 'appreciate', 'your', 'support.'], ['Opinion', 'is', 'divided', 'on', 'this', 'point.'], ["That's", 'a', 'great', 'poem.'], ['How', 'old', 'is', 'this', 'tree?'], ['I', "can't", 'agree', 'with', 'you.'], ['We', "weren't", 'as', 'busy', 'as', 'I', 'thought', "we'd", 'be.'], ['Be', 'yourself.'], ['I', 'know', 'Tom', 'is', 'a', 'genius.'], ['I', 'hope', "you're", 'not', 'alone.'], ['What', 'did', 'you', 'think', 'of', 'him?'], ["I've", 'been', 'looking', 'all', 'over', 'for', 'you.'], ["You're", 'very', 'wise.'], ['He', 'said', 'that', 'he', 'had', 'seen', 'the', 'picture', 'before.'], ["I'm", 'sorry', 'to', 'be', 'so', 'late.', 'The', 'meeting', 'completely', 'slipped', 'my', 'mind.'], ['Tom', 'used', 'to', 'be', 'an', 'electrician.'], ['Your', 'drinking', 'is', 'starting', 'to', 'affect', 'the', 'performance', 'of', 'your', 'duties.'], ['He', 'speaks', 'English', 'as', 'if', 'he', 'were', 'an', 'American.'], ['Hey,', 'what', 'are', 'you', 'guys', 'talking', 'about?'], ['Look', 'out', 'for', 'pickpockets.'], ["I'm", 'thirty.'], ['How', 'long', 'did', 'you', 'stay', 'in', 'Canada?'], ['Empty', 'your', 'pockets', 'and', 'put', 'everything', 'on', 'the', 'table.'], ['They', "could've", 'killed', 'you.'], ['What', 'would', 'you', 'do', 'if', 'you', 'had', 'a', 'billion', 'dollars?'], ['I', "don't", 'like', 'waiting.'], ['I', "can't", 'stand', 'the', 'sight', 'of', 'blood.'], ['Why', 'is', 'she', 'doing', 'this?'], ["I'm", 'not', 'very', 'eager', 'to', 'go.'], ["That's", 'all', 'Tom', 'said.'], ['How', 'many', 'books', 'are', 'there', 'on', 'the', 'table?'], ['Were', 'you', 'busy?'], ['She', 'decided', 'to', 'resign', 'her', 'job.'], ['They', 'accept', 'students', 'like', 'Tom.'], ["I'm", 'paying', 'the', 'phone', 'bill.'], ['I', 'like', 'the', 'way', 'this', 'flower', 'smells.'], ['Tom', 'asked', 'Mary', 'why', 'she', 'was', 'late.'], ['I', 'wanted', 'to', 'see', 'what', 'would', 'happen.'], ["I've", 'decided', 'to', 'go', 'by', 'train.'], ["We'll", 'go', 'to', 'Hong', 'Kong', 'first,', 'and', 'then', "we'll", 'go', 'to', 'Singapore.'], ['I', "don't", 'usually', 'eat', 'breakfast', 'because', "I'd", 'rather', 'sleep', 'as', 'late', 'as', 'I', 'can.'], ['I', 'want', 'three', 'pairs', 'of', 'socks.'], ['He', 'wears', 'expensive', 'clothes', 'and', 'owns', 'a', 'lot', 'of', 'jewelry.'], ["I'd", 'like', 'to', 'help', 'if', 'I', 'can.'], ['He', 'threatened', 'to', 'take', 'everything', 'I', 'own.'], ['You', 'live', 'too', 'far', 'away.'], ['Could', 'you', 'tell', 'me', 'your', 'name', 'again?'], ['You', 'make', 'me', 'sick.'], ['Are', 'you', 'fully', 'recovered?'], ['I', 'got', 'home', 'just', 'before', 'Tom.'], ['He', 'is', 'lying', 'through', 'his', 'teeth.'], ['I', 'was', 'home-schooled.'], ['Girls', 'are', 'crazy.'], ['Human', 'beings,', 'whether', 'they', 'realise', 'it', 'or', 'not,', 'continually', 'seek', 'happiness.'], ['Tom', 'tried', 'to', 'lift', 'the', 'box.'], ['May', 'I', 'borrow', 'your', 'phone?'], ['Can', 'somebody', 'get', 'that?'], ['We', 'are', 'here.'], ['Where', 'have', 'you', 'been', 'up', 'to', 'now?'], ['What', 'Tom', 'did', 'was', 'incredibly', 'stupid.'], ["We're", 'not', 'home.'], ['It', 'is', 'an', 'option.'], ['I', "don't", 'like', 'my', 'job.'], ['I', "don't", 'know', 'when', 'she', 'got', 'married.'], ['We', 'had', 'to', 'wait', 'for', 'him', 'for', 'ten', 'minutes.'], ['We', 'often', 'discuss', 'politics.'], ['She', 'will', 'be', 'here', 'this', 'evening.'], ['This', 'car', 'is', 'fully', 'loaded.'], ['I', 'looked', 'for', 'the', 'key.'], ['Metal', 'contracts', 'when', 'cooled.'], ['Bring', 'him', 'to', 'me.'], ["I'll", 'never', 'be', 'able', 'to', 'do', 'that', 'without', 'your', 'help.'], ['Have', 'a', 'cup', 'of', 'tea,', "won't", 'you?'], ['I', "didn't", 'know', 'you', 'were', 'expecting', 'anyone.'], ["There's", 'a', 'restaurant', 'pretty', 'close', 'to', 'here,', 'but', "it's", 'not', 'very', 'good.'], ['He', 'sat', 'next', 'to', 'her.'], ['I', 'regret', 'losing', 'that', 'opportunity.'], ['Tom', 'died', 'yesterday.'], ['I', 'feel', "it's", 'something', 'I', 'can', 'do.'], ["Isn't", 'that', 'better?'], ['Tom', "doesn't", 'need', 'me.'], ['You', 'have', 'one', 'minute.'], ['Does', 'this', 'look', 'good', 'on', 'me?'], ['Let', 'me', 'do', 'this', 'for', 'you.'], ['Do', 'you', 'think', 'Tom', 'will', 'reach', 'the', 'top', 'of', 'the', 'mountain?'], ['Were', 'you', 'both', 'here', 'yesterday?'], ["I'll", 'never', 'be', 'able', 'to', 'play', 'again.'], ['Am', 'I', 'dreaming?'], ['I', 'prefer', 'warmer', 'weather.'], ["You're", 'not', 'allowed', 'to', 'park', 'here.'], ['Who', 'are', 'you', 'texting?'], ["You're", 'probably', 'too', 'young', 'to', 'understand', 'what', 'is', 'likely', 'to', 'happen', 'next.'], ['Would', 'you', 'please', 'autograph', 'this', 'book?'], ['Tom', 'pulled', 'a', 'box', 'from', 'under', 'the', 'bed.'], ['In', 'judging', 'his', 'work,', 'we', 'must', 'take', 'his', 'lack', 'of', 'experience', 'into', 'account.'], ['Japan', 'and', 'South', 'Korea', 'are', 'neighbors.'], ['I', 'must', 'resist.'], ['Where', 'did', 'you', 'get', 'this', 'information?'], ['I', 'want', 'a', 'round-trip', 'ticket', 'to', 'Chicago.'], ['I', "didn't", 'see', 'Tom', 'yesterday.'], ['School', 'reopens', 'in', 'September.'], ['Are', 'you', 'still', 'scared?'], ['Is', 'that', 'really', 'what', 'you', 'want?'], ['We', 'should', 'probably', 'go.'], ['We', 'used', 'to', 'talk', 'about', 'our', 'future.'], ['There', 'is', 'a', 'little', 'wine', 'left', 'in', 'the', 'bottom', 'of', 'the', 'glass.'], ['He', 'played', 'a', 'key', 'role', 'in', 'the', 'movement.'], ['Which', 'one', 'was', 'it?'], ["There's", 'a', 'body', 'in', 'the', 'trunk', 'of', 'the', 'car.'], ["You're", 'making', 'a', 'huge', 'mistake.'], ["I'm", 'sick', 'and', 'tired', 'of', 'hamburgers.'], ['I', "don't", 'get', 'many', 'visitors.'], ["What's", 'wrong', 'with', 'them?'], ["Let's", 'hope', 'that', "doesn't", 'happen.'], ['Those', 'two', 'children', 'were', 'the', 'same', 'age.'], ['Did', 'you', 'hear', 'that', 'a', 'burglar', 'broke', 'into', 'the', "neighbor's", 'house?'], ['Children', 'grow', 'very', 'quickly.'], ['What', 'do', 'you', 'call', 'this', 'vegetable', 'in', 'English?'], ['Christmas', 'is', 'only', 'three', 'weeks', 'off.'], ["They're", 'out', 'of', 'town.'], ['Can', 'I', 'have', 'your', 'telephone', 'number?'], ['The', 'audience', 'consisted', 'mainly', 'of', 'students.'], ['Our', "cat's", 'fur', 'has', 'lost', 'its', 'luster.'], ["They're", 'not', 'following.'], ['He', "didn't", 'get', 'in', 'until', '2', "o'clock", 'in', 'the', 'morning.'], ['I', "can't", 'live', 'alone.'], ['Have', 'you', 'seen', 'my', 'keys?'], ['She', 'cooks', 'for', 'him', 'every', 'day.'], ['It', 'would', 'only', 'be', 'a', 'waste', 'of', 'time.'], ['I', 'thought', 'you', 'were', 'older', 'than', 'me.'], ['Tom', "doesn't", 'even', 'know', 'my', 'name.'], ['We', 'went', 'as', 'far', 'as', 'Kyoto.'], ["I'd", 'like', 'to', 'shake', 'your', 'hand.'], ['Tom', 'says', "he'll", 'be', 'a', 'bit', 'late.'], ['How', 'do', 'you', 'pronounce', 'your', 'last', 'name?'], ['What', 'a', 'pretty', 'woman!'], ['I', 'baited', 'the', 'hook.'], ["I've", 'had', 'enough.'], ['I', 'hope', "it's", 'better', 'tomorrow.'], ['Tom', "isn't", 'much', 'of', 'a', 'dancer.'], ['Can', 'you', 'still', 'remember', 'the', 'time', 'we', 'first', 'met?'], ['Did', 'you', 'see', 'it?'], ['Would', 'you', 'mind', 'coming', 'earlier', 'next', 'time?'], ['I', 'am', 'at', 'home', 'every', 'evening.'], ['He', 'was', 'jailed', 'on', 'trumped-up', 'charges.'], ["We're", 'already', 'late.'], ['His', 'mother', 'looks', 'young', 'for', 'her', 'age.'], ['I', 'saw', 'you', 'in', 'the', 'park', 'yesterday.'], ['She', 'married', 'a', 'sailor.'], ['Have', 'some', 'pity', 'on', 'me.'], ['This', 'engine', 'works', 'well.'], ["That's", 'pseudoscience.'], ['Take', 'your', 'hands', 'out', 'of', 'your', 'pockets.'], ['Why', "don't", 'you', 'stay', 'here?'], ['Tom', 'hid', 'under', 'the', 'table.'], ["What's", 'wrong?'], ["I've", 'got', 'a', 'plan.'], ['I', 'noticed', 'the', 'difference.'], ['The', 'athletic', 'meet', 'was', 'postponed', 'due', 'to', 'rain.'], ['I', "can't", 'think', 'of', 'any', 'other', 'plan.'], ['Are', 'you', 'traveling', 'alone?'], ["We're", 'powerless.'], ['This', "won't", 'be', 'easy.'], ["Let's", 'find', 'a', 'safe', 'place', 'to', 'hide.'], ['Please', 'stop.'], ['Is', 'there', 'a', 'man', 'in', 'your', 'life?'], ['When', 'does', 'school', 'let', 'out', 'for', 'the', 'holidays?'], ['The', 'weather', 'was', 'gorgeous.'], ["I'm", 'certain', 'of', 'that.'], ['I', "don't", 'know', "what's", 'in', 'this', 'box.'], ['Which', 'doctor', 'is', 'attending', 'you?'], ['I', 'just', 'know', 'that', 'I', "don't", 'want', 'to', 'be', 'married', 'to', 'you.'], ['This', 'is', 'your', 'captain', 'speaking.'], ['These', 'are', 'questions', 'that', 'matter.'], ['That', 'is', 'insane.', 'Only', 'a', 'fool', 'would', 'believe', 'that.'], ['None', 'of', 'us', 'are', 'cowards.'], ["I'll", 'be', 'thinking', 'of', 'you', 'every', 'day', 'while', "I'm", 'away.'], ['I', "don't", 'have', 'any', 'friends.'], ['We', 'have', 'lots', 'to', 'do.'], ['Nobody', 'in', 'the', 'world', 'wants', 'war.'], ['Did', 'you', 'clean', 'your', 'room?'], ['I', 'can', 'hold', 'my', 'breath', 'for', 'a', 'long', 'time.'], ['There', 'is', 'no', 'solution.'], ["They're", 'cool.'], ["I'm", 'taking', 'a', 'shower', 'right', 'now.'], ['Can', 'you', 'tell', 'us', 'what', 'the', 'ingredients', 'are?'], ["Nothing's", 'changed', 'yet.'], ['Can', 'you', 'tell', 'the', 'difference', 'between', 'an', 'American', 'and', 'a', 'Canadian?'], ["Aren't", 'you', 'thirsty?'], ["It's", 'no', 'use', 'trying', 'to', 'intimidate', 'me.'], ['Did', 'I', 'embarrass', 'you?'], ['How', 'much', 'did', 'these', 'glasses', 'cost?'], ['Who', 'will', 'do', 'it?'], ['Do', 'you', 'still', 'believe', 'I', 'killed', 'my', 'brother?'], ['We', 'do', 'need', 'your', 'advice.'], ['Roll', 'up', 'your', 'right', 'sleeve.'], ['He', 'watches', 'TV', 'every', 'day.'], ["I've", 'tried', 'to', 'be', 'your', 'friend.'], ['She', 'acted', 'like', 'a', 'real', 'baby.'], ['Nobody', 'wants', 'to', 'look', 'stupid.'], ["I'm", 'going', 'to', 'be', 'gone', 'soon.'], ["Don't", 'write', 'in', 'ink.'], ["I'm", 'not', 'so', 'sure.'], ['I', "don't", 'want', 'to', 'fight', 'you.'], ["I'm", 'sorry,', 'I', "didn't", 'recognize', 'you.'], ["We're", 'just', 'lucky.'], ['This', 'is', 'bad', 'news.'], ["You'll", 'never', 'be', 'young', 'again.'], ['Did', 'you', 'know', 'this', 'was', 'coming', 'down?'], ['I', 'met', 'an', 'old', 'friend', 'by', 'chance', 'in', 'Kyoto.'], ['I', 'want', 'you', 'out', 'of', 'my', 'life.'], ['Does', 'Tom', 'smoke?'], ['I', 'do', 'not', 'mind', 'what', 'people', 'say.'], ['I', 'forgot', 'to', 'tell', 'you', 'who', 'would', 'meet', 'you', 'at', 'the', 'station.'], ['I', 'was', 'attacked.'], ['I', 'have', 'an', 'appointment', 'at', '2:30.'], ['Let', 'them', 'do', 'their', 'jobs.'], ["Don't", 'ask', 'who', 'she', 'is.'], ['I', "don't", 'do', 'this', 'for', 'the', 'money.'], ['I', 'wanted', 'to', 'make', 'sure', 'you', 'were', 'all', 'right.'], ['You', "don't", 'stand', 'a', 'chance.'], ['She', 'demanded', 'to', 'see', 'the', 'manager.'], ['I', "can't", 'use', 'it.'], ['You', 'always', 'were', 'good', 'at', 'math.'], ['It', 'was', 'a', 'satisfying', 'meal.'], ['I', 'guess', 'I', 'was', 'wrong.'], ['How', 'much', 'do', 'you', 'have', 'invested?'], ['There', 'was', 'a', 'problem', 'with', 'the', 'thermostat.'], ['I', 'want', 'to', 'buy', 'a', 'new', 'bicycle.'], ['I', 'want', 'people', 'to', 'know', 'the', 'truth.'], ['Tell', 'me', 'why', 'I', "shouldn't", 'fire', 'you.'], ['I', 'have', 'a', 'good', 'salary.'], ['We', 'had', 'a', 'slight', 'difference', 'of', 'opinion.'], ['Have', 'you', 'given', 'any', 'thought', 'to', 'having', 'dinner', 'with', 'me?'], ["It's", 'very', 'hot,', "isn't", 'it?'], ['His', 'story', 'was', 'too', 'ridiculous', 'for', 'anyone', 'to', 'believe.'], ["It's", 'close', 'to', 'my', 'house.'], ['I', 'am', 'willing', 'to', 'help', 'you.'], ['No', 'one', 'arrived.'], ['This', 'time,', "you've", 'gone', 'too', 'far.'], ["I'm", 'trying', 'to', 'figure', 'out', 'what', 'you', 'do', 'for', 'fun.'], ['She', 'is', 'guilty', 'of', 'theft.'], ["I've", 'got', 'friends', 'in', 'Australia.'], ['I', "didn't", 'know', 'about', 'that', 'until', 'quite', 'recently.'], ['This', 'tape', "isn't", 'sticky.'], ['Cancer', 'can', 'be', 'cured', 'if', 'discovered', 'in', 'time.'], ['I', 'stopped', 'the', 'car.'], ["I'd", 'like', 'to', 'ask', 'you', 'a', 'few', 'questions.'], ["Don't", 'forget', 'to', 'take', 'out', 'the', 'garbage.'], ['When', 'I', 'was', 'your', 'age,', 'Pluto', 'was', 'a', 'planet.'], ['Can', 'I', 'get', 'an', 'advance', 'on', 'my', 'salary?'], ['Why', "don't", 'you', 'quit?'], ["I'm", 'listening', 'to', 'you.'], ['New', 'York', 'City', 'policemen', 'wear', 'dark', 'blue', 'uniforms.'], ['Why', "don't", 'you', 'leave', 'Tom?'], ["I'm", 'sore', 'all', 'over.'], ['All', 'you', 'have', 'to', 'do', 'is', 'to', 'hand', 'this', 'book', 'to', 'him.'], ['The', 'teacher', 'and', 'I', 'sat', 'face', 'to', 'face.'], ["I've", 'never', 'seen', 'a', 'whale', 'that', 'big.'], ['Could', 'you', 'tell', 'us', 'what', 'happened', 'next?'], ['He', 'earns', 'his', 'living', 'by', 'teaching', 'English.'], ['You', "don't", 'have', 'the', 'guts.'], ['You', 'must', 'be', 'terrified.'], ['I', "don't", 'really', 'have', 'a', 'gun.'], ['That', 'made', 'me', 'very', 'sad.'], ['I', 'love', 'you', 'like', 'a', 'son.'], ['English', 'is', 'taught', 'in', 'a', 'lot', 'of', 'countries.'], ["I'm", 'surprised', 'this', 'machine', 'still', 'works.'], ['You', 'may', 'go', 'in', 'now.'], ['Tell', 'Tom', "what's", 'going', 'to', 'happen', 'to', 'him', 'if', 'he', 'does', 'that.'], ['I', "didn't", 'use', 'to', 'like', 'wine,', 'but', 'now', 'I', 'like', 'it', 'a', 'lot.'], ['I', 'know', 'he', 'will', 'only', 'continue', 'disappointing', 'me,', 'but', 'I', "can't", 'help', 'loving', 'him.'], ['I', 'like', 'reading', 'books.'], ['I', 'never', 'thought', "I'd", 'want', 'to', 'buy', 'an', 'iPad.'], ['The', 'child', 'threw', 'a', 'stone', 'at', 'the', 'dog.'], ['He', 'wants', 'to', 'go.'], ["Don't", 'you', 'know', 'that', 'he', 'passed', 'away', 'two', 'years', 'ago?'], ['Wow!'], ['Obviously,', "there's", 'a', 'problem.'], ["I've", 'taken', 'care', 'of', 'everything.'], ['I', "don't", 'understand', 'why', 'this', 'has', 'to', 'be', 'done.'], ['Get', 'dressed.'], ["I'm", 'glad', 'to', 'see', 'that', "you're", 'happy.'], ['This', 'is', 'the', 'most', 'exciting', 'book', 'that', 'I', 'have', 'ever', 'read.'], ['I', 'am', 'happy', 'to', 'hear', 'your', 'voice.'], ['Tell', 'Tom', 'I', "don't", 'know', 'where', 'he', 'parked', 'his', 'car.'], ['Can', 'I', 'offer', 'you', 'guys', 'a', 'ride?'], ['They', 'were', 'too', 'tired', 'to', 'fight.'], ['I', "don't", 'like', 'that.'], ["We're", 'still', 'married.'], ['Were', 'you', 'sincere?'], ['You', 'are', 'gorgeous.'], ['How', 'far', 'are', 'you', 'prepared', 'to', 'go?'], ['She', 'was', 'never', 'seen', 'again', 'after', 'that.'], ['Tom', 'said', "he'd", 'rather', 'not', 'go', 'to', "Mary's", 'party.'], ['Our', 'baby', "isn't", 'speaking', 'yet.'], ['Who', 'was', 'responsible?'], ['Sorry,', 'I', "didn't", 'mean', 'to', 'interrupt.'], ['Who', 'says', 'it', "isn't", 'fixed?'], ['She', 'hired', 'him', 'as', 'an', 'interpreter', 'because', 'she', 'had', 'heard', 'that', 'he', 'was', 'the', 'best.'], ["They're", 'in', 'trouble.'], ['Could', 'you', 'please', 'explain', "what's", 'going', 'on', 'here?'], ['We', "didn't", 'stay', 'in', 'Boston.'], ["We'll", 'hurry.'], ["It's", 'already', 'eleven.'], ["You're", 'kind', 'of', 'cute', 'when', "you're", 'mad.'], ['It', 'is', 'Monday', 'today.'], ['Tom', 'waited', 'for', 'Mary', 'for', 'three', 'hours.'], ["I'm", 'beginning', 'to', 'lose', 'patience', 'with', 'Tom.'], ['We', 'elected', 'him', 'to', 'be', 'mayor.'], ['Try', 'some', 'of', 'this.'], ["We're", 'getting', 'closer.'], ['Do', 'all', 'of', 'you', 'speak', 'French?'], ['She', "didn't", 'want', 'him', 'to', 'play', 'poker.'], ['I', 'want', 'to', 'cheer', 'you', 'up.'], ['I', 'believe', 'in', 'my', 'teammates.'], ['Make', 'it', 'quick.'], ["We're", 'Canadians.'], ["That's", 'it.', "I've", 'done', 'everything', 'I', 'can.'], ['I', 'know', 'Tom', 'is', 'afraid', 'of', 'me.'], ["She's", 'nice', 'to', 'me.'], ['I', 'know', 'Tom', 'is', 'a', 'liar.'], ['I', 'thought', 'you', 'were', 'working.'], ['Everything', 'is', 'going', 'fine.'], ['I', "should've", 'thought', 'of', 'this', 'sooner.'], ["I'll", 'leave', 'it', 'up', 'to', 'you.'], ['Was', 'it', 'necessary?'], ['I', 'have', 'a', 'ringing', 'in', 'my', 'ears.'], ['I', 'faxed', 'Tom', 'the', 'information', 'he', 'asked', 'for.'], ['Your', 'memory', 'is', 'as', 'good', 'as', 'mine,', 'I', 'think.'], ['The', 'book', 'is', 'on', 'the', 'table.'], ['He', 'stood', 'with', 'his', 'feet', 'wide', 'apart.'], ["I'd", 'say', 'you', 'did', 'well.'], ['Please', 'reconsider.'], ['Was', 'it', 'a', 'lie', 'when', 'you', 'said', 'you', 'loved', 'me?'], ["I've", 'been', 'waiting', 'for', 'a', 'friend', 'of', 'mine', 'for', 'an', 'hour.'], ["She's", 'not', 'penniless.'], ['She', "wouldn't", 'allow', 'me', 'to', 'read', 'the', 'letter.'], ["It's", 'conceivable.'], ['I', 'almost', 'believe', 'you.'], ['I', 'found', 'it', 'necessary', 'to', 'get', 'assistance.'], ['We', 'need', 'somebody.'], ['What', 'kind', 'of', 'songs', 'are', 'popular', 'these', 'days?'], ['Do', 'you', 'want', 'another', 'piece', 'of', 'pie?'], ["I've", 'heard', 'that', 'some', 'people', 'sleep', 'in', 'bathtubs.'], ['I', 'told', 'Tom', 'how', 'Mary', 'had', 'been', 'injured.'], ['Is', 'that', 'a', 'fact?'], ['Why', 'are', 'you', 'being', 'weird?'], ['I', 'bought', 'a', 'dog', 'for', 'him.'], ['Which', "one's", 'the', 'new', 'one?'], ['Our', 'debt', 'is', 'more', 'than', 'we', 'can', 'pay.'], ["Tom's", 'packing.'], ['I', "don't", 'know', 'much', 'about', 'your', 'family.'], ['I', 'can', 'read', 'English,', 'but', 'I', "can't", 'speak', 'it.'], ['At', 'the', 'start', 'of', 'every', 'weekend,', 'I', 'am', 'both', 'tired', 'and', 'happy.'], ['Tom', 'really', 'sounds', 'upset.'], ['It', 'rained', 'a', 'lot', 'that', 'winter.'], ["Where's", 'the', 'light', 'switch?'], ['That', 'was', 'some', 'pretty', 'good', 'advice.'], ['A', 'tree', 'is', 'known', 'by', 'its', 'fruit.'], ['Up', 'until', 'now,', "they've", 'been', 'good', 'neighbors.'], ['Brush', 'your', 'teeth.'], ['I', 'was', 'as', 'surprised', 'as', 'you.'], ['She', 'told', 'me', 'she', 'loved', 'me.'], ['There', 'is', 'one', 'less.'], ["You'll", 'be', 'crying', 'before', 'long.'], ["You're", 'preaching', 'to', 'the', 'choir.'], ['They', 'could', 'not', 'get', 'there', 'quickly.'], ['"I', 'would', 'love', 'to', 'go', 'to', 'the', 'dance', 'with', 'you."', '"Really?', 'You', 'would?"'], ['I', 'love', 'you', 'with', 'all', 'my', 'heart.'], ['How', 'far', 'is', 'it', 'from', 'the', 'airport', 'to', 'the', 'hotel?'], ['I', "don't", 'know', 'how', 'to', 'drive', 'a', 'car.'], ['I', 'heard', 'the', 'song', 'sung', 'in', 'French.'], ['They', 'will', 'be', 'safe', 'with', 'her.'], ["I've", 'completely', 'recovered.'], ['It', "doesn't", 'look', 'right.'], ['In', 'the', 'future,', 'you', 'have', 'to', 'get', 'here', 'on', 'time.'], ['Hand', 'me', 'that', 'phone.'], ['I', "should've", 'bought', 'a', 'present', 'for', 'Tom.'], ["You'll", 'have', 'a', 'rough', 'time.'], ['I', 'just', 'figured', 'out', 'who', 'you', 'are.'], ["Don't", 'you', 'worry', 'about', 'a', 'thing.'], ['This', 'is', 'the', 'perfect', 'place.'], ['I', 'told', 'you', "I'm", 'not', 'drunk.'], ['I', 'guess', 'I', 'should', 'have', 'read', 'it', 'more', 'carefully.'], ['How', 'many', 'fingers', 'am', 'I', 'holding', 'up?'], ['She', 'turned', 'pale', 'when', 'she', 'heard', 'that', 'news.'], ["You've", 'turned', 'up', 'at', 'the', 'right', 'moment.'], ['Would', 'you', 'like', 'some', 'more', 'tea?'], ['What', 'natural', 'foods', 'help', 'curb', 'the', 'appetite?'], ['It', 'was', 'no', 'laughing', 'matter.'], ["We're", 'late.'], ['Do', 'you', 'enjoy', 'talking?'], ['We', "don't", 'need', 'to', 'do', 'this', 'every', 'day.'], ['Tom', "shouldn't", 'have', 'told', 'me.'], ['My', 'father', 'has', 'been', 'dead', 'for', 'ten', 'years.'], ['Tom', "isn't", 'really', 'a', 'teacher.'], ['Your', 'wristwatch', 'is', 'on', 'the', 'table.'], ['Someone', 'is', 'at', 'the', 'door.'], ['I', "didn't", 'think', "you'd", 'let', 'me', 'do', 'that.'], ['I', 'had', 'no', 'other', 'choice', 'but', 'to', 'take', 'him', 'at', 'his', 'word.'], ['Wait', 'here', 'until', 'I', 'come', 'back.'], ['I', "don't", 'know', 'if', 'I', 'want', 'to', 'do', 'that.'], ['Where', 'is', 'the', 'Greek', 'embassy?'], ["That's", 'very', 'sweet', 'of', 'you.'], ['I', 'think', 'you', 'know', 'what', "I'm", 'talking', 'about.'], ["You're", 'very', 'lonely.'], ['I', 'came', 'here', 'when', 'I', 'was', 'four.'], ['I', "won't", 'bore', 'you', 'with', 'the', 'details.'], ['I', 'feel', 'like', 'I', 'know', 'you', 'already.'], ['She', 'has', 'a', 'beautiful', 'tan.'], ['I', 'wish', 'the', 'rain', 'would', 'stop.'], ['I', 'think', 'maybe', 'we', 'should', 'go.'], ['He', 'decided', 'not', 'to', 'go.'], ["You're", 'boring.'], ['I', 'get', 'dizzy', 'when', 'I', 'stand', 'up.'], ['Please', 'remind', 'me', 'to', 'write', 'a', 'letter', 'tomorrow.'], ['I', 'was', 'born', 'and', 'brought', 'up', 'in', 'Tokyo.'], ['I', "didn't", 'know', 'she', 'was', 'married.'], ['I', 'want', 'to', 'become', 'a', 'doctor.'], ["I'll", 'make', 'a', 'reservation.'], ['How', 'do', 'you', 'like', 'New', 'York?'], ['Tom', 'has', 'a', 'terrible', 'secret.'], ['How', 'do', 'I', 'eat', 'this?'], ['May', 'I', 'share', 'your', 'umbrella?'], ['Our', 'garden', 'was', 'full', 'of', 'weeds.'], ['Is', 'it', 'something', 'important?'], ['Why', 'are', 'you', 'picking', 'a', 'fight', 'with', 'me?'], ["I'd", 'like', 'to', 'invite', 'you', 'to', 'dinner.'], ['My', 'lawyer', 'is', 'on', 'his', 'way.'], ["You're", 'the', 'only', 'one', 'who', 'can', 'help', 'me.'], ["Who's", 'at', 'home?'], ['This', 'is', 'bad.'], ["It's", 'in', 'my', 'jacket', 'pocket.'], ['Space', 'travel', 'will', 'be', 'commonplace', 'some', 'time', 'in', 'the', 'future.'], ['I', "didn't", 'want', 'to', 'disappoint', 'my', 'parents.'], ['The', 'problem', 'is', "you're", 'not', 'Canadian.'], ["I'm", 'not', 'an', 'alcoholic.'], ['I', 'often', 'go', 'fishing', 'in', 'that', 'river.'], ['What', 'would', 'you', 'do?'], ['What', 'do', 'you', 'want', 'to', 'do', 'tomorrow?'], ['Tom', "couldn't", 'help', 'but', 'notice', 'all', 'the', 'beautiful', 'women', 'on', 'the', 'beach.'], ['We', 'have', 'witnesses.'], ['Do', 'you', 'want', 'the', 'details', 'now?'], ["I'd", 'like', 'you', 'to', 'do', 'your', 'best.'], ["There's", 'a', 'good', 'chance', 'that', "he'll", 'come.'], ['I', "wasn't", 'fast', 'enough.'], ['I', 'need', 'a', 'tissue.'], ['What', 'seems', 'simple', 'to', 'you', 'seems', 'complex', 'to', 'me.'], ['I', 'hesitated.'], ['This', 'dictionary', 'is', 'mine.'], ['He', 'drew', 'a', 'straight', 'line', 'with', 'his', 'pencil.'], ['Tom', 'is', 'violent', 'and', 'dangerous.'], ['At', 'that', 'time,', 'she', 'was', 'bathing', 'in', 'the', 'sun.'], ['Can', 'I', 'continue', 'my', 'trip?'], ['You', "can't", 'be', 'serious.'], ['Tom', "wouldn't", 'have', 'done', 'that.'], ['I', 'think', 'we', 'still', 'have', 'plenty', 'of', 'time.'], ['It', 'is', 'good', 'for', 'us', 'to', 'understand', 'other', 'cultures.'], ["I'll", 'just', 'have', 'one', 'or', 'two', 'beers.'], ["There's", 'something', 'else', 'in', 'the', 'drawer.'], ['I', 'love', 'bearded', 'men.'], ['Maybe', 'I', "wasn't", 'supposed', 'to', 'do', 'that.'], ['You', 'said', 'that', 'you', 'were', 'here', 'yesterday.'], ['It', 'was', 'worth', 'every', 'penny.'], ['He', 'feels', 'hurt.'], ['She', 'has', 'been', 'sick', 'since', 'last', 'Wednesday.'], ['You', 'are', 'not', 'to', 'leave', 'this', 'room.'], ['What', 'is', 'the', 'most', 'romantic', 'city', 'in', 'the', 'world?'], ['You', 'should', 'have', 'breakfast', 'every', 'day.'], ['Please', 'keep', 'me', 'informed.'], ["It's", 'worse', 'than', 'I', 'thought.'], ['I', 'felt', 'dumb.'], ['It', 'may', 'be', 'the', 'last', 'time.'], ['Could', 'I', 'talk', 'to', 'the', 'two', 'of', 'you', 'alone?'], ['Let', 'us', 'do', 'the', 'work.'], ['Tom', 'has', 'nothing', 'to', 'do', 'with', 'it.'], ['I', 'went', 'to', 'school.'], ['I', 'made', 'it', 'myself.'], ['Do', 'you', 'drink', 'wine?'], ['Pardon', 'me?'], ["I'm", 'living', 'in', 'the', 'city.'], ['How', 'do', 'I', 'thank', 'you?'], ["You'll", 'be', 'the', 'first', 'to', 'know.'], ['That', 'helps', 'a', 'lot.'], ['Our', 'school', 'prohibits', 'us', 'from', 'going', 'to', 'the', 'movies', 'alone.'], ['I', "don't", 'have', 'a', 'printer.'], ['Did', 'you', 'find', 'your', 'purse?'], ['She', 'avoided', 'answering', 'my', 'questions.'], ['Why', 'do', 'people', 'kill', 'themselves?'], ['You', 'should', 'wear', 'your', 'hair', 'down', 'more', 'often.', 'It', 'looks', 'great', 'that', 'way.'], ['I', 'know', "you're", 'not', 'serious.'], ['You', 'must', 'be', 'less', 'impatient.'], ['Tom', 'said', "he'd", 'play', 'tennis', 'with', 'us.'], ['Tom', 'said', 'that', 'he', 'liked', 'me.'], ['She', 'is', 'as', 'busy', 'as', 'a', 'bee.'], ['It', 'is', 'said', 'that', 'the', 'taste', 'of', 'love', 'is', 'bitter.'], ['When', 'did', 'you', 'come', 'to', 'Japan?'], ['I', "didn't", 'realize', 'you', 'were', 'awake.'], ['Most', 'of', 'the', 'plants', 'died.'], ["That's", 'a', 'big', 'step.'], ['Have', 'you', 'ever', 'played', 'baseball?'], ['I', 'was', 'in', 'Tokyo', 'yesterday.'], ['The', 'pain', 'went', 'away', 'because', 'I', 'took', 'the', 'pills.'], ['I', "didn't", 'cheat.'], ['I', 'vowed', 'that', 'I', 'would', 'never', 'speak', 'to', 'her', 'again.'], ['I', 'have', 'an', 'audition', 'today.'], ['It', 'was', 'not', 'until', 'yesterday', 'that', 'I', 'knew', 'the', 'news.'], ['I', 'think', "that's", 'fair.'], ['I', 'was', 'born', 'in', 'Osaka.'], ['I', 'thought', 'you', 'of', 'all', 'people', 'would', 'understand', 'my', 'decision.'], ['We', 'tried', 'to', 'cheer', 'him', 'up.'], ['He', 'climbs', 'trees', 'easily.'], ['They', 'say', 'that', 'you', 'never', 'forget', 'your', 'first', 'love.'], ["You're", 'very', 'wise.'], ['Did', 'anyone', 'hear', 'me?'], ['Your', 'father', 'got', 'a', 'promotion.'], ["What's", 'really', 'going', 'on', 'here?'], ['You', 'may', 'invite', 'whoever', 'you', 'like.'], ['As', 'soon', 'as', 'he', 'returns,', 'I', 'will', 'tell', 'you.'], ['I', "haven't", 'left', 'my', 'room', 'in', 'three', 'days.'], ['Tom', 'is', 'forgetful.'], ["Don't", 'repeat', 'that.'], ["I'm", 'sure', 'you', "won't", 'disappoint', 'me.'], ['Let', 'me', 'carry', 'your', 'suitcase', 'for', 'you.'], ['Sit', 'back,', 'relax', 'and', 'enjoy', 'the', 'ride.'], ['Keep', 'children', 'away', 'from', 'the', 'pond.'], ['Why', 'are', 'we', 'studying', 'French?'], ['I', 'wanna', 'go', 'to', 'Japan.'], ['I', 'never', 'really', 'wanted', 'to', 'do', 'that.'], ['I', 'left', 'you', 'a', 'message', 'at', 'the', 'front', 'desk.'], ["You're", 'very', 'lonely.'], ['Go', 'up', 'the', 'stairs.'], ['Tom', 'asked', 'Mary', 'why', 'John', 'was', 'so', 'unhappy.'], ['Are', 'you', 'happy', 'right', 'now?'], ['The', 'man', "couldn't", 'so', 'much', 'as', 'write', 'his', 'own', 'name.'], ['Can', 'you', 'give', 'me', 'your', 'telephone', 'number,', 'please?'], ['Your', 'opinion', "doesn't", 'matter.'], ['I', "don't", 'need', 'to', 'talk', 'to', 'him.'], ["We're", 'not', 'going', 'to', 'give', 'Tom', 'the', 'money', 'he', 'asked', 'for.'], ['This', 'is', 'taking', 'forever.'], ['I', 'gave', 'you', 'a', 'chance,', 'but', 'you', "didn't", 'take', 'it.'], ['I', 'prefer', 'red', 'wine', 'to', 'white.'], ['He', 'tried', 'with', 'all', 'his', 'might', 'to', 'lift', 'the', 'box.'], ['Has', 'the', 'fever', 'gone', 'down?'], ["I'll", 'go', 'out', 'after', 'having', 'dinner.'], ['I', 'was', 'outraged,', 'too.'], ['I', 'knew', 'that', 'would', 'interest', 'you.'], ['It', 'never', 'occurred', 'to', 'me', 'that', 'I', 'might', 'get', 'arrested.'], ['I', 'just', 'followed', 'the', 'recipe.'], ['I', 'wish', 'you', 'had', 'told', 'me', 'the', 'truth.'], ['I', 'won', 'the', 'raffle.'], ['When', 'did', 'Tom', 'say', 'that?'], ['I', 'know', 'what', "it's", 'like', 'to', 'be', 'heartbroken.'], ['"Ah"', 'is', 'an', 'interjection.'], ['Who', 'do', 'you', 'think', 'came', 'to', 'see', 'me', 'yesterday?'], ['Perhaps', 'you', "won't", 'have', 'to', 'do', 'that.'], ['I', 'need', 'to', 'talk', 'to', 'you', 'in', 'person.'], ['This', 'coffee', 'tastes', 'great.'], ['I', 'suggest', 'trying', 'to', 'get', 'some', 'sleep.'], ['You', 'need', 'to', 'grow', 'up.'], ['Are', 'you', 'going', 'to', 'school?'], ['Have', 'you', 'ever', 'eaten', 'at', 'that', 'restaurant?'], ['Everyone', 'was', 'happy.'], ['Tom', 'kept', 'on', 'crying.'], ['Tom', "didn't", 'want', 'to', 'go', 'to', 'the', 'doctor.'], ['I', "can't", 'believe', 'that', 'you', 'were', 'the', 'smartest', 'kid', 'in', 'your', 'class.'], ['I', "don't", 'believe', 'it.'], ['Can', 'you', 'read', "what's", 'written', 'on', 'the', 'blackboard?'], ['She', 'intended', 'to', 'become', 'an', 'actress.'], ['Can', 'you', 'write', 'a', 'letter', 'in', 'English?'], ['He', 'is', 'sensitive', 'to', 'criticism.'], ['We', 'nearly', 'starved.'], ['How', 'can', 'I', 'ever', 'forgive', 'myself?'], ['He', 'asked', 'his', 'friend', 'for', 'advice.'], ['My', 'daughter', 'went', 'to', 'school.'], ['Do', 'you', 'smoke?'], ['He', 'is', 'said', 'to', 'have', 'died', 'here.'], ['The', 'job', 'is', 'practically', 'done.'], ['Is', 'there', 'something', 'that', 'you', 'want', 'to', 'tell', 'me?'], ['Excuse', 'me', 'sir,', 'could', 'you', 'spare', 'some', 'change?'], ['We', 'went', 'due', 'north.'], ['I', 'have', 'two', 'questions', 'for', 'you.'], ['I', 'need', 'someone', 'to', 'hold', 'me.'], ['A', 'young', 'man', 'asked', 'us', 'if', 'he', 'could', 'succeed', 'as', 'a', 'public', 'speaker.'], ["You're", 'like', 'an', 'old', 'woman.'], ['Complaining', 'about', 'something', "doesn't", 'change', 'anything.'], ['I', "didn't", 'sleep', 'long', 'enough.'], ["Isn't", 'there', 'something', 'we', 'can', 'do?'], ['I', 'should', 'have', 'talked', 'to', 'you', 'first', 'about', 'it.'], ["He's", 'addicted.'], ["It's", 'not', 'a', 'fair', 'fight.'], ['I', 'wanted', 'you', 'to', 'have', 'a', 'little', 'fun.'], ['I', 'think', 'Tom', 'is', 'sick.'], ['I', "didn't", 'mean', 'to', 'make', 'him', 'cry.'], ['Is', "Tom's", 'cat', 'black?'], ['I', 'forgot', 'to', 'buy', 'a', 'birthday', 'cake.'], ["He's", 'a', 'famous', 'artist.'], ['A', 'small', 'gear', 'is', 'missing', 'here.'], ['How', 'much', 'is', 'the', 'tour', 'per', 'person?'], ['I', 'made', 'a', 'serious', 'mistake.'], ['Stop!'], ['They', 'kept', 'it', 'secret', 'that', 'they', 'were', 'in', 'love.'], ["That's", 'completely', 'unfair.'], ['You', 'probably', 'already', 'know', 'about', 'our', 'company.'], ['I', 'never', 'had', 'a', 'girlfriend', 'before.'], ['You', 'are', 'not', 'permitted', 'to', 'bring', 'dogs', 'into', 'this', 'building.'], ['We', 'will', 'start', 'when', 'he', 'comes.'], ['She', 'was', 'a', 'middle-aged', 'woman.'], ['I', 'was', 'able', 'to', 'swim', 'well', 'when', 'I', 'was', 'a', 'child.'], ['If', 'you', "don't", 'want', 'to', 'go,', 'you', "don't", 'have', 'to.'], ['They', 'all', 'have', 'drinks.'], ['Take', 'off', 'your', 'shoes.'], ['Tom', "hasn't", 'told', 'me', 'anything.'], ['I', 'think', 'we', 'need', 'more', 'ice.'], ["It's", 'never', 'too', 'early', 'to', 'start', 'learning.'], ['I', 'am', 'going', 'to', 'watch', 'TV', 'this', 'evening.'], ['It', 'is', 'in', 'the', 'kitchen.'], ['Tom', 'is', 'getting', 'married', 'next', 'month.'], ['How', 'are', 'you', 'connected?'], ['I', "don't", 'want', 'to', 'know', "what's", 'going', 'to', 'happen.'], ['He', 'made', 'up', 'his', 'mind', 'quickly.'], ['Are', 'there', 'still', 'some', 'empty', 'seats?'], ["I'm", 'not', 'sure', 'I', 'can', 'trust', 'you.'], ['He', 'did', 'not', 'put', 'up', 'his', 'hand.'], ['This', 'room', "doesn't", 'get', 'much', 'sunshine.'], ['What', 'are', 'you', 'worried', 'about?'], ['Tom', 'seems', 'to', 'be', 'intimidated.'], ["She's", 'got', 'a', 'point.'], ['I', "don't", 'know', 'how', 'to', 'play', 'pool.'], ['I', 'want', 'to', 'be', 'certain', 'you', 'are', 'who', 'you', 'say', 'you', 'are.'], ['Is', 'Tom', 'left-handed', 'or', 'right-handed?'], ['Faith', 'can', 'move', 'mountains.'], ['I', "can't", 'sleep', 'when', "I'm", 'stressed', 'out.'], ['This', "isn't", 'your', 'office.'], ["Don't", 'let', 'them', 'get', 'you', 'down.'], ['Thank', 'you', 'for', 'the', 'link.'], ['His', 'voice', 'carries', 'very', 'well.'], ['You', "can't", 'trust', 'computer', 'translation.'], ['What', 'do', 'you', 'want', 'it', 'for?'], ['Tom', 'is', 'at', 'home', 'alone.'], ['Stir', 'the', 'soup.'], ['Give', 'me', 'a', 'call', 'tomorrow.'], ['I', 'could', 'kiss', 'you.'], ['I', "don't", 'care', 'as', 'long', 'as', 'you', 'are', 'happy.'], ['We', 'are', 'going', 'to', 'climb', 'that', 'mountain.'], ['It', 'was', 'unlocked.'], ['She', 'is', 'listening', 'to', 'him.'], ['I', 'visited', 'many', 'parts', 'of', 'England.'], ['The', 'stripes', 'were', 'horizontal.'], ['Hand', 'in', 'your', 'papers.'], ['You', 'have', 'my', 'word.'], ['Money', "isn't", 'the', 'only', 'thing', 'that', 'matters.'], ["I'd", 'say', 'you', 'did', 'well.'], ['We', 'picked', 'apples', 'so', 'we', 'could', 'make', 'an', 'apple', 'pie.'], ['Have', 'you', 'betrayed', 'me?'], ["We've", 'just', 'spent', 'two', 'weeks', 'apart.'], ['I', 'apologize', 'if', 'I', 'offended', 'you.'], ['That', 'was', 'fantastic.'], ['Who', 'sings', 'the', 'best', 'of', 'all', 'the', 'boys', 'in', 'your', 'class?'], ['Tom', 'has', 'two', 'brothers', 'who', 'live', 'in', 'Boston.'], ['She', 'visited', 'him', 'on', 'October', '20th.'], ['He', 'was', 'invited.'], ['You', "can't", 'rely', 'on', 'him', 'these', 'days', 'to', 'do', 'a', 'proper', 'job.'], ['Did', 'you', 'hear', 'that?'], ['Is', 'Tom', 'supposed', 'to', 'be', 'doing', 'that?'], ['It', 'is', 'time', 'for', 'me', 'to', 'take', 'a', 'vacation.'], ['You', 'would', 'be', 'safe', 'there.'], ['This', 'stuff', 'tastes', 'awful.'], ['I', "don't", 'trust', 'talkative', 'people.'], ['I', 'only', 'did', 'it', 'for', 'your', 'own', 'good.'], ['We', 'were', 'both', 'afraid', 'to', 'talk.'], ["Don't", 'tell', 'me', "you're", 'not', 'scared.'], ['When', 'can', 'I', 'call', 'you?'], ['What', 'is', 'the', 'name', 'of', 'that', 'river?'], ['Did', 'you', 'question', 'them?'], ['I', 'bought', 'new', 'sunglasses.'], ['Tom', 'often', 'smiles.'], ['She', 'showed', 'her', 'guests', 'how', 'to', 'eat', 'what', 'she', 'had', 'prepared.'], ['What', 'time', 'do', 'you', 'go', 'to', 'work?'], ['Of', 'course', 'you', 'can', 'stay.'], ["It's", 'a', 'big', 'one.'], ['I', 'wish', 'I', 'could', 'be', 'the', 'man', 'you', 'want', 'me', 'to', 'be.'], ['Mary', 'put', 'her', 'knitting', 'aside', 'and', 'stood', 'up.'], ['The', 'whole', 'town', 'was', 'in', 'an', 'uproar.'], ['The', 'sun', 'is', 'rising', 'now.'], ['We', 'all', 'had', 'a', 'great', 'time.'], ['I', 'need', 'a', 'little', 'help', 'here.'], ['Are', 'you', 'still', 'happy?'], ['Can', 'we', 'cut', 'to', 'the', 'chase', 'here?'], ['I', 'want', 'to', 'live', 'in', 'Australia.'], ['Democracy', 'is', 'one', 'form', 'of', 'government.'], ["You're", 'very', 'late.'], ['I', 'think', "I'm", 'right.'], ['The', 'passengers', 'remained', 'calm.'], ['Would', 'you', 'care', 'to', 'bet?'], ['I', 'like', 'windsurfing.'], ['Children', 'like', 'to', 'pretend', 'to', 'be', 'adults', 'when', 'they', 'play.'], ["You've", 'missed', 'the', 'boat.'], ['Does', 'he', 'live', 'near', 'here?'], ['Hopefully,', 'Tom', "won't", 'be', 'as', 'crazy', 'as', 'the', 'rest', 'of', 'his', 'family', 'when', 'he', 'grows', 'up.'], ['How', 'many', 'of', 'them', 'are', 'there?'], ['Give', 'me', 'the', 'money.'], ['But', 'of', 'course', 'that', 'was', 'a', 'long', 'time', 'ago.'], ['Tom', 'sat', 'near', 'the', 'window.'], ['What', 'do', 'you', 'think', 'of', "Mary's", 'new', 'dress?'], ["CEO's", 'of', 'American', 'corporations', 'are', 'paid', 'several', 'times', 'their', 'Japanese', 'counterparts.'], ['Not', 'everybody', 'is', 'the', 'same.'], ['You', "should've", 'paid', 'attention.'], ["I'm", 'glad.'], ['They', 'are', 'reading', 'their', 'book.'], ["I'm", 'not', 'allowed', 'to', 'say', 'anything.'], ['It', 'was', 'hard.'], ['I', "haven't", 'listened', 'to', 'any', 'of', 'his', 'songs.'], ['You', 'need', 'to', 'work', 'fast.'], ['They', 'live', 'next', 'door.'], ["There's", 'no', 'way', 'out.'], ['The', 'best', 'hairdressers', 'are', 'gay.'], ['My', 'father', "doesn't", 'like', 'soccer.'], ["I've", 'painted', 'the', 'ceiling.'], ['Promise', 'me', 'that', "you'll", 'do', 'that.'], ['I', 'admit', 'that', "I'm", 'tired.'], ['I', 'blamed', 'him', 'for', 'the', 'accident.'], ['They', 'disappeared.'], ['You', 'need', 'to', 'move', 'on.'], ['Tom', 'was', 'a', 'blackmailer.'], ['I', 'am', 'very', 'hungry.'], ["You're", 'new', 'around', 'here,', "aren't", 'you?'], ["We're", 'close', 'enough.'], ['Are', 'you', 'up?'], ['I', 'ate', 'too', 'much.'], ['I', 'want', 'you', 'to', 'find', 'out.'], ['Did', 'you', 'buy', 'the', 'medicine?'], ['It', 'rained', 'yesterday', 'evening.'], ['What', 'did', 'you', 'get', 'hit', 'with?'], ['I', 'want', 'a', 'closer', 'look.'], ['Do', 'you', 'want', 'to', 'do', 'this?'], ['The', 'couple', 'decided', 'to', 'adopt', 'an', 'orphan.'], ['I', 'can', 'recommend', 'it', 'to', 'anyone.'], ['I', 'reconsidered', 'your', 'offer.'], ['He', 'who', 'lives', 'by', 'the', 'sword', 'will', 'die', 'by', 'the', 'sword.'], ['I', 'have', 'to', 'go', 'on', 'a', 'diet', 'to', 'lose', 'weight.'], ['The', 'candle', 'burned', 'out.'], ['What', 'time', 'does', 'the', 'first', 'train', 'leave?'], ['They', 'canceled.'], ['We', 'need', 'to', 'know', 'what', 'happened.'], ["Don't", 'be', 'scared', 'to', 'meet', 'new', 'people.'], ['A', 'bad', 'habit', 'is', 'easily', 'acquired.'], ["I'm", 'very', 'sad', 'to', 'hear', 'that.'], ['I', 'suggest', 'you', 'get', 'some', 'rest.'], ['It', 'seems', 'safe', 'enough.'], ['This', 'hut', 'is', 'a', 'very', 'special', 'place.'], ['You', 'are', 'good.'], ['I', 'built', 'this', 'doghouse', 'by', 'myself.'], ["Tom's", 'funeral', 'will', 'be', 'this', 'weekend.'], ["You're", 'very', 'timid.'], ["It's", 'perfect.'], ['I', "didn't", 'answer', 'any', 'of', "Tom's", 'questions.'], ['I', 'lost', 'that', 'argument.'], ['I', 'never', 'said', 'you', 'were', 'lying.'], ["You're", 'very', 'forward.'], ['I', 'want', 'to', 'know', 'where', 'you', 'plan', 'to', 'live.'], ['They', 'are', 'now', 'either', 'in', 'Kyoto', 'or', 'in', 'Osaka.'], ['I', "can't", 'believe', 'that', "didn't", 'work.'], ['You', 'look', 'happy', 'today.'], ["I'm", 'surprised', 'Tom', "doesn't", 'know', 'how', 'to', 'sing', 'at', 'least', 'one', 'song', 'in', 'French.'], ['You', "can't", 'be', 'forced', 'to', 'testify', 'against', 'your', 'husband.'], ['His', 'remark', 'was', 'really', 'out', 'of', 'line.'], ['He', 'went', 'home', 'at', 'six.'], ['He', 'took', 'a', 'taxi', 'to', 'the', 'station.'], ['She', 'wants', 'to', 'kill', 'me.'], ['My', 'money', 'seems', 'to', 'disappear', 'by', 'the', 'end', 'of', 'the', 'month.'], ['He', 'is', 'lying', 'on', 'the', 'sofa.'], ['Why', 'were', 'you', 'absent', 'yesterday?'], ['I', 'have', 'to', 'take', 'a', 'bus', 'to', 'go', 'anywhere.'], ['They', 'were', 'naive.'], ['She', 'robbed', 'me', 'blind.'], ["How's", 'the', 'dog?'], ['Nobody', 'was', 'happy', 'about', 'this.'], ['Excuse', 'me,', 'which', 'way', 'is', 'the', 'station?'], ['I', 'called', 'my', 'friend', 'after', 'arriving', 'at', 'the', 'station.'], ['How', 'many', 'of', 'you', 'are', 'going?'], ["It's", 'not', 'like', 'you', 'think.'], ['You', 'can', 'stay', 'with', 'us', 'for', 'the', 'night.'], ['When', 'Mary', 'was', 'a', 'girl,', 'she', 'was', 'as', 'cute', 'as', 'a', 'button.'], ['I', 'took', 'a', 'taxi', 'from', 'the', 'train', 'station', 'to', 'the', 'hotel.'], ['I', 'was', 'able', 'to', 'see', 'the', 'smoke', 'from', 'here.'], ['I', 'just', 'want', 'to', 'be', 'your', 'friend,', 'nothing', 'more.'], ['I', 'remember', 'seeing', 'him', 'once.'], ['She', 'ran', 'very', 'fast', 'to', 'catch', 'up', 'with', 'the', 'other', 'members.'], ['I', 'thought', 'I', 'would', 'find', 'you', 'there.'], ['I', 'feel', 'bad', 'that', 'I', "haven't", 'paid', 'you', 'yet.'], ['May', 'I', 'ask', 'you', 'a', 'few', 'questions?'], ['The', 'corpse', 'has', 'a', 'gunshot', 'wound', 'in', 'the', 'chest.'], ['Tom', 'pointed', 'out', 'my', 'mistake.'], ["I'll", 'catch', 'the', 'next', 'train.'], ['All', 'the', 'money', 'was', 'spent', 'on', 'clothes.'], ['I', 'need', 'a', 'breather.'], ['Do', 'you', 'like', 'that?'], ['The', 'trouble', 'is', 'that', 'we', 'have', 'no', 'money.'], ['I', 'plan', 'to', 'move', 'to', 'Boston.'], ['I', 'had', 'to', 'get', 'back', 'home.'], ['I', 'grew', 'up', 'around', 'here.'], ['The', "weather's", 'nice', 'today.'], ['I', 'understand', 'you.'], ["I'd", 'like', 'to', 'brush', 'my', 'teeth.'], ['Is', 'there', 'anything', 'I', 'can', 'do', 'for', 'you?'], ['Our', 'team', 'may', 'win.'], ["They're", 'going', 'to', 'find', 'you.'], ['How', 'does', 'it', 'feel?'], ['I', 'just', 'wanted', 'to', 'have', 'a', 'little', 'fun.'], ['I', 'have', 'two', 'jobs.'], ['I', 'thought', 'you', 'would', 'come.'], ['What', 'are', 'you', 'lining', 'up', 'for?'], ['Do', 'you', 'know', "Tom's", "wife's", 'name?'], ['Did', 'you', 'turn', 'off', 'the', 'gas?'], ['Nature', 'is', 'scary.'], ["I'm", 'a', 'big', 'boy', 'now.'], ['How', 'did', 'you', 'get', 'interested', 'in', 'art?'], ['Many', 'friends', 'came', 'to', 'see', 'me', 'off.'], ['No', 'one', 'knows', 'his', 'address', 'but', 'Tom.'], ['What', 'is', 'your', 'idea?'], ['He', 'left', 'everything', 'to', 'her', 'in', 'his', 'will.'], ['My', 'father', "didn't", 'allow', 'me', 'to', 'have', 'a', 'dog.'], ['Tom', 'was', 'afraid', 'to', 'go', 'back', 'home.'], ['My', 'cat', 'is', 'happy.'], ['Did', 'he', 'stay', 'very', 'long?'], ["Don't", 'you', 'get', 'it?', 'This', "isn't", 'about', 'you.'], ['I', 'do', 'not', 'like', 'spring.'], ['The', 'English', 'alphabet', 'has', '26', 'letters.'], ['People', 'always', 'complain', 'about', 'the', 'weather.'], ["You're", 'creative.'], ['You', "don't", 'have', 'to', 'explain', 'anything.'], ["You'll", 'be', 'missed', 'by', 'your', 'friends', 'when', "you're", 'gone.'], ['He', 'probably', 'forgot', 'about', 'it.'], ['Do', 'we', 'need', 'them', 'that', 'badly?'], ['Tomorrow,', "I'll", 'take', 'the', 'books', 'to', 'the', 'library.'], ['Are', 'you', 'listening', 'to', 'him?'], ['I', 'think', 'my', 'parents', 'know.'], ['This', 'is', 'obviously', 'fake.'], ['I', "didn't", 'know', 'they', 'could', 'do', 'that.'], ['The', 'President', 'spoke', 'to', 'the', 'nation', 'on', 'TV.'], ['I', 'know', 'that', 'Tom', 'is', 'a', 'bit', 'chubby.'], ['My', 'thirteen-year-old', 'is', 'going', 'on', 'her', 'first', 'date', 'tomorrow.'], ['Who', 'will', 'you', 'be', 'coming', 'with?'], ["They're", 'not', 'all', 'busy.'], ['Tom', 'is', 'interested', 'in', 'mathematics.'], ['Your', 'death', 'will', 'not', 'have', 'been', 'in', 'vain.'], ['I', 'have', 'lived', 'here', 'for', 'a', 'long', 'time.'], ['I', 'love', 'my', 'daughter.'], ['The', 'bellows', 'are', 'not', 'working.'], ['I', 'found', 'the', 'book', 'easy.'], ['She', 'was', 'fully', 'clothed.'], ['Take', 'your', 'hat', 'off', 'when', 'you', 'enter', 'a', 'house', 'of', 'worship.'], ['Where', 'would', 'you', 'like', 'to', 'go?'], ['Come', 'alone.'], ['Tom', "doesn't", 'like', 'living', 'alone.'], ['He', 'says', 'that', 'he', 'has', 'no', 'memory', 'of', 'the', 'evening.'], ['You', 'have', 'to', 'report', 'to', 'the', 'police', 'at', 'once.'], ['Is', 'there', 'anyone', 'here?'], ['I', 'had', 'to', 'run', 'to', 'catch', 'the', 'bus.'], ['Doing', 'that', "won't", 'take', 'too', 'much', 'of', 'your', 'time.'], ['It', 'was', 'through', 'his', 'influence', 'that', 'she', 'became', 'interested', 'in', 'ecology.'], ['I', "don't", 'think', 'any', 'of', 'them', 'know.'], ["You're", 'totally', 'ignorant.'], ["I'm", 'not', 'good', 'enough', 'for', 'you.'], ['Where', 'were', 'you', 'coming', 'from?'], ["I'm", 'so', 'happy', 'to', 'see', 'you', 'again.'], ['Her', 'sudden', 'departure', 'surprised', 'us', 'all.'], ["You're", 'really', 'awesome.'], ['Show', 'me', 'the', 'picture.'], ['Your', 'advice', 'has', 'been', 'of', 'great', 'help.'], ['She', 'said', 'that', 'it', 'might', 'be', 'true.'], ['Tom', "didn't", 'scream.'], ['Tom', 'sighed', 'again.'], ['That', 'child', 'has', 'few', 'friends.'], ["Let's", 'end', 'this', 'debate.'], ['Tom', 'wants', 'to', 'help', 'out.'], ['Everyone', 'looks', 'exhausted.'], ['Is', 'he', 'afraid', 'of', 'death?'], ["I'm", 'from', 'Singapore.'], ["Let's", 'not', 'talk', 'about', 'it.'], ['How', 'beautiful!'], ['Talk', 'to', 'my', 'attorney.'], ['I', 'hope', 'Tom', 'has', 'fun.'], ['How', 'much', 'were', 'you', 'paid', 'to', 'say', 'that?'], ['I', "don't", 'know', 'and', 'neither', 'does', 'he.'], ['Poverty', 'is', 'everywhere.'], ['If', 'you', 'dress', 'like', 'that', 'at', 'your', 'age,', "you'll", 'make', 'a', 'fool', 'of', 'yourself.'], ['This', 'was', 'supposed', 'to', 'be', 'simple.'], ['Please', 'go', 'to', 'the', 'bank.'], ['I', 'said', 'he', 'could', 'go.'], ['She', 'baked', 'me', 'a', 'cake.'], ['I', 'really', 'am', 'glad', "you're", 'here.'], ['He', 'reads', 'a', 'novel', 'every', 'day.'], ['Elephants', 'are', 'an', 'endangered', 'species.'], ['Are', 'you', 'ready', 'for', 'bed?'], ['I', 'listened', 'to', 'some', 'CDs', 'last', 'night.'], ['He', 'fell', 'asleep', 'during', 'class.'], ['Do', 'you', 'accept', 'Visa', 'card?'], ['I', 'got', 'here', 'last', 'night.'], ["That's", 'your', 'favorite,', 'right?'], ['Who', 'is', 'the', 'author', 'of', 'this', 'book?'], ['I', "didn't", 'fall', 'in', 'love.'], ["Don't", 'you', 'see', "what's", 'going', 'on?'], ['Why', 'did', 'you', 'come', 'early?'], ['Are', 'you', 'sure', 'you', "don't", 'need', 'my', 'help?'], ['Tom', 'noticed', 'Mary', "wasn't", 'wearing', 'the', 'ring', "he'd", 'given', 'her.'], ['The', 'baby', 'was', 'naked.'], ['I', 'live', 'in', 'comfort.'], ['I', 'keep', 'my', 'hammer', 'in', 'the', 'toolbox.'], ['Am', 'I', 'dying?'], ["I'm", 'sure', "that's", 'what', 'Tom', "would've", 'wanted.'], ['Cats', 'can', 'climb', 'trees,', 'but', 'dogs', "can't."], ['She', 'ordered', 'him', 'to', 'do', 'it.'], ['You', 'crossed', 'the', 'line.'], ['Do', 'you', 'have', 'a', 'smaller', 'size?'], ['I', "don't", 'know', 'whether', 'Tom', 'still', 'lives', 'here', 'or', 'not.'], ['Tom', 'will', 'probably', 'win.'], ["I'm", 'not', 'going,', 'and', "that's", 'that.'], ['I', 'became', 'very', 'sleepy', 'after', 'a', 'bit', 'of', 'reading.'], ['Hand', 'me', 'a', 'tissue.'], ['I', 'am', 'saving', 'money', 'in', 'order', 'to', 'buy', 'a', 'new', 'personal', 'computer.'], ['Tom', 'wants', 'to', 'talk.'], ['I', 'recommend', 'it', 'highly.'], ['I', 'broke', 'the', 'lock', 'opening', 'the', 'door.'], ['How', 'did', 'the', 'traffic', 'accident', 'happen?'], ['He', 'visited', 'Japan', 'while', 'he', 'was', 'President.'], ['Tom', 'betrayed', 'his', 'best', 'friend.'], ['Thank', 'you', 'for', 'your', 'explanation.'], ["You've", 'somehow', 'managed', 'to', 'misconstrue', 'what', 'I', 'have', 'said.'], ["It's", 'hard', 'to', 'find', 'a', 'good', 'job', 'these', 'days.'], ['Hurry,', 'or', "you'll", 'miss', 'the', 'train.'], ['Is', 'this', 'your', 'first', 'trip', 'abroad?'], ['Could', 'you', 'do', 'me', 'a', 'favor?'], ["Tom'll", 'pay.'], ['You', 'must', 'study', 'grammar', 'more.'], ['He', 'abandoned', 'his', 'family', 'and', 'moved', 'to', 'Tahiti.'], ["I'm", 'not', 'a', 'patient', 'man.'], ['I', 'think', "we're", 'on', 'the', 'right', 'path.'], ['What', 'should', 'I', 'do', 'to', 'save', 'time?'], ['I', 'enjoy', 'being', 'with', 'you.'], ["What's", 'wrong', 'with', 'running', 'around', 'your', 'house', 'naked?'], ["It's", 'the', 'size', 'of', 'a', 'small', 'car.'], ['A', 'blind', "person's", 'hearing', 'is', 'often', 'very', 'acute.'], ['The', 'policeman', 'promised', 'to', 'investigate', 'the', 'matter.'], ['I', "didn't", 'know', 'that', 'you', 'used', 'to', 'work', 'here.'], ['I', 'think', 'you', 'deserve', 'this.'], ['I', "didn't", 'ask', 'for', 'help.'], ['Every', 'year,', 'many', 'older', 'people', 'die', 'in', 'road', 'accidents.'], ['How', 'can', 'I', 'protect', 'myself?'], ['A', 'squirrel', 'hid', 'among', 'the', 'branches.'], ['You', "don't", 'look', 'very', 'strong.'], ['Is', 'there', 'any', 'other', 'way', 'besides', 'extraction?'], ['Please', 'open', 'your', 'bag', 'so', 'that', 'I', 'can', 'see', 'what', 'you', 'have', 'in', 'it.'], ['They', 'all', 'laughed', 'at', 'his', 'jokes.'], ['They', 'carried', 'water', 'in', 'buckets.'], ['She', 'hates', 'him.'], ['I', 'want', 'to', 'buy', 'them', 'all.'], ["I'll", 'make', 'some', 'calls.'], ['As', 'soon', 'as', 'she', 'got', 'her', 'salary,', 'she', 'spent', 'it', 'all.'], ['Tom', "isn't", 'his', 'real', 'name.'], ['According', 'to', 'the', 'weather', 'forecast,', 'it', 'will', 'snow', 'tomorrow.'], ['What', 'other', 'forms', 'do', 'I', 'need', 'to', 'fill', 'out?'], ["It's", 'unclear', 'what', 'went', 'wrong.'], ["I'm", 'staying', 'with', 'you.'], ['He', 'went', 'to', 'New', 'York', 'on', 'Monday.'], ['The', 'temperature', 'is', 'below', 'zero', 'today,', 'too.'], ['He', 'was', 'very', 'patient.'], ['She', 'has', 'a', 'lot', 'of', 'friends', 'here.'], ["I'm", 'not', 'counting.'], ['Nobody', 'answered', 'my', 'question.'], ["Don't", 'sound', 'so', 'surprised.', 'You', 'know', 'I', 'can', 'do', 'whatever', 'I', 'want', 'to', 'do.'], ['I', 'assure', 'you', 'that', 'I', 'can', 'do', 'that.'], ['She', 'came', 'with', 'good', 'news.'], ['I', "don't", 'care', 'where', "you're", 'eating', 'dinner.'], ['To', 'tell', 'you', 'the', 'truth,', 'I', "don't", 'like', 'Tom.'], ['Do', 'you', 'ever', 'sleep?'], ['Are', 'you', 'sure', 'you', "didn't", 'do', 'anything?'], ['I', 'expect', 'you', 'to', 'work', 'harder.'], ['Tom', 'is', 'waiting', 'for', 'you.'], ['Tom', 'is', "Mary's", 'third', 'husband.'], ['Tell', 'us', 'where', 'Tom', 'is.'], ['I', 'wish', 'you', 'had', 'done', 'what', 'I', 'asked', 'you', 'to', 'do.'], ['Are', 'you', 'having', 'fun?'], ["We're", 'aware', 'of', 'the', 'problem.'], ['I', "haven't", 'gotten', 'over', 'my', 'bad', 'cold', 'yet.'], ['When', 'do', 'you', 'mean', 'to', 'start?'], ['I', "don't", 'like', 'your', 'friends.'], ['The', 'situation', 'is', 'critical.'], ['That', 'book', 'had', 'a', 'lot', 'of', 'pages.'], ["That's", 'a', 'lie.'], ['Was', 'this', 'somebody', "else's", 'idea?'], ['Is', 'it', 'something', 'you', 'can', 'get', 'rid', 'of?'], ['I', 'like', 'grapes.'], ['That', 'sounds', 'outrageous.'], ['You', "don't", 'expect', 'me', 'to', 'face', 'Tom', 'alone,', 'do', 'you?'], ["I'm", 'crazy', 'about', 'football.'], ['We', 'must', 'cut', 'down', 'our', 'expenses.'], ['Can', 'you', 'tell', 'us', 'what', 'you', 'did?'], ["It's", 'another', 'ball', 'of', 'wax.'], ['I', 'guess', 'not.'], ['I', "couldn't", 'make', 'myself', 'understood', 'well', 'in', 'English.'], ["It's", 'obvious.'], ['This', 'will', 'keep', 'you', 'warm.'], ["What's", 'all', 'this', 'stuff?'], ['Not', 'a', 'sound', 'was', 'heard', 'in', 'the', 'room.'], ['Is', 'it', 'really', 'necessary?'], ['I', 'demand', 'that', 'he', 'be', 'punished.'], ['The', 'smell', 'of', 'macaroni', 'and', 'cheese', 'makes', 'me', 'nauseous.'], ["I'm", 'not', 'the', 'only', 'one', 'who', 'feels', 'that', 'way.'], ['Certainly', 'he', 'is', 'handsome', 'and', 'intelligent,', 'but', 'there', 'is', 'something', 'about', 'him', 'that', 'I', "can't", 'like.'], ['Mind', 'your', 'own', 'business!'], ['I', 'almost', 'never', 'work', 'on', 'Saturdays.'], ['This', 'fact', 'proves', 'his', 'innocence.'], ["I've", 'already', 'answered', 'this', 'question.'], ['He', 'is', 'standing', 'on', 'the', 'hill.'], ["Let's", 'take', 'your', 'temperature', 'first.'], ['Times', 'are', 'tough.'], ['Many', 'weeds', 'were', 'growing', 'among', 'the', 'flowers.'], ['You', 'need', 'to', 'be', 'prepared.'], ['She', 'is', 'very', 'hardworking.'], ['I', 'stayed', 'in', 'bed', 'one', 'more', 'day', 'just', 'to', 'be', 'on', 'the', 'safe', 'side.'], ["We've", 'already', 'seen', 'this', 'movie.'], ['I', "can't", 'tell', 'you', 'how', 'happy', 'I', 'am', 'that', "you've", 'come', 'to', 'visit', 'us.'], ['Father', 'is', 'angry', 'with', 'me.'], ['Are', 'you', 'ready?'], ['Stay', 'out', 'of', 'the', 'rain.'], ['They', 'do', 'that', 'sometimes.'], ['Tom', 'told', 'me', 'that', 'Mary', 'was', 'on', 'a', 'diet.'], ['I', 'get', 'bored', 'quickly', 'in', 'everything', 'I', 'do.'], ["I'm", 'so', 'cold.'], ['Please', 'pull', 'the', 'rope.'], ['You', 'should', 'have', 'been', 'more', 'careful.'], ["I'm", 'a', 'singer.'], ["She's", 'two', 'years', 'older', 'than', 'him.'], ['I', "haven't", 'done', 'this', 'since', 'high', 'school.'], ["They'll", 'understand', 'us.'], ['Cats', 'usually', 'hate', 'dogs.'], ['I', 'pay', 'my', 'own', 'way.'], ['I', 'can', 'help', 'you.'], ['I', "can't", 'believe', 'you', 'would', 'allow', 'this.'], ['I', "don't", 'think', 'Tom', 'knows', 'how', 'to', 'do', 'that.'], ['Tom', 'needs', 'this.'], ["I'm", 'glad', 'no', 'one', 'got', 'hurt.'], ['I', 'have', 'many', 'talents.'], ['I', 'can', 'swim', 'very', 'fast.'], ['We', 'could', 'crash.'], ['What', 'do', 'your', 'parents', 'want', 'for', 'Christmas?'], ['This', 'is', 'insanity.'], ['Tom', 'teaches', 'French', 'in', 'Boston.'], ['He', 'tried', 'hard,', 'but', 'failed.'], ['I', "don't", 'have', 'time', 'for', 'a', 'vacation', 'this', 'year.'], ["We'll", 'come', 'back', 'later.'], ['Belgrade', 'is', 'the', 'capital', 'of', 'Serbia.'], ['I', 'put', 'it', 'in', 'your', 'room.'], ['I', 'want', 'you', 'to', 'love', 'me', 'for', 'who', 'I', 'am.'], ['The', 'more', 'I', 'thought', 'about', 'the', 'problem,', 'the', 'more', 'difficult', 'it', 'seemed.'], ['Run', 'fast,', 'or', 'you', 'will', 'be', 'late', 'for', 'school.'], ["Where's", 'the', 'beach?'], ['We', 'must', 'separate', 'politics', 'from', 'religion.'], ['I', 'love', 'the', 'flowers', 'you', 'sent', 'me.'], ["We've", 'been', 'unable', 'to', 'determine', 'the', 'cause.'], ["You're", 'afraid', 'that', "I'm", 'right,', "aren't", 'you?'], ['Try', 'not', 'to', 'laugh.'], ['You', 'look', 'very', 'tired.'], ['I', "don't", 'know', 'what', "I'm", 'going', 'to', 'do', 'yet.'], ['Tom', 'glanced', 'at', 'the', 'others.'], ['I', 'figured', 'that', "you'd", 'be', 'impressed.'], ['Where', 'did', 'you', 'go', 'to', 'college?'], ['I', 'met', 'your', 'son', 'yesterday', 'and', 'he', 'greeted', 'me', 'politely.'], ['This', 'movie', 'was', 'very', 'interesting.'], ['We', 'took', 'turns', 'with', 'the', 'driving.'], ['She', 'devoted', 'herself', 'to', 'him.'], ["We're", 'joking.'], ['Which', 'is', 'your', 'target?'], ['Which', 'Harry', 'Potter', 'book', 'is', 'your', 'favorite?'], ['It', 'is', 'going', 'to', 'rain', 'soon.'], ['His', 'name', 'is', 'not', 'on', 'the', 'list.'], ['When', 'will', 'you', 'ever', 'learn?'], ['Are', 'you', 'still', 'mad', 'at', 'me?'], ['Dinner', 'is', 'almost', 'ready.'], ['The', 'dog', 'ate', 'my', 'shoe.'], ['What', 'are', 'we', 'doing', 'today?'], ['The', 'smell', 'of', 'dirty', 'socks', 'makes', 'me', 'want', 'to', 'throw', 'up.'], ["What's", 'wrong', 'with', 'my', 'idea?'], ['The', 'air', 'seems', 'damp.'], ['Take', 'this', 'to', 'your', 'mother.'], ['I', 'think', 'Tom', 'and', 'Mary', 'will', 'be', 'able', 'to', 'buy', 'ice', 'skates', 'their', 'sizes', 'at', 'the', 'sports', 'store', 'near', 'the', 'art', 'museum.'], ['Why', "wouldn't", 'you', 'let', 'me', 'tell', 'you', 'what', 'happened?'], ['I', 'have', 'a', 'lot', 'of', 'assignments', 'to', 'do', 'today.'], ['This', 'is', 'taking', 'way', 'too', 'long.'], ['She', 'majors', 'in', 'child', 'psychology.'], ['You', 'should', 'not', 'go', 'alone.'], ['The', 'new', 'film', 'was', 'a', 'great', 'success.'], ['You', 'look', 'happy', 'today.'], ["I'll", 'come', 'with', 'you.'], ['Tie', 'your', 'shoelaces.'], ['They', 'were', 'tired', 'of', 'waiting.'], ['His', 'eyes', 'failed', 'him.'], ['Who', 'are', 'you', 'trying', 'to', 'impress?'], ['He', 'lived', 'abroad', 'for', 'many', 'years.'], ['He', 'has', 'to', 'have', 'an', 'operation', 'next', 'week.'], ['Are', 'you', 'seriously', 'thinking', 'about', 'getting', 'married', 'again', 'at', 'your', 'age?'], ['Tom', 'says', 'that', "he's", 'never', 'tasted', 'whale', 'meat.'], ['How', 'do', 'you', 'want', 'to', 'die?'], ['How', 'does', 'this', 'camera', 'work?'], ['Go', 'have', 'fun.'], ["I'm", 'not', 'making', 'any', 'plans.'], ['You', 'have', 'something', 'in', 'your', 'pockets,', "don't", 'you?'], ['She', 'sat', 'next', 'to', 'him.'], ['Monopolies', 'are', 'bad.'], ['You', 'have', 'restored', 'my', 'faith', 'in', 'humanity.'], ['The', 'guy', 'who', 'hit', 'you', 'is', 'at', 'the', 'front', 'door.'], ['Unfortunately,', 'I', "don't", 'have', 'time', 'today.'], ['Where', 'were', 'the', 'others?'], ["We'll", 'go', 'to', 'any', 'length', 'to', 'send', 'our', 'child', 'to', 'a', 'good', 'university.'], ['I', "didn't", 'know', 'you', 'could', 'speak', 'French.'], ['Please', 'help', 'me.'], ['This', 'house', 'will', 'rent', 'easily.'], ['This', 'is', 'the', 'same', 'watch', 'that', 'I', 'lost', 'a', 'week', 'ago.'], ['I', 'am', 'tired', 'of', 'homework.'], ['I', 'was', 'born', 'in', '1972.'], ['It', "doesn't", 'make', 'any', 'sense,', 'does', 'it?'], ['He', 'dumped', 'me.'], ['My', 'name', 'is', 'Tom.'], ['The', 'juggler', 'wowed', 'the', 'crowd', 'by', 'keeping', 'ten', 'oranges', 'up', 'in', 'the', 'air.'], ['I', 'was', 'born', 'in', 'Kyoto', 'in', '1980.'], ['You', 'are', 'twice', 'as', 'strong', 'as', 'me.'], ['Look', 'down', 'at', 'the', 'floor.'], ['Anybody', 'can', 'do', 'that.'], ['One', 'of', 'my', 'friends', 'knows', 'you.'], ['You', 'should', 'have', 'been', 'more', 'prudent.'], ['I', 'phoned.'], ['I', "can't", 'make', 'heads', 'or', 'tails', 'of', 'what', 'you', 'say.'], ['Tom', 'had', 'a', 'bandage', 'on', 'his', 'left', 'hand.'], ['He', 'managed', 'to', 'escape.'], ['No', 'one', 'cares.'], ['He', 'just', 'got', 'home.'], ['May', 'I', 'have', 'a', 'napkin?'], ['I', 'fell', 'into', 'the', 'water.'], ['Would', 'you', 'help', 'me', 'if', 'I', 'moved?'], ['What', 'does', 'this', 'sentence', 'mean?'], ["It's", '8:30.'], ['That', 'work', 'was', 'done', 'very', 'quickly.'], ['I', 'think', 'you', 'must', 'be', 'getting', 'tired.'], ['We', 'met', 'her', 'by', 'accident.'], ['I', "don't", 'have', 'any', 'close', 'friends.'], ['I', 'wonder', 'why', 'Tom', 'is', 'so', 'happy.'], ['How', 'did', 'you', 'get', 'here?'], ['The', 'boy', 'has', 'been', 'sleeping', 'for', 'ten', 'hours.'], ['Shame', 'on', 'you!'], ['They', 'are', 'in', 'the', "teachers'", 'room.'], ["We've", 'been', 'invited', 'to', 'the', 'opening', 'ceremony.'], ['I', 'know', "you're", 'busy,', 'but', 'can', 'I', 'talk', 'to', 'you', 'for', 'a', 'minute?'], ["I'm", 'not', 'interested', 'in', 'that.'], ['I', 'remember', 'when', 'I', 'first', 'saw', 'you.'], ['Are', 'you', 'still', 'in', 'love?'], ["Don't", 'leave.'], ['I', 'wish', 'Tom', 'was', 'here.'], ['Everything', 'is', 'new.'], ['What', 'are', 'you', 'writing?'], ["It's", 'time', 'for', 'you', 'to', 'get', 'up.'], ["I'll", 'be', 'there', 'at', '2:30.'], ["They'll", 'let', 'us', 'know.'], ['Keeping', 'a', 'diary', 'is', 'a', 'good', 'habit.'], ['Do', 'you', 'plan', 'to', 'go', 'overseas?'], ['I', 'have', 'to', 'go', 'to', 'work.'], ['I', 'want', 'you', 'to', 'handle', 'this.'], ["It's", 'redundant.'], ['You', "don't", 'look', 'like', 'a', 'millionaire.'], ['I', "don't", 'remember', 'agreeing', 'to', 'that.'], ['I', "can't", 'find', 'time', 'to', 'read', 'the', 'book.'], ['I', 'will', 'explain', 'it', 'to', 'him.'], ['Tom', 'is', 'older', 'than', 'Mary.'], ["You're", 'the', 'teacher.'], ['You', 'should', 'have', 'seen', 'him.'], ['It', 'will', 'stop', 'raining', 'soon.'], ['Is', 'there', 'a', 'flower', 'shop', 'in', 'the', 'hotel?'], ['Were', 'you', 'able', 'to', 'do', 'everything', 'you', 'wanted', 'to', 'get', 'done?'], ['We', 'have', 'had', 'few', 'typhoons', 'this', 'autumn.'], ['Who', 'are', 'you', 'talking', 'to?'], ['I', 'thought', 'you', 'might', 'be', 'lonely,', 'so', 'I', 'came', 'over', 'with', 'a', 'bottle', 'of', 'wine.'], ['Tom', 'said', 'that', 'Mary', 'was', 'a', 'bad', 'driver.'], ["He's", 'likely', 'to', 'come.'], ['Tom', 'admitted', 'that', 'he', 'had', 'stolen', 'the', 'bike.'], ['A', 'great', 'future', 'lies', 'before', 'her.'], ['You', 'were', 'very', 'busy,', "weren't", 'you?'], ['Tom', 'made', 'a', 'list', 'of', 'songs', 'he', "doesn't", 'like.'], ['I', 'usually', "don't", 'bother', 'with', 'people', 'like', 'him.'], ['Can', 'you', 'explain', 'why', 'Tom', "isn't", 'here?'], ['Who', 'are', 'you', 'to', 'tell', 'us', 'we', "can't", 'go?'], ['I', 'have', 'a', 'stone', 'in', 'my', 'shoe.'], ['Who', 'bought', 'you', 'this', 'house?'], ["Don't", 'point', 'your', 'gun', 'at', 'me.'], ['What', 'on', 'earth', 'is', 'it?'], ["It's", 'quite', 'good.'], ['Is', 'it', 'really', 'that', 'necessary?'], ['She', 'and', 'I', 'have', 'been', 'married', '30', 'years.'], ["Let's", 'find', 'a', 'solution', 'that', 'is', 'acceptable', 'to', 'everyone.'], ['Tom', 'realized', 'the', 'problem.'], ['I', "don't", 'know', 'how', 'to', 'make', 'stew.'], ["What's", 'taking', 'so', 'long?'], ['How', 'did', 'you', 'get', 'here?'], ["It's", 'not', 'your', 'fault.'], ["I'm", 'a', 'management', 'consultant.'], ['It', 'was', 'not', 'easy', 'to', 'convince', 'him.'], ['He', 'keeps', 'a', 'diary', 'in', 'English.'], ['Do', 'you', 'have', 'any', 'idea', 'who', 'would', 'do', 'this?'], ['Please', 'take', 'more', 'care', 'in', 'the', 'future.'], ['I', 'was', 'told', 'that', 'I', 'needed', 'to', 'get', 'enough', 'sleep.'], ['Can', 'I', 'talk', 'to', 'you', 'alone', 'for', 'a', 'second?'], ['What', 'was', 'it', 'that', 'he', 'was', 'looking', 'for?'], ['I', 'just', 'want', 'the', 'truth.'], ['I', 'think', 'that', "it's", 'too', 'big.'], ["Don't", 'let', 'them', 'tell', 'you', "you're", 'crazy.'], ['I', "don't", 'want', 'to', 'hear', 'your', 'excuses.'], ['I', 'work', 'out', 'to', 'stay', 'in', 'shape.'], ['You', "don't", 'see', 'that', 'every', 'day.'], ['I', 'had', 'no', 'idea', 'you', 'were', 'so', 'dedicated.'], ["Isn't", 'that', 'right?'], ['You', 'people', 'are', 'mad.'], ["Let's", 'get', 'back', 'to', 'work.'], ['I', 'got', 'you', 'confused', 'with', 'your', 'oldest', 'brother.'], ['The', 'boxer', 'was', 'pressured', 'to', 'throw', 'the', 'fight.'], ['No', 'one', 'will', 'believe', 'him.'], ['The', '9:35', 'train', 'stops', 'at', 'Bambury.'], ['We', 'had', 'a', 'narrow', 'escape.'], ['Everyone', 'hates', 'you.'], ['I', 'was', 'feeling', 'confident.'], ['His', 'proposal', 'was', 'worthless.'], ['If', 'we', 'leave', 'now,', 'we', 'should', 'make', 'it.'], ['The', "Normans'", 'conquest', 'of', 'England', 'had', 'a', 'great', 'effect', 'on', 'the', 'English', 'language.'], ['Would', 'you', 'like', 'to', 'go', 'fishing', 'next', 'weekend?'], ['I', "don't", 'understand', 'why', 'you', 'want', 'it.'], ['He', 'picked', 'up', 'a', 'stone.'], ['This', 'flashlight', 'is', 'getting', 'dim.'], ['Make', 'your', 'move.'], ['The', 'insulin', 'was', 'making', 'her', 'fat.'], ['They', 'rejected', 'our', 'idea.'], ['He', 'is', 'fatter', 'than', 'when', 'I', 'last', 'saw', 'him.'], ["Don't", 'tell', 'anyone.'], ["I'll", 'look', 'after', 'your', 'child', 'while', 'you', 'are', 'away.'], ["Don't", 'buy', 'me', 'any', 'more', 'presents.'], ['Tom', 'underwent', 'surgery.'], ['I', "can't", 'tell', 'you', 'how', 'happy', 'I', 'am', 'that', "you've", 'come', 'to', 'visit', 'us.'], ['All', 'you', 'do', 'is', 'criticize', 'others.'], ['I', 'went', 'there', 'for', 'the', 'purpose', 'of', 'meeting', 'him.'], ['This', 'is', 'an', 'effective', 'remedy', 'for', 'crime.'], ['Criminals', 'should', 'be', 'punished.'], ['I', 'have', 'two', 'dogs.', 'One', 'is', 'white', 'and', 'the', 'other', 'black.'], ['Is', 'that', 'your', 'wife?'], ['Let', 'me', 'tell', 'you', 'how', 'I', 'really', 'feel.'], ['My', 'children', 'rely', 'on', 'me.'], ["Don't", 'you', 'see', "what's", 'happened?'], ['Can', 'you', 'wait', 'ten', 'minutes?'], ['His', 'car', 'was', 'stuck', 'in', 'knee-deep', 'snow.'], ['He', 'loves', 'soccer.'], ['Tom', 'turned', 'off', 'his', 'computer.'], ['I', 'was', 'too', 'tired', 'to', 'walk', 'any', 'more.'], ['He', 'is', 'always', 'late', 'for', 'school.'], ['Why', "don't", 'you', 'take', 'a', 'picture?'], ['She', 'put', 'on', 'her', 'overcoat', 'before', 'going', 'out.'], ['There', 'is', 'no', 'table', 'in', 'the', 'room.'], ['Is', 'your', 'car', 'comfortable?'], ['She', 'could', 'face', 'a', 'ten-year', 'prison', 'term.'], ['Half', 'the', 'apples', 'that', 'Tom', 'gave', 'me', 'were', 'rotten.'], ['I', 'know', 'who', "I'd", 'recommend', 'for', 'the', 'job.'], ['I', 'felt', 'so', 'uncomfortable.'], ['You', 'heard', 'correctly.'], ['I', 'wonder', 'why', 'the', 'dogs', 'are', 'barking.'], ["They're", 'young', 'and', 'healthy.'], ['How', 'do', 'you', 'say', 'that', 'in', 'French?'], ['Our', 'team', 'lost', 'the', 'first', 'game.'], ["They're", 'in', 'danger.'], ['The', 'man', 'connected', 'two', 'wires.'], ['You', 'are', 'the', 'most', 'important', 'person', 'in', 'my', 'life.'], ['How', 'may', 'I', 'help', 'you?'], ['My', 'hobby', 'is', 'collecting', 'old', 'bottles.'], ['Do', 'you', 'think', "there's", 'a', 'connection?'], ['I', 'will', 'never', 'forget', 'seeing', 'you.'], ['Tom', 'said', 'he', 'needed', 'to', 'take', 'a', 'nap.'], ['Could', 'you', 'stop,', 'please?'], ['No', 'one', 'in', 'his', 'class', 'can', 'run', 'faster', 'than', 'he', 'does.'], ['Wolves', "don't", 'usually', 'attack', 'people.'], ['Hand', 'me', 'the', 'hammer,', 'will', 'you?'], ['How', 'many', 'of', "Shakespeare's", 'tragedies', 'have', 'you', 'read?'], ["Don't", 'worry', 'about', 'what', 'others', 'say.'], ['How', 'much', 'did', 'it', 'cost', 'us?'], ['She', 'refused', 'to', 'accept', 'the', 'money.'], ["We'll", 'have', 'to', 'do', 'this', 'quickly.'], ['It', 'is', 'no', 'joke.'], ['What', 'do', 'you', 'do', 'on', 'Sundays?'], ['I', "don't", 'think', 'that', 'Tom', 'can', 'speak', 'French.'], ['Why', 'do', 'you', 'want', 'to', 'be', 'a', 'nurse?'], ['They', "won't", 'make', 'it.'], ['She', 'was', 'forced', 'to', 'confess.'], ['I', 'want', 'to', 'talk', 'to', 'you', 'about', 'this', 'report.'], ['You', "won't", 'catch', 'anything.'], ['This', 'pond', "doesn't", 'go', 'dry', 'even', 'in', 'the', 'summer.'], ['Is', 'this', 'a', 'date?'], ['The', 'volcano', 'erupts', 'at', 'regular', 'intervals.'], ['I', 'left', 'as', 'soon', 'as', 'I', 'could.'], ['I', 'suppose', "he's", 'got', 'a', 'point.'], ['What', 'could', 'they', 'possibly', 'want', 'from', 'us?'], ['We', 'were', 'rowing', 'against', 'the', 'current.'], ['Who', 'planted', 'these', 'trees?'], ['Many', 'sects', 'have', 'initiation', 'rituals', 'for', 'new', 'members.'], ['I', 'had', 'a', 'few', 'hours', 'free,', 'so', 'I', 'sat', 'under', 'a', 'tree', 'and', 'read', 'a', 'book.'], ["I'll", 'have', 'it', 'here', 'for', 'you', 'tomorrow.'], ["I'm", 'confused.'], ['Used', 'car', 'salesmen', 'are', 'a', 'disreputable', 'bunch.'], ['Tom', "didn't", 'have', 'dinner', 'last', 'night.'], ['I', 'hid', 'myself', 'behind', 'a', 'curtain.'], ['I', 'bought', 'you', 'a', 'present.'], ['What', 'is', 'the', 'second', 'largest', 'country', 'in', 'the', 'world?'], ['I', "can't", 'put', 'up', 'with', 'the', 'way', 'he', 'spits.'], ['I', 'took', 'risks.'], ['I', 'have', 'seen', 'that', 'girl', 'before.'], ['I', "wasn't", 'invited', 'to', 'the', 'opening', 'ceremony.'], ['He', 'asked', 'me', 'if', 'I', 'had', 'slept', 'well', 'the', 'night', 'before.'], ['I', 'fell', 'for', 'it.'], ['We', 'finally', 'have', 'you', 'where', 'we', 'want', 'you.'], ['She', 'is', 'lucky.'], ['I', "don't", 'want', 'to', 'live', 'where', 'I', 'work.'], ['His', 'son', 'has', 'what', 'it', 'takes', 'to', 'be', 'a', 'good', 'doctor.'], ['I', 'only', 'got', 'your', 'letter', 'yesterday.'], ["You'd", 'better', 'listen', 'to', 'me.'], ['Have', 'there', 'been', 'any', 'phone', 'calls', 'for', 'me?'], ['Nothing', 'is', 'new', 'under', 'the', 'sun.'], ['If', 'that', "doesn't", 'work,', 'try', 'something', 'else.'], ['I', "didn't", 'like', 'what', 'he', 'said', 'at', 'all.'], ['I', 'crossed', 'the', 'river', 'by', 'boat.'], ['And', 'who', 'are', 'you', 'working', 'for', 'these', 'days?'], ['He', 'has', 'a', 'good', 'appetite.'], ['I', 'see', 'how', 'you', 'did', 'that.'], ['I', 'had', 'dinner', 'with', 'a', 'friend', 'last', 'night.'], ['I', 'stretched', 'out', 'my', 'legs.'], ['Maybe', "it's", 'not', 'possible.'], ['I', 'wish', 'you', 'had', 'come', 'with', 'us.'], ["Don't", 'you', 'hang', 'up', 'on', 'me.'], ['Be', 'seated.'], ['No', 'sinner', 'is', 'ever', 'saved', 'after', 'the', 'first', 'twenty', 'minutes', 'of', 'a', 'sermon.'], ["There's", 'an', 'answer', 'to', 'everything.'], ["You're", 'smarter', 'than', 'me.'], ['How', 'do', 'you', 'plan', 'to', 'get', 'home?'], ['Could', 'you', 'show', 'me', 'that?'], ['He', 'is', 'willing', 'enough.'], ["Tom's", 'face', 'feels', 'rough', 'because', 'he', 'needs', 'to', 'shave.'], ["That's", 'upsetting.'], ['Tom', 'fired', 'Mary.'], ['Tom', 'does', 'love', 'you.'], ['There', 'is', 'a', 'map', 'on', 'the', 'wall.'], ['I', 'know', "that's", 'not', 'enough.'], ['I', 'played', 'the', 'violin', 'when', 'I', 'was', 'in', 'high', 'school.'], ["It's", 'not', 'a', 'pyramid', 'scheme.'], ['I', 'guess', 'I', "don't", 'understand', 'what', "you're", 'trying', 'to', 'say.'], ['The', 'boy', 'said', 'that', 'the', 'taxi', 'vanished', 'into', 'the', 'fog.'], ['They', 'slept', 'in', 'the', 'same', 'bed.'], ['We', 'have', 'a', 'party', 'tomorrow', 'evening.'], ['He', 'said', 'he', 'did', 'not', 'know', 'the', 'man,', 'which', 'was', 'a', 'lie.'], ['You', 'ought', 'to', 'have', 'started', 'half', 'an', 'hour', 'ago.'], ['Tom', 'named', 'his', 'daughter', 'Mary.'], ['She', 'hurried', 'across', 'the', 'lawn.'], ['That,', 'of', 'course,', 'does', 'not', 'mean', 'that', 'they', 'are', 'right.'], ['The', 'whereabouts', 'of', 'the', 'suspect', 'is', 'still', 'unknown.'], ['I', "don't", 'like', 'that', 'kind', 'of', 'music.'], ['Could', 'someone', 'hand', 'me', 'a', 'knife?'], ['I', 'just', "don't", 'want', 'to', 'get', 'your', 'hopes', 'up.'], ['She', 'seems', 'to', 'be', 'involved', 'in', 'that', 'murder', 'case.'], ['Smoking', 'has', 'affected', 'his', 'health.'], ['This', 'is', 'your', 'fate.'], ['I', 'bet', 'you', "didn't", 'know', 'that.'], ['"Is', 'his', 'story', 'true?"', '"I\'m', 'afraid', 'not."'], ['He', 'spent', 'a', 'lot', 'of', 'money', 'this', 'weekend.'], ['I', 'feel', 'great', 'right', 'now.'], ['How', 'was', 'your', 'walk?'], ["They're", 'students.'], ['Tom', "doesn't", 'know', 'what', 'Mary', 'is', 'trying', 'to', 'do.'], ['He', 'will', 'never', 'visit', 'the', 'town', 'again.'], ['I', 'need', 'a', 'heavy', 'coat.'], ['I', "don't", 'know', 'why', 'that', 'happened.'], ['Tom', 'confessed.'], ['There', 'were', 'no', 'computers', 'in', 'the', 'office.'], ["He's", 'painting', 'his', 'house.'], ["I'd", 'never', 'do', 'that', 'to', 'you.'], ['He', 'laughed', 'at', 'me.'], ["I'd", 'love', 'to', 'go', 'there', 'one', 'day.'], ["I'm", 'ready', 'now,', 'Tom.'], ['Hold', 'your', 'applause,', 'please.'], ['She', 'gave', 'me', 'a', 'present.'], ['What', 'a', 'day!'], ['Is', 'there', 'someone', 'with', 'you?'], ["Don't", 'obey', 'that', 'man.'], ["It's", 'because', 'I', 'love', 'you.'], ["Don't", 'trample', 'on', 'the', 'grass.'], ['You', "can't", 'make', 'us', 'stop.'], ['The', 'band', 'starts', 'playing', 'at', '8:00', 'p.m.'], ["I've", 'got', 'some', 'chores', 'to', 'do.'], ["That's", 'a', 'really', 'good', 'hospital.'], ['I', 'took', 'a', 'shortcut.'], ["We're", 'better', 'than', 'they', 'are.'], ['It', 'looks', 'like', 'we', 'might', 'have', 'to', 'do', 'that.'], ['He', 'seems', 'kind.'], ['Tom', 'glanced', 'at', 'the', 'others.'], ['I', 'ordered', 'a', 'pizza.'], ['They', "won't", 'help', 'you.'], ['Both', 'Tom', 'and', 'I', 'are', 'teachers.'], ['I', 'know', 'you', 'know', 'this.'], ['He', 'was', 'almost', 'drowned.'], ['I', 'met', 'a', 'friend', 'while', 'I', 'was', 'waiting', 'for', 'a', 'bus.'], ['Can', 'you', 'ride', 'a', 'bicycle?'], ['I', 'hate', 'the', 'sound', 'that', 'cellophane', 'makes', 'when', 'you', 'crinkle', 'it.'], ['Why', 'do', 'you', 'hate', 'Canadians', 'so', 'much?'], ['Do', 'you', 'mind', 'if', 'I', 'use', 'your', 'computer?'], ["We've", 'been', 'asked', 'not', 'to', 'do', 'that.'], ['Bring', 'a', 'lunch.'], ['I', "don't", 'think', 'anyone', 'thinks', "you're", 'crazy.'], ["I'm", 'ticklish.'], ["I've", 'known', 'Tom', 'for', 'about', 'three', 'years.'], ['Flowers', 'are', 'growing', 'in', 'the', 'meadow.'], ["You're", 'not', 'safe', 'there.'], ['You', 'were', 'removed', 'from', 'the', 'list.'], ["I'll", 'accept', 'your', 'offer.'], ["He's", 'a', 'smooth', 'talker.'], ['He', 'is', 'a', 'gentleman.'], ['That', 'was', 'totally', 'my', 'fault.'], ['I', 'need', 'to', 'take', 'Monday', 'off.'], ['The', 'company', 'will', 'soon', 'go', 'bankrupt.'], ['You', 'really', "don't", 'need', 'to', 'do', 'that.'], ['I', 'know', 'you', 'love', 'Tom.'], ["I'm", 'miserable.'], ['Tom', 'is', 'from', 'a', 'small', 'town.'], ['What', 'does', 'the', 'sign', 'over', 'the', 'door', 'say?'], ['Tom', 'asked', 'Mary', 'to', 'meet', 'us', 'here.'], ['His', 'play', 'was', 'a', 'hit.'], ['The', 'baby', 'has', 'been', 'crying', 'for', 'a', 'long', 'time.'], ['I', "can't", 'believe', 'I', 'actually', 'said', 'that.'], ["Don't", 'make', 'me', 'ask', 'you', 'again.'], ['Give', 'me', 'a', 'coffee,', 'please.'], ['Look', 'both', 'ways', 'before', 'you', 'cross', 'the', 'street.'], ["I'm", 'well', 'aware', 'of', 'that.'], ['This', 'just', 'might', 'come', 'in', 'handy', 'someday.'], ['I', 'think', 'I', 'know', 'why', 'Tom', "isn't", 'here.'], ['She', 'has', 'been', 'busy', 'since', 'yesterday.'], ['The', 'two', 'of', 'them', 'were', 'never', 'to', 'meet', 'again.'], ['I', 'have', 'nothing', 'in', 'particular', 'to', 'say', 'about', 'this', 'situation.'], ['I', "don't", 'believe', 'in', 'miracles.'], ['Do', 'you', 'have', 'dinner', 'plans?'], ['I', 'was', 'very', 'tired', 'last', 'night.'], ['You', "can't", 'just', 'barge', 'in', 'here', 'whenever', 'you', 'feel', 'like', 'it.'], ['Anyway,', 'I', 'did', 'my', 'best.'], ['I', 'can', 'give', 'it', 'a', 'try.'], ['You', 'have', 'a', 'good', 'lawyer.'], ['My', 'aunt', 'inherited', 'the', 'huge', 'estate.'], ['Tom', 'called', 'Mary', 'last', 'night', 'and', 'encouraged', 'her', 'to', 'join', 'the', 'team.'], ['I', "don't", 'know', 'you.'], ['I', "didn't", 'think', "we'd", 'be', 'able', 'to', 'get', 'in.'], ['I', 'think', 'this', 'is', 'the', 'best', 'plan.'], ['She', 'is', 'not', 'a', 'fan', 'of', 'winter', 'sports.'], ["It'll", 'cost', 'at', 'least', 'five', 'dollars.'], ['Are', 'you', 'done', 'washing', 'your', 'hands?'], ['I', 'appreciate', 'all', 'your', 'help.'], ['Tom', 'must', 'be', 'wrong.'], ['I', 'had', 'no', 'idea', 'you', 'could', 'speak', 'French', 'so', 'well.'], ["It's", 'the', 'dry', 'season', 'here.'], ['You', 'must', 'pay', 'in', 'advance.'], ['How', 'do', 'you', 'know', 'for', 'sure?'], ['Do', 'you', 'believe', 'in', 'reincarnation?'], ['I', 'want', 'you', 'to', 'be', 'prepared.'], ['His', 'speech', 'made', 'no', 'sense', 'to', 'me.'], ['Great', 'weather,', "isn't", 'it?'], ['His', 'hobby', 'is', 'painting', 'pictures', 'of', 'flowers.'], ['I', 'enjoy', 'your', 'company.'], ['Tom', 'is', 'wearing', 'a', 'tie,', "isn't", 'he?'], ['Tom', 'fell', 'off', 'the', 'chair.'], ['I', 'go', 'to', 'the', 'beach', 'almost', 'every', 'day.'], ['I', 'need', 'a', 'partner.'], ["I'm", 'using', 'the', 'computer.'], ['This', 'will', 'be', 'a', 'good', 'souvenir', 'of', 'my', 'trip', 'around', 'the', 'United', 'States.'], ['Can', 'anyone', 'tell', 'me', 'what', 'I', 'should', 'do', 'next?'], ['Do', 'you', 'have', 'any', 'news', 'at', 'all?'], ['I', 'hurried', 'and', 'managed', 'to', 'catch', 'the', 'bus.'], ['Can', 'you', 'account', 'for', 'your', 'absence', 'last', 'Friday?'], ['I', 'attend', 'scientific', 'conferences.'], ['See', 'you', 'on', 'the', 'train.'], ['The', 'number', 'of', 'fish', 'in', 'the', 'ocean', 'is', 'steadily', 'declining.'], ["I'm", 'sorry.', 'I', "didn't", 'mean', 'to', 'make', 'you', 'cry.'], ['My', 'father', 'made', 'me', 'a', 'nice', 'lunch.'], ['Do', 'you', 'feel', 'like', 'eating?'], ['Your', 'plan', 'worked.'], ['Please', "don't", 'distract', 'me', 'from', 'my', 'work.'], ['I', "can't", 'let', 'you.'], ['He', 'moved', 'back', 'with', 'his', 'parents.'], ['May', 'I', 'see', 'your', 'passport?'], ['I', 'bought', 'it.'], ['This', 'is', "today's", 'newspaper.'], ['I', 'rescued', 'you.'], ["What's", 'in', 'the', 'box', 'is', 'none', 'of', 'your', 'business.'], ['Why', 'are', 'you', 'jealous', 'of', 'me?'], ['The', 'two', 'pieces', 'were', 'glued', 'tightly', 'together.'], ['He', 'was', 'always', 'drinking', 'in', 'those', 'days.'], ['I', 'would', 'never', 'forgive', 'myself', 'if', 'anything', 'happened', 'to', 'you.'], ['You', 'spilled', 'your', 'coffee.'], ["He's", 'innocent.'], ['He', 'ran', 'as', 'fast', 'as', 'he', 'could.'], ['He', 'wants', 'you', 'to', 'come', 'home.'], ["Everyone's", 'saying', 'it.'], ["I'm", 'giving', 'you', 'what', 'you', 'want.'], ["I'm", 'looking', 'for', 'you.'], ["That's", 'very', 'sweet', 'of', 'you.'], ['Tom', "didn't", 'choose', 'the', 'same', 'thing', 'Mary', 'did.'], ['Tom', 'likes', 'ponies.'], ['Those', 'twins', 'look', 'like', 'two', 'peas', 'in', 'a', 'pod.'], ['I', "don't", 'have', 'my', 'purse.'], ['I', 'found', 'this', 'under', 'your', 'bed.'], ["Don't", 'change', 'a', 'thing.'], ['They', 'lost', 'again.'], ['The', 'job', 'of', 'a', 'driver', 'is', 'not', 'as', 'easy', 'as', 'it', 'looks.'], ['The', 'milk', 'went', 'sour.'], ['Several', 'people', 'are', 'already', 'waiting.'], ['The', 'village', 'needs', 'your', 'help.'], ['I', 'was', 'forced', 'to', 'go.'], ['How', 'unlucky', 'I', 'am!'], ['I', 'know', 'that', 'you', 'and', 'Tom', 'are', 'friends.'], ['She', 'was', 'absorbed', 'in', 'the', 'video.'], ['Tom', 'hates', 'getting', 'up', 'early', 'in', 'the', 'morning.'], ["I'm", 'sure', 'that', "I'll", 'miss', 'her', 'a', 'lot.'], ['We', 'miss', 'you', 'a', 'lot.'], ['I', 'have', 'a', 'tight', 'schedule.'], ["They're", 'all', 'hungry.'], ['I', 'went', 'to', 'see', 'my', 'parents.'], ['She', 'failed', 'every', 'time', 'she', 'tried.'], ['Tom', 'lives', 'in', 'the', 'apartment', 'above', 'us.'], ['This', 'door', 'would', 'not', 'open.'], ['My', 'friend', 'only', 'eats', 'organic', 'food.'], ["That's", 'a', 'tower.'], ['My', 'Internet', 'connection', "isn't", 'fast', 'enough.'], ['Tom', 'is', 'just', 'joking.'], ["I'd", 'like', 'to', 'remain', 'anonymous.'], ['Time', 'is', 'more', 'precious', 'than', 'anything', 'else.'], ['My', 'sister', 'showers', 'every', 'morning.'], ['What', 'was', 'in', 'it', 'for', 'you?'], ['Spiders', 'scare', 'me.'], ['We', 'intend', 'to', 'do', 'better', 'next', 'year.'], ['Each', 'of', 'them', 'has', 'a', 'bicycle.'], ['I', 'had', 'to', 'make', 'a', 'speech', 'on', 'short', 'notice.'], ['I', 'told', 'Tom', 'why', 'I', 'wanted', 'to', 'do', 'that.'], ['I', 'studied', 'before', 'supper.'], ['I', 'said', "don't", 'do', 'that.'], ['I', 'had', 'my', 'reasons.'], ['She', 'has', 'never', 'fallen', 'in', 'love.'], ['"Who', 'is', 'it?"', '"It\'s', 'your', 'mother."'], ['Why', 'do', 'you', 'want', 'to', 'know?'], ['We', 'have', 'precious', 'little', 'time.'], ["Let's", 'see', 'you', 'talk', 'your', 'way', 'out', 'of', 'this', 'one.'], ['I', 'have', 'hay', 'fever.'], ['I', 'fell', 'in', 'love', 'in', 'an', 'unlikely', 'place.'], ['Tom', 'came', 'to', 'meet', 'me', 'yesterday', 'afternoon.'], ['He', 'borrowed', 'two', 'books.'], ['Well,', 'here', 'we', 'go.'], ['I', "don't", 'believe', "I'm", 'listening', 'to', 'this.'], ['As', 'soon', 'as', 'I', 'can', 'get', 'the', 'chance,', "I'll", 'help', 'your', 'mother', 'paint', 'the', 'fence.'], ['No', 'one', 'is', 'asking', 'you.'], ['Tom', 'probably', "won't", 'win.'], ['Maybe', 'you', 'got', 'the', 'date', 'wrong.'], ['He', "doesn't", 'even', 'remember', 'what', 'happened', 'last', 'night.'], ['Tom', "isn't", 'alone.'], ['Expedited', 'delivery', 'will', 'cost', 'an', 'additional', 'ten', 'dollars.'], ['Why', "shouldn't", 'I', 'do', 'this?'], ['You', 'dropped', 'your', 'handkerchief.'], ['Slaves', 'were', 'considered', 'property.'], ['The', 'Normans', 'conquered', 'England', 'in', '1066.'], ['It', 'was', 'really', 'funny.'], ['You', 'are', 'everything', 'to', 'me.'], ['How', 'do', 'you', 'want', 'to', 'handle', 'it?'], ['You', 'might', 'want', 'to', 'reconsider', 'that.'], ['I', "can't", 'believe', "it's", 'really', 'you.'], ['I', 'hope', 'you', "won't", 'be', 'disappointed.'], ['Are', 'you', 'from', 'around', 'here?'], ['Are', 'you', 'relaxed?'], ['Why', 'are', 'you', 'wearing', 'a', 'tux?'], ['I', "don't", 'think', "that's", 'the', 'whole', 'story.'], ['An', 'apple', 'fell', 'off', 'the', 'tree.'], ['Who', 'would', 'you', 'like', 'to', 'speak', 'to?'], ['One', 'of', 'my', 'wisdom', 'teeth', 'is', 'coming', 'in.'], ["Don't", 'give', 'up', 'halfway.'], ["You're", 'a', 'man', 'now.'], ['He', 'did', 'it', 'not', 'for', 'me', 'but', 'for', 'himself.'], ['As', 'I', 'told', 'you', 'before,', 'I', 'have', 'no', 'choice.'], ['Let', 'me', 'tell', 'you', 'how', 'Tom', 'and', 'Mary', 'met.'], ["You're", 'not', 'very', 'organized,', 'are', 'you?'], ['Tom', 'had', 'no', 'idea', 'how', 'rich', 'Mary', 'was.'], ["You're", 'very', 'generous.'], ['I', "can't", 'stand', 'this', 'stomachache.'], ["You're", 'supposed', 'to', 'help', 'your', 'friends', 'when', "they're", 'in', 'trouble.'], ['Tom', 'heard', 'everything', 'we', 'said.'], ['Pay', 'attention', 'on', 'the', 'road.'], ['Which', 'of', 'you', 'came', 'here', 'first?'], ["I'll", 'come', 'to', 'visit', 'you', 'at', 'your', 'house', 'tomorrow.'], ['I', "don't", 'fear', 'death.'], ["I'm", 'fasting.'], ['Tom', 'seems', 'to', 'be', 'sympathetic.'], ['I', 'like', 'your', 'painting.'], ['Tell', 'me', "I'm", 'not', 'dreaming.'], ['Generally,', 'Japanese', 'people', 'are', 'shy.'], ["I'll", 'pick', 'you', 'up', 'after', 'school.'], ["I'm", 'entitled', 'to', 'my', 'own', 'opinion.'], ['Is', 'this', 'the', 'dictionary', "you're", 'looking', 'for?'], ['He', 'bought', 'her', 'some', 'chocolates.'], ["There's", 'no', 'point', 'doing', 'that.'], ['I', 'think', "I'd", 'like', 'to', 'be', 'a', 'better', 'student.'], ['It', "wasn't", 'just', 'that.'], ['My', 'mother', 'has', 'been', 'dead', 'these', 'ten', 'years.'], ['Maybe', 'he', 'likes', 'you,', 'too.'], ['He', 'died', 'ten', 'years', 'ago.'], ['He', 'tumbled', 'down', 'the', 'stairs.'], ['Come', 'on,', 'try', 'again.'], ['My', 'muscles', 'ached', 'from', 'playing', 'tennis', 'too', 'much.'], ['I', 'must', 'go', 'alone.'], ["It's", 'never', 'too', 'late', 'to', 'make', 'amends', 'for', 'harm', 'done.'], ['He', 'must', 'be', 'tired.'], ['They', 'cut', 'a', 'hole', 'in', 'the', 'ice', 'and', 'swam', 'in', 'the', 'freezing', 'water.'], ['I', 'feel', 'powerless.'], ['Her', 'car', 'broke', 'down', 'on', 'the', 'way.'], ['Let', 'me', 'know', 'what', "you're", 'up', 'to.'], ['Three', 'of', 'these', 'are', "Tom's."], ['Upon', 'seeing', 'what', 'was', 'happening,', 'we', 'decided', 'to', 'leave.'], ['This', 'hall', 'holds', 'two', 'thousand', 'people.'], ['I', 'told', 'her', 'to', 'sit', 'down', 'and', 'to', 'drink', 'a', 'glass', 'of', 'water.'], ['It', "couldn't", 'have', 'happened', 'at', 'a', 'worse', 'time.'], ['I', "don't", 'know', 'what', "I'd", 'do', 'in', 'that', 'situation.'], ['Have', 'you', 'ever', 'seen', 'a', 'spider', 'spinning', 'its', 'web?'], ['Tom', "didn't", 'really', 'mean', 'that,', 'did', 'he?'], ['He', 'looks', 'pale.', 'He', 'must', 'have', 'drunk', 'too', 'much', 'last', 'night.'], ['Can', 'I', 'talk', 'to', 'you', 'a', 'sec?'], ['Are', 'these', 'the', 'only', 'ones', 'you', 'have?'], ["You're", 'grumpy.'], ["What's", 'the', 'harm', 'in', 'trying', 'to', 'do', 'that?'], ['I', 'made', 'up', 'my', 'mind', 'to', 'go', 'there.'], ['What', 'exactly', 'does', 'this', 'button', 'do?'], ['A', 'good', "night's", 'sleep', 'will', 'do', 'you', 'a', 'world', 'of', 'good.'], ['How', 'much', 'does', 'this', 'phone', 'cost?'], ['I', "didn't", 'take', 'the', 'time', 'to', 'do', 'it', 'properly.'], ['Tom', 'has', 'nothing', 'to', 'lose.'], ['Let', 'me', 'see', 'what', 'it', 'looks', 'like.'], ['You', 'seem', 'pretty', 'calm', 'about', 'it.'], ['I', "won't", 'tell', 'you', 'this', 'again.'], ['I', 'hope', 'that', 'my', 'sister', 'will', 'pass', 'the', 'entrance', 'examination.'], ['Here,', 'catch!'], ['Open', 'your', 'eyes.'], ['He', 'wants', 'to', 'speak.'], ["Don't", 'talk', 'to', 'my', 'sister', 'like', 'that.'], ['Who', 'did', 'you', 'talk', 'to?'], ['Her', 'husband', 'is', 'a', 'member', 'of', 'the', 'Oda', 'family.'], ['I', 'hope', 'we', 'can', 'still', 'be', 'friends.'], ['Make', 'it', 'larger.'], ['Can', 'I', 'have', 'one', 'of', 'those?'], ['That', 'will', 'not', 'change.'], ["Don't", 'let', 'anyone', 'enter', 'or', 'approach', 'this', 'room.'], ["What's", 'Tom', 'good', 'at?'], ['I', "couldn't", 'eat', 'another', 'bite.'], ['I', 'want', 'to', 'make', 'you', 'happy.'], ['Why', "don't", 'you', 'tell', 'me', 'how', 'you', 'think', 'it', 'happened?'], ['She', 'showed', 'her', 'courage', 'in', 'the', 'face', 'of', 'danger.'], ['I', "didn't", 'know', 'whether', 'I', 'wanted', 'to', 'go', 'to', 'university.'], ['It', 'did', 'the', 'trick.'], ['My', 'grandfather', 'cannot', 'walk', 'without', 'a', 'walking', 'stick.'], ['She', 'was', 'in', 'a', 'hurry', 'to', 'go', 'home.'], ['Tom', 'lives', '10', 'miles', 'from', 'the', 'Canadian', 'border.'], ['You', 'remind', 'me', 'of', 'a', 'boy', 'I', 'used', 'to', 'know.'], ['You', "don't", 'even', 'know', 'who', 'they', 'are.'], ['Tom', 'claims', 'to', 'have', 'psychic', 'powers.'], ["When's", 'dinner', 'served?'], ["It's", 'not', 'a', 'bad', 'thing.'], ['We', 'went', 'on', 'a', 'picnic', 'together.'], ['He', 'is', 'the', 'man', 'you', 'met', 'the', 'other', 'day.'], ['It', 'was', 'a', 'good', 'movie.'], ['I', 'gave', 'you', 'fair', 'warning.'], ['Stay', 'in', 'this', 'room.'], ["That's", 'not', 'what', 'I', 'think.'], ['Some', 'parts', 'of', 'this', 'city', 'are', 'very', 'ugly.'], ['Tom', 'is', 'interested', 'in', 'mountaineering.'], ['Getting', 'married', 'is', 'a', 'serious', 'matter.'], ['Keep', 'your', 'hands', 'off', 'my', 'daughter!'], ['Tom', 'was', 'right', 'after', 'all.'], ['You', 'should', 'always', 'wash', 'your', 'hands', 'before', 'meals.'], ["He's", 'not', 'one', 'of', 'us.'], ["I'm", 'proud', 'of', 'you.'], ['Tom', 'closed', 'his', 'eyes', 'again.'], ['I', 'hope', 'it', 'rains.'], ['Are', 'you', 'coming', 'to', 'the', 'party?'], ['The', 'boy', 'made', 'a', 'paper', 'plane.'], ['Are', 'you', 'still', 'scared?'], ['God', 'sent', 'a', 'sign.'], ['I', 'want', 'to', 'know', 'where', 'they', 'are.'], ['Tom', 'is', 'nuts.'], ["You're", 'grounded.'], ['I', 'understand', 'what', "you're", 'saying.'], ['Make', 'yourselves', 'comfortable.'], ['Eggs', 'are', 'sold', 'by', 'the', 'dozen.'], ['He', 'had', 'his', 'shirt', 'on', 'inside', 'out.'], ['I', 'like', 'this', 'store.'], ['He', 'has', 'spent', 'three', 'years', 'writing', 'this', 'novel.'], ['I', "don't", 'see', 'anything', 'wrong', 'with', 'that.'], ['It', 'was', 'a', 'waste', 'time', 'for', 'all', 'of', 'us.'], ['Be', 'polite', 'to', 'your', 'parents.'], ['Their', 'muscles', 'are', 'stiff.'], ['What', 'happened', 'to', 'your', 'car?'], ["Aren't", 'you', 'going', 'to', 'open', 'the', 'box?'], ['Bad', 'weather', 'prevented', 'them', 'from', 'sailing.'], ['Tom', 'noticed', 'that', 'his', 'hands', "weren't", 'clean.'], ["You're", 'very', 'rude.'], ['Eat', 'as', 'much', 'as', 'you', 'like.'], ['I', 'decided', 'to', 'go', 'there.'], ['Your', "life's", 'in', 'danger.'], ['She', 'lives', 'in', 'an', 'apartment', 'alone.'], ["I'm", 'one', 'of', 'the', 'thirty', 'people', 'who', 'need', 'to', 'do', 'that.'], ['I', "can't", 'make', 'that', 'decision', 'for', 'you.'], ['I', 'think', 'I', 'may', 'know', 'where', 'to', 'find', 'Tom.'], ['I', "don't", 'know', 'what', "you're", 'waiting', 'for.'], ['If', "you're", 'looking', 'for', 'Tom,', "he's", 'not', 'here.'], ['I', 'need', 'pens,', 'notebooks', 'and', 'so', 'on.'], ["You're", 'not', 'even', 'close', 'to', 'the', 'right', 'answer.'], ['I', 'guess', 'we', 'should', 'leave', 'now.'], ['If', 'you', 'want', 'to', 'come,', 'you', 'can.'], ['He', 'felt', 'in', 'his', 'pocket', 'for', 'his', 'wallet.'], ["You're", 'quite', 'attractive.'], ['She', 'always', 'prides', 'herself', 'on', 'her', 'academic', 'background.'], ['Almost', 'all', 'the', 'leaves', 'have', 'fallen.'], ['Would', 'you', 'do', 'it?'], ['There', 'is', 'one', 'apple', 'on', 'the', 'desk.'], ['Make', 'an', 'appointment.'], ['Speak', 'louder', 'so', 'everyone', 'can', 'hear', 'you.'], ['He', 'was', 'underwater', 'for', 'three', 'minutes.'], ['He', 'spent', 'another', 'sleepless', 'night', 'watching', 'television.'], ['This', 'novel', 'is', 'boring.'], ['We', 'really', 'are', 'hungry.'], ['Do', 'you', 'know', 'who', 'lives', 'in', 'that', 'house?'], ['I', 'go', 'home', 'right', 'after', 'work.'], ['I', 'guess', 'that', 'would', 'be', 'all', 'right.'], ['He', 'spends', 'all', 'his', 'time', 'extolling', 'her', 'virtues.'], ['Women', 'like', 'colorful', 'umbrellas.'], ['They', 'built', 'a', 'safe', 'building', 'for', 'earthquakes.'], ["Don't", 'forget', 'to', 'see', 'me', 'tomorrow', 'morning.'], ['The', 'sky', 'was', 'gray.'], ['It', 'was', 'time', 'for', 'lunch.'], ['I', 'was', 'very', 'surprised', 'at', 'the', 'news.'], ["Don't", 'answer', 'that.'], ['What', 'year', 'were', 'you', 'born?'], ['Is', 'this', 'fish', 'still', 'alive?'], ["I'm", 'pleased', 'with', 'his', 'performance.'], ['Is', 'the', 'sun', 'up', 'yet?'], ['Two', 'ice', 'creams,', 'please.'], ["They're", 'part', 'of', 'us.'], ['Please', 'get', 'in.'], ['I', "don't", 'need', 'your', 'help', 'anymore.'], ['We', 'have', 'to', 'figure', 'out', 'when', 'the', 'best', 'time', 'to', 'buy', 'that', 'stock', 'is.'], ['I', 'was', 'never', 'in', 'love', 'with', 'Tom.'], ['This', 'is', 'infuriating.'], ['I', "don't", 'want', 'it', 'anymore.'], ['I', 'want', 'you', 'to', 'write', 'to', 'me', 'as', 'soon', 'as', 'you', 'get', 'there.'], ['You', "wouldn't", 'have', 'won', 'without', 'me.'], ['I', 'feel', 'your', 'pain.'], ["That's", 'what', 'I', "don't", 'understand.'], ['He', 'made', 'a', 'thorough', 'analysis', 'of', 'the', 'problem.'], ["I'm", 'here', 'to', 'talk', 'about', 'Tom.'], ['You', 'must', 'do', 'this', 'alone.'], ["That's", 'an', 'amazing', 'distance,', "isn't", 'it?'], ['When', 'it', 'comes', 'to', 'marital', 'spats,', "there's", 'usually', 'two', 'sides', 'to', 'the', 'story.'], ["I've", 'done', 'that', 'all', 'my', 'life.'], ['I', 'fell', 'down', 'the', 'stairs.'], ['I', "can't", 'really', 'remember.'], ['Go', 'to', 'your', 'room', 'now!'], ['If', 'I', 'were', 'rich,', 'I', 'would', 'go', 'abroad.'], ['The', 'swimmer', 'raised', 'his', 'head', 'and', 'gasped', 'for', 'breath.'], ['I', "didn't", 'expect', 'that', 'result.'], ['Can', 'you', 'really', 'not', 'swim?'], ['Greater', 'demand', 'for', 'high-quality', 'coffee', 'has', 'helped', 'drive', 'coffee', 'prices', 'higher.'], ['The', 'landscape', 'is', 'unfamiliar', 'to', 'me.'], ['Tom', 'is', 'a', 'fairly', 'good', 'skier.'], ['I', 'know', 'these', 'students.'], ["Tom's", 'stoned.'], ['The', 'airline', 'sent', 'my', 'suitcase', 'to', 'Boston', 'by', 'mistake.'], ['Where', 'are', 'we', 'going', 'tomorrow?'], ["I'll", 'water', 'the', 'garden.'], ['I', 'have', 'some', 'good', 'news', 'for', 'you.'], ['That', 'is', 'mine.'], ['Tom', "didn't", 'tell', 'me', 'this.'], ['I', 'was', 'stung', 'by', 'a', 'bee.'], ['The', 'boy', 'is', 'very', 'honest.'], ['None', 'of', 'these', 'are', 'good', 'enough.'], ['He', 'defeated', 'his', 'enemy.'], ['She', 'seems', 'to', 'be', 'sick.'], ['I', 'lied', 'on', 'my', 'job', 'application.'], ['This', 'room', 'is', 'very', 'warm.'], ['The', 'music', 'carried', 'me', 'back', 'to', 'my', 'childhood.'], ['I', 'plan', 'on', 'being', 'there', 'in', 'person.'], ['Do', 'you', 'know', 'what', 'day', 'it', 'is', 'today?'], ['My', 'idea', 'is', 'quite', 'different', 'from', 'yours.'], ['We', 'are', 'looking', 'forward', 'to', 'going', 'on', 'a', 'hike', 'next', 'week.'], ['He', 'forgot', 'to', 'lock', 'the', 'door.'], ['I', "don't", 'want', 'you', 'to', 'feel', 'alone.'], ["I'm", 'at', 'work.'], ['I', 'have', 'some', 'very', 'sad', 'news.'], ["We're", 'freezing.'], ['I', 'have', 'an', 'old', 'car.'], ['He', 'must', 'be', 'crazy', 'to', 'say', 'such', 'a', 'thing.'], ['This', 'is', 'a', 'daily', 'occurrence.'], ['Her', 'book', 'is', 'very', 'interesting.'], ['I', 'was', 'as', 'surprised', 'as', 'you.'], ['Would', 'you', 'like', 'to', 'hear', 'my', 'new', 'song?'], ['I', "don't", 'care', 'where', 'we', 'eat', 'dinner.', "It's", 'entirely', 'up', 'to', 'you.'], ['She', 'acted', 'in', 'a', 'play', 'for', 'the', 'first', 'time.'], ['Tom', 'often', 'goes', 'shopping', 'alone.'], ['You', "don't", 'look', 'so', 'busy.'], ['Are', 'you', 'sure', "that's", 'necessary?'], ['The', 'last', 'part', 'of', 'the', 'trip', 'was', 'across', 'the', 'desert.'], ['How', 'was', 'the', 'beach?'], ['I', 'really', 'enjoyed', 'last', 'night.'], ['Why', 'have', 'you', 'been', 'avoiding', 'me?'], ['Hemingway', 'enjoyed', 'big', 'game', 'hunting', 'in', 'Africa.'], ['I', 'know', 'almost', 'nothing', 'about', 'you.'], ['Why', 'are', 'you', 'so', 'busy', 'all', 'the', 'time?'], ['He', 'will', 'play', 'tennis', 'tomorrow.'], ['Tom', 'refused', 'to', 'sign', 'his', 'name.'], ["Don't", 'worry.', "You'll", 'make', 'it.'], ['Am', 'I', 'talented?'], ["I'm", 'looking', 'for', 'a', 'wallet.'], ['We', 'have', 'to', 'do', 'that', 'this', 'week.'], ["It's", 'gradually', 'getting', 'colder.'], ['The', 'day', 'will', 'soon', 'come', 'when', 'we', 'will', 'be', 'able', 'to', 'predict', 'earthquakes.'], ['Do', 'you', 'want', 'this', 'or', "don't", 'you?'], ['You', 'used', 'to', 'love', 'swimming.'], ['Enjoy', 'your', 'meal.'], ['My', 'family', 'are', 'all', 'early', 'risers.'], ["We're", 'not', 'interested.'], ['I', 'respect', 'your', 'talent.'], ['He', 'was', 'more', 'surprised', 'than', 'I', 'had', 'expected.'], ['Something', 'is', 'the', 'matter', 'with', 'this', 'TV', 'set.'], ['How', 'old', 'were', 'you', 'when', 'you', 'did', 'that?'], ['This', 'is', 'my', 'friend.'], ['Justice', 'will', 'be', 'served,', 'whether', 'here', 'or', 'in', 'the', 'hereafter.'], ['I', 'feel', 'like', 'I', 'could', 'sleep', 'all', 'day.'], ['It', 'was', 'cloudy,', 'with', 'occasional', 'rain.'], ['I', 'just', "can't", 'help', 'you', 'right', 'now.'], ['Tom', 'is', 'richer', 'than', 'most', 'of', 'you.'], ['The', 'soup', 'is', 'too', 'salty.'], ['I', 'need', 'to', 'warn', 'my', 'mom.'], ['You', 'need', 'to', 'be', 'prepared.'], ['You', 'have', 'to', 'go', 'on', 'without', 'me.'], ['We', 'have', 'to', 'acknowledge', 'that.'], ["It's", 'supposed', 'to', 'get', 'colder', 'and', 'snow', 'later', 'today.'], ['Tom', 'stepped', 'into', 'the', 'elevator', 'and', 'pushed', 'the', 'button', 'for', 'the', 'third', 'floor.'], ['I', "haven't", 'had', 'dinner.'], ['It', 'would', 'be', 'interesting', 'to', 'see', 'if', 'we', 'could', 'do', 'that.'], ['"Why', "don't", 'you', 'come?"', '"Because', 'I', "don't", 'want', 'to."'], ["We're", 'reading.'], ['That', 'was', 'a', 'lot', 'of', 'fun.'], ['A', 'poet', 'looks', 'at', 'the', 'world', 'as', 'a', 'man', 'looks', 'at', 'a', 'woman.'], ['We', 'did', 'it.'], ['He', 'says', 'he', "won't", 'come.'], ["You'd", 'better', 'take', 'care', 'of', 'it.'], ['If', 'you', "don't", 'want', 'to', 'give', 'a', 'speech,', 'you', "don't", 'have', 'to.'], ['You', "can't", 'believe', 'that.'], ['Money', "doesn't", 'necessarily', 'make', 'you', 'happier.'], ['The', 'wreckage', 'is', 'scattered', 'over', 'a', 'large', 'area.'], ['I', 'have', 'to', 'buy', 'a', 'new', 'scanner.'], ['Tom', 'asked', 'Mary', 'to', 'call', 'the', 'police.'], ['Does', 'this', 'look', 'familiar', 'to', 'you?'], ['I', 'would', 'like', 'to', 'purchase', 'some', 'boots.'], ['Tom', 'tried', 'in', 'vain', 'to', 'hide', 'his', 'pain.'], ['I', 'just', 'wanted', 'to', 'say', 'thank', 'you.'], ['"Will', 'it', 'rain?"', '"I', 'hope', 'not."'], ['I', "can't", 'do', 'it', 'by', 'myself.'], ["Didn't", 'I', 'mention', 'that?'], ['I', 'aimed', 'my', 'gun', 'at', 'the', 'target.'], ['I', 'thought', 'Tom', 'was', 'sick.'], ['Tom', 'salted', 'his', 'eggs.'], ["You're", 'right', 'about', 'that', 'one.'], ["She's", 'pleased', 'with', 'her', 'new', 'dress.'], ['May', 'I', 'go', 'home?'], ['I', 'want', 'to', 'get', 'married.'], ["We're", 'just', 'about', 'finished', 'for', 'the', 'day.'], ['There', 'are', 'many', 'talented', 'people', 'in', 'our', 'city,', 'but', 'Tom', "isn't", 'one', 'of', 'them.'], ["That's", 'not', 'love.'], ['We', 'have', 'different', 'points', 'of', 'view.'], ['I', 'unfolded', 'the', 'map', 'on', 'the', 'desk.'], ['How', 'come', "I've", 'never', 'seen', 'you', 'here', 'before?'], ["It'll", 'be', 'better', 'next', 'time.'], ['Come', 'on,', "let's", 'try', 'it.'], ['I', 'want', 'to', 'stretch', 'my', 'legs.'], ['So', 'how', 'mad', 'are', 'you?'], ['I', 'seem', 'to', 'be', 'lost.'], ['You', 'look', 'busy.'], ["Don't", 'be', 'sad.'], ['What', 'are', 'you', 'up', 'to?'], ['This', 'food', 'is', 'gluten-free.'], ['I', 'think', 'he', 'is', 'a', 'doctor.'], ['Tom', "didn't", 'know', 'what', 'else', 'to', 'say.'], ['He', 'danced', 'all', 'night', 'long.'], ['Are', 'you', 'sure', "we've", 'never', 'met', 'before?'], ['It', 'costs', 'an', 'arm', 'and', 'a', 'leg.'], ['Have', 'you', 'seen', 'my', 'camera?'], ['My', 'leg', 'is', 'still', 'hurting.'], ['Why', 'would', 'you', 'ask', 'that?'], ["I'm", 'happier', 'than', "I've", 'ever', 'been.'], ['How', 'many', 'more', 'forks', 'do', 'you', 'need?'], ["I'd", 'better', 'not', 'tell', 'you', 'about', 'that', 'now.'], ['The', 'bullet', 'cut', 'through', 'an', 'artery.'], ["I'm", 'sorry,', 'but', 'I', 'already', 'have', 'a', 'boyfriend.'], ["Don't", 'be', 'mean.'], ['Atomic', 'energy', 'can', 'be', 'used', 'for', 'peaceful', 'ends.'], ['She', 'served', 'the', 'family', 'for', 'twenty', 'years.'], ['He', 'tried', 'to', 'get', 'me', 'to', 'help', 'him.'], ['Tom', 'refused', 'to', 'keep', 'working.'], ['He', 'likes', 'baseball', 'very', 'much.'], ["I'll", 'need', 'you', 'to', 'be', 'there.'], ['This', 'watch', 'is', 'made', 'in', 'Japan.'], ['Everything', 'was', 'happening', 'so', 'fast.'], ['I', 'admit,', "I'm", 'not', 'the', 'tidiest', 'person', 'in', 'the', 'world.'], ['I', 'was', 'probably', 'thirty', 'years', 'old', 'at', 'that', 'time.'], ['I', 'am', 'sorry.', 'I', 'am', 'not', 'from', 'here.'], ["I've", 'always', 'liked', 'your', 'hair', 'that', 'way.'], ["You're", 'new', 'here,', "aren't", 'you?'], ['He', 'went', 'home', 'yesterday.'], ['Is', 'it', 'any', 'warmer', 'inside?'], ['Who', 'is', 'this', 'guy?'], ['Where', 'are', 'my', 'trousers?'], ['I', 'have', 'no', 'idea', 'what', 'that', 'could', 'be.'], ["Don't", 'burst', 'my', 'bubble.'], ['You', 'like', 'elephants.'], ['Here', 'we', 'go.'], ['"How', 'old', 'are', 'you?"', '"I\'m', '16', 'years', 'old."'], ['I', 'was', 'just', 'talking', 'to', 'your', 'mother.'], ['I', 'hope', "you're", 'staying', 'for', 'dinner.'], ['Please', 'give', 'me', 'this', 'book.'], ['How', 'many', 'pictures', 'has', 'Tom', 'taken?'], ['You', 'seemed', 'to', 'like', 'that.'], ['Tom', 'became', 'a', 'successful', 'photographer.'], ["That's", 'what', "we've", 'been', 'told.'], ['A', 'car', 'has', 'one', 'steering', 'wheel.'], ['Tom', "didn't", 'know', 'what', 'to', 'say', 'to', 'Mary.'], ['Do', 'you', 'understand', 'what', "I'm", 'saying?'], ['She', 'was', 'fully', 'clothed.'], ['Millions', 'of', 'people', 'starve', 'to', 'death', 'every', 'year.'], ['Do', 'you', 'know', 'anyone', 'here?'], ['I', 'know', 'what', "they're", 'capable', 'of.'], ['"Why', 'have', 'you', 'started', 'learning', 'to', 'play', 'the', 'piano?"', '"Because', 'I', 'want', 'to', 'be', 'a', 'music', 'teacher."'], ['You', 'were', 'there,', "weren't", 'you?'], ['Remove', 'your', 'hat.'], ['I', 'want', 'to', 'buy', 'a', 'shirt', 'for', 'my', 'brother.'], ['How', 'did', 'you', 'get', 'interested', 'in', 'art?'], ['He', 'may', 'not', 'have', 'known', 'the', 'formula.'], ["How's", 'the', 'water?'], ['I', 'just', 'got', 'married.'], ['She', 'was', 'coming', 'down', 'the', 'stairs.'], ['I', 'found', 'it', 'in', 'the', 'attic.'], ['I', 'ate', 'about', 'half', 'of', 'it', 'and', 'left', 'the', 'rest', 'on', 'my', 'plate.'], ['I', "didn't", 'say', 'you', 'were', 'crazy.'], ['This', 'type', 'of', 'cat', 'has', 'no', 'tail.'], ['We', 'all', 'work.'], ['I', "didn't", 'get', 'the', 'job.'], ['She', 'was', 'busy', 'with', 'housework.'], ['And', 'now', 'you', 'wish', 'perhaps', 'to', 'learn', 'on', 'less', 'familiar', 'traps?'], ["They're", 'sending', 'help.'], ['I', 'refused', 'to', 'believe', 'it.'], ['She', 'regrets', 'having', 'never', 'been', 'there.'], ["I'll", 'take', 'anything.'], ['I', 'would', 'like', 'to', 'improve', 'my', 'English', 'pronunciation.'], ["It's", 'a', 'bargain.'], ['I', "don't", 'know', 'what', "you're", 'interested', 'in.'], ["We're", 'all', 'in', 'agreement.'], ['I', 'took', 'care', 'of', 'it', 'for', 'you.'], ['Is', 'that', 'really', 'what', 'you', 'want?'], ['I', 'promise', 'you', "won't", 'be', 'disappointed.'], ['I', "don't", 'want', 'you', 'to', 'be', 'upset.'], ['She', 'is', 'dead.'], ['The', 'boat', 'drifted', 'down', 'the', 'stream.'], ['Tom', "didn't", 'attend', "today's", 'meeting.'], ["What're", 'you', 'laughing', 'at?'], ['He', 'must', 'have', 'entered', 'this', 'room.'], ['Tom', 'left', 'early', 'this', 'morning.'], ["Don't", 'tell', 'Tom', 'anything.'], ['What', 'do', 'you', 'think', "you're", 'doing', 'letting', 'the', 'loyalists', 'into', 'the', 'castle?'], ['Do', 'you', 'have', 'enough', 'money?'], ['The', 'police', 'are', 'investigating', 'the', 'cause', 'of', 'the', 'crash.'], ['Look', 'at', 'that', 'dog.'], ['I', "haven't", 'heard', 'from', 'him', 'for', 'ages.'], ['He', 'ordered', 'us', 'steaks.'], ["We'll", 'wait', 'here.'], ['I', 'do', 'not', 'fear', 'death.'], ['What', 'an', 'interesting', 'theory!'], ["I'm", 'awfully', 'tired.'], ['These', 'trees', 'are', 'beautiful.'], ['Did', 'you', 'enjoy', 'the', 'show?'], ["You'll", 'feel', 'better', 'after', 'a', 'bath.'], ["I'm", 'here', 'to', 'ask', 'for', 'your', 'help.'], ['We', 'had', 'next', 'to', 'nothing', 'in', 'the', 'kitchen.'], ['Surround', 'yourself', 'only', 'with', 'people', 'who', 'are', 'going', 'to', 'lift', 'you', 'higher.'], ['I', 'know', 'neither', 'of', 'them.'], ["That's", 'what', 'you', 'should', 'say.'], ['Would', 'you', 'care', 'for', 'drinks?'], ["I'm", 'about', 'the', 'same', 'height', 'as', 'Tom.'], ["You're", 'the', 'second', 'person', "that's", 'said', 'that', 'to', 'me', 'today.'], ['Tom', 'came', 'on', 'Monday', 'and', 'went', 'back', 'the', 'day', 'after.'], ['I', "can't", 'believe', 'what', "I'm", 'seeing.'], ['He', 'is', 'a', 'tough', 'cookie.'], ['You', 'love', 'that', 'house,', "don't", 'you?'], ["It's", 'adorable.'], ['He', 'is', 'the', 'very', 'man', 'for', 'the', 'job.'], ['I', 'feel', 'lost', 'without', 'you.'], ['This', 'old', 'building', "isn't", 'worth', 'fixing', 'up.', 'It', 'would', 'be', 'better', 'to', 'tear', 'it', 'down.'], ['Tom', 'smells', 'awful.'], ['Tom', 'looked', 'for', 'his', 'glasses.'], ['They', "don't", 'care.'], ['I', 'left', 'the', 'party', 'too', 'early.'], ['She', 'introduced', 'her', 'sister', 'to', 'him.'], ["That's", 'when', 'I', 'injured', 'my', 'ankle.'], ['I', 'want', 'you', 'to', 'go', 'upstairs.'], ['Do', 'you', 'really', 'like', 'that?'], ['She', 'is', 'quick', 'at', 'everything.'], ['They', 'knocked', 'on', 'the', 'door', 'and', 'said', 'they', 'had', 'come', 'to', 'arrest', 'him.'], ['Is', 'there', 'anyone', 'here', 'who', 'knows', 'someone', 'in', 'Australia?'], ['There', 'is', 'a', 'very', 'old', 'temple', 'in', 'the', 'town.'], ['I', 'visit', 'him', 'every', 'other', 'day.'], ['We', 'just', 'have', 'to', 'get', 'out', 'of', 'here.'], ['You', 'should', 'try', 'doing', 'that.'], ['I', 'know', 'that', "you're", 'smart.'], ['I', 'speak', 'French', 'every', 'day', 'at', 'work.'], ["I'll", 'tell', 'Tom', 'you', 'called.'], ['I', 'caught', 'a', 'cold.'], ['I', 'feel', 'very', 'betrayed.'], ['Can', 'I', 'go', 'to', 'bed', 'now?'], ['Tom', 'says', "he's", 'seen', 'a', 'ghost.'], ["It's", 'important', 'to', 'know', "one's", 'limits.'], ['She', 'protested', 'weakly,', 'but', 'ended', 'up', 'joining', 'in', 'with', 'everyone', 'else.'], ['Let', 'me', 'write', 'it', 'down', 'so', 'I', "don't", 'forget.'], ['Why', 'did', 'you', 'buy', 'the', 'flowers?'], ['I', "didn't", 'tell', 'anyone', 'what', 'time', "I'd", 'be', 'arriving.'], ['My', 'wife', 'is', 'going', 'out', 'of', 'town', 'for', 'a', 'few', 'days.'], ['The', 'treaty', 'was', 'signed.'], ['Am', 'I', 'right?'], ['I', "haven't", 'seen', 'you', 'around', 'before.'], ['Do', 'you', 'understand', "what's", 'going', 'on?'], ['Shut', 'up!'], ['Is', 'Tom', 'a', 'member?'], ['Please', 'show', 'me', 'what', 'to', 'do', 'next.'], ['Who', 'believes', 'that?'], ['They', 'eat', 'chocolate.'], ['I', 'received', 'a', 'letter', 'written', 'in', 'English', 'yesterday.'], ['I', 'am', 'sure', 'of', 'his', 'success.'], ['Which', 'hat', 'do', 'you', 'want', 'to', 'buy?'], ['I', 'thought', 'I', 'heard', 'you.'], ['You', 'look', 'like', 'a', 'lawyer.'], ['Most', 'of', 'this', "building's", 'tenants', 'are', 'artists.'], ['Are', 'you', 'relaxed?'], ['Take', 'it', 'easy.'], ['There', 'were', 'no', 'problems.'], ['You', "can't", 'count', 'on', "Tom's", 'help.'], ['I', 'guess', "that's", 'OK.'], ['Can', 'you', 'tell', 'what', 'kind', 'of', 'apple', 'this', 'is?'], ['Of', 'course,', 'he', 'is', 'right.'], ['Mary', 'has', 'her', 'problems.'], ['We', 'think', 'we', 'can', 'handle', 'that.'], ['They', 'were', 'stupid', 'not', 'to', 'follow', 'your', 'advice.'], ['Lie', 'on', 'the', 'bench', 'for', 'a', 'while', 'with', 'your', 'eyes', 'closed.'], ['To', 'put', 'it', 'briefly,', 'she', 'turned', 'down', 'his', 'proposal.'], ['Short', 'skirts', 'have', 'already', 'gone', 'out', 'of', 'fashion.'], ["I'm", 'not', 'sure', "I'm", 'ready.'], ['Did', 'you', 'get', 'the', 'loan?'], ['I', "don't", 'think', 'any', 'of', 'them', 'know.'], ['She', 'took', 'him', 'to', 'the', 'store.'], ['What', 'Tom', 'said', 'made', 'you', 'angry,', "didn't", 'it?'], ['Drink', 'it', 'down.'], ['Tom', 'seems', 'to', 'be', 'in', 'love.'], ['He', 'denied', 'that', 'he', 'was', 'the', 'thief.'], ['People', 'in', 'these', 'areas', 'are', 'growing', 'hungrier', 'each', 'year.'], ['I', 'wanted', 'to', 'retire', 'three', 'years', 'ago.'], ['I', "haven't", 'decided', 'yet', 'if', 'I', 'want', 'to', 'go.'], ['We', 'were', 'surprised', 'to', 'hear', 'the', 'news.'], ["I'd", 'like', 'Tom', 'to', 'be', 'happy.'], ['Please', 'paint', 'the', 'door', 'white.'], ['Every', 'door', 'in', 'the', 'house', 'is', 'locked.'], ['She', 'managed', 'to', 'learn', 'to', 'drive', 'a', 'car.'], ["I'll", 'get', 'in', 'touch', 'with', 'you', 'next', 'week.'], ['My', 'wife', 'wanted', 'to', 'adopt', 'a', 'child.'], ['These', 'shoes', 'are', 'very', 'comfortable.'], ['Tom', 'has', 'a', 'big', 'TV.'], ["Don't", 'be', 'alarmed.'], ['I', 'really', "can't", 'be', 'late.'], ['Are', 'you', 'going', 'to', 'sing', 'with', 'us?'], ['We', 'need', 'to', 'talk.'], ['Will', 'you', 'please', 'help', 'me?'], ['I', "can't", 'afford', 'a', 'pay', 'cut.'], ['Well,', "let's", 'go.'], ['This', 'is', 'ludicrous.'], ['He', 'treated', 'me', 'badly.'], ['Her', 'sister', 'looks', 'young.'], ['Did', 'you', 'come', 'here', 'alone?'], ['This', 'is', 'how', 'it', 'happened.'], ['I', 'work', 'hard', 'in', 'the', 'garden.'], ['I', "haven't", 'written', 'anything', 'for', 'months.'], ['I', 'heard', 'you', 'switched', 'majors.'], ['The', 'wound', 'is', 'not', 'yet', 'healed.'], ["You're", 'no', 'different.'], ["Let's", 'hope', 'for', 'good', 'results.'], ['My', 'sister', 'has', 'a', 'piano.'], ['Spring', 'is', 'just', 'around', 'the', 'corner.'], ['They', 'do', 'it', 'faster', 'than', 'us.'], ['Do', 'you', 'want', 'to', 'do', 'this', 'now?'], ['Can', 'you', 'help', 'me', 'translate', 'that', 'into', 'French?'], ["Let's", 'be', 'honest', 'with', 'each', 'other.'], ["I'll", 'help', 'you', 'as', 'much', 'as', 'possible.'], ["Don't", 'try', 'to', 'fool', 'me.'], ['He', 'kept', 'reading', 'the', 'book.'], ['We', 'miss', 'you.'], ['I', 'just', 'want', 'to', 'make', 'sure', 'we', 'all', 'agree.'], ["We're", 'really', 'lucky.'], ['Is', 'there', 'a', 'hospital', 'around', 'here?'], ['Few', 'people', 'live', 'to', 'be', 'ninety', 'years', 'old.'], ["I'm", 'sending', 'the', 'invoice', 'by', 'fax.'], ['We', "can't", 'just', 'sit', 'here.'], ['Let', 'me', 'know', 'your', 'address.'], ['I', 'got', 'soaking', 'wet.'], ['I', 'refuse', 'to', 'answer', 'the', 'question.'], ['He', 'writes', 'letters', 'to', 'his', 'mother.'], ['I', "don't", 'remember', 'anything', 'happening.'], ['Tom', 'emigrated', 'to', 'Australia.'], ['Have', 'you', 'been', 'told', 'when', 'to', 'come?'], ['I', "wasn't", 'interested', 'in', 'the', 'job.'], ["You're", 'right,', 'I', 'think.'], ['Can', 'you', 'make', 'it', 'go', 'any', 'faster?'], ['Glass', 'breaks', 'easily.'], ["It's", 'very', 'clean.'], ['You', 'are', 'not', 'Japanese.'], ['This', 'water', 'is', 'safe', 'to', 'drink.'], ['My', 'dad', 'gives', 'me', 'an', 'allowance', 'of', '$10', 'a', 'week.'], ['I', 'can', 'imagine', 'how', 'you', 'felt.'], ['We', 'had', 'fun,', "didn't", 'we?'], ['Pollution', 'is', 'a', 'serious', 'problem', 'in', 'China.'], ['I', 'had', 'the', 'strangest', 'dream', 'last', 'night.'], ['Where', 'are', 'we', 'going', 'to', 'eat', 'tonight?'], ['Did', 'you', 'hear', 'that?'], ['You', "could've", 'just', 'told', 'me.'], ['Tom', 'should', 'let', 'Mary', 'know', 'that', 'he', 'likes', 'her.'], ['You', 'have', 'a', 'good', 'job.'], ['Has', 'something', 'happened', 'to', 'Tom?'], ['The', 'capital', 'city', 'of', 'France', 'is', 'Paris.'], ['He', 'takes', 'a', 'walk', 'every', 'morning.'], ['Nothing', 'happened', 'between', 'us.'], ['That', 'was', 'very', 'good.'], ['The', 'mystery', 'of', 'her', 'death', 'was', 'never', 'solved.'], ['They', 'will', 'be', 'very', 'glad.'], ['Talking', 'in', 'the', 'library', 'is', 'not', 'allowed.'], ['He', "doesn't", 'have', 'enough', 'experience.'], ['I', 'want', 'to', 'go', 'over', 'a', 'few', 'things', 'with', 'you.'], ['Where', 'should', 'we', 'do', 'that?'], ['Tom', "isn't", 'sure', 'what', 'time', 'the', 'party', 'starts.'], ['Which', 'floor', 'do', 'you', 'live', 'on?'], ['They', 'seem', 'to', 'have', 'had', 'a', 'good', 'time', 'in', 'Rome.'], ['I', 'do', 'think', 'that', 'Tom', 'is', 'dangerous.'], ['I', 'think', 'perhaps', "you're", 'right.'], ['They', 'worked', 'each', 'day', 'from', 'the', 'time', 'the', 'sun', 'rose', 'until', 'it', 'set.'], ['A', 'committee', 'is', 'a', 'group', 'of', 'people', 'who', 'individually', 'can', 'do', 'nothing,', 'but', 'who,', 'as', 'a', 'group,', 'can', 'meet', 'and', 'decide', 'that', 'nothing', 'can', 'be', 'done.'], ['The', 'post', 'office', 'is', 'to', 'the', 'right.'], ['There', 'is', 'a', 'place', 'for', 'everyone', 'in', 'the', 'world.'], ['This', 'house', 'has', 'two', 'bathrooms.'], ['Tom', "didn't", 'want', 'to', 'go', 'any', 'further.'], ['Nothing', 'is', 'ever', 'right.'], ['I', 'drank', 'beer', 'out', 'of', 'a', 'plastic', 'cup.'], ['He', "can't", 'stop', 'thinking', 'like', 'that.'], ["I'd", 'like', 'to', 'go', 'home.'], ['This', 'could', 'take', 'a', 'while.'], ['He', 'speaks', 'two', 'languages', 'besides', 'English.'], ['I', 'have', 'seen', 'enough.'], ['Tom', 'is', 'a', 'well-informed', 'person.'], ["You're", 'such', 'a', 'flirt.'], ['I', 'went', 'fishing', 'last', 'Monday.'], ['He', 'knows', 'how', 'to', 'bet.'], ['Do', 'you', 'know', 'his', 'father?'], ['I', 'suppose', 'you', 'enjoy', 'that', 'sort', 'of', 'thing.'], ['I', 'feel', 'awful.'], ["I'll", 'buy', 'you', 'a', 'beer.'], ['She', 'watched', 'him', 'draw', 'a', 'picture.'], ['He', 'finally', 'decided', 'to', 'try.'], ["I'd", 'love', 'to', 'hold', 'you', 'in', 'my', 'arms.'], ['This', 'cookbook', 'has', 'recipes', 'for', 'every', 'imaginable', 'occasion.'], ['I', 'like', 'your', 'dress.'], ["They're", 'headed', 'this', 'way.'], ["I'll", 'see', 'you', 'tomorrow', 'at', 'school.'], ['Can', 'we', 'prove', 'it?'], ['There', 'is', 'a', 'lot', 'of', 'work', 'to', 'do.'], ['Tom', 'really', 'needs', 'our', 'help.'], ['When', 'was', 'it', 'built?'], ['Japanese', 'office', 'workers', 'work', 'very', 'hard.'], ['Stay', 'in', 'the', 'house.'], ["Haven't", 'we', 'met', 'before?'], ['Tom', 'was', 'stabbed', 'twice', 'in', 'the', 'back.'], ['Real', 'men', 'drink', 'tea.'], ['Desperate', 'needs', 'lead', 'to', 'desperate', 'deeds.'], ['Tom', 'never', 'did', 'it', 'again.'], ['Unfortunately,', 'Tom', "wasn't", 'there.'], ['Finding', 'work', 'is', 'difficult.'], ['She', 'showed', 'her', 'album', 'to', 'me.'], ['Tom', 'gave', 'me', 'back', 'my', 'dictionary.'], ['He', 'was', 'lying', 'on', 'the', 'grass.'], ['Why', 'not', 'come', 'with', 'me?'], ['No', 'matter', 'what', 'happens,', 'my', 'determination', "won't", 'change.'], ["There's", 'no', 'difference.'], ['Can', 'you', 'please', 'pass', 'me', 'the', 'newspaper?'], ['Why', 'are', 'these', 'photos', 'so', 'important?'], ['You', 'look', 'nice', 'with', 'your', 'hair', 'short.'], ['Good', 'morning,', 'everybody.'], ['She', 'looked', 'after', 'her', 'baby.'], ['Tom', 'is', 'the', 'strongest.'], ["You're", 'very', 'good.'], ['Why', 'are', 'you', 'all', 'dressed', 'up?'], ["I'd", 'like', 'to', 'discuss', 'some', 'problems', "we've", 'been', 'having.'], ['All', 'your', 'problems', 'have', 'been', 'solved.'], ['The', 'sum', 'of', 'all', 'the', 'angles', 'in', 'a', 'triangle', 'equals', '180', 'degrees.'], ["We're", 'untalented.'], ['She', 'kept', 'smiling', 'all', 'the', 'time.'], ['Try', 'as', 'hard', 'as', 'you', 'can.'], ['Everyone', 'looks', 'worried.'], ['We', 'have', 'to', 'get', 'you', 'to', 'a', 'hospital.'], ['Are', 'you', 'sure', 'this', 'is', 'a', 'good', 'idea?'], ['Stay', 'out', 'of', 'the', 'water.'], ['The', 'idea', 'was', 'good.'], ['I', 'am', 'bored', 'to', 'death.'], ['I', 'have', 'a', 'lot', 'of', 'old', 'books.', 'A', 'couple', 'of', 'them', 'are', 'quite', 'valuable.'], ['She', 'saved', 'her', "baby's", 'life', 'at', 'the', 'risk', 'of', 'losing', 'her', 'own.'], ["I'm", 'not', 'good', 'enough', 'for', 'Tom.'], ['Can', 'you', 'tell', 'me', 'about', 'it?'], ["I've", 'hired', 'an', 'assistant.'], ['They', 'even', 'named', 'their', 'boy', 'after', 'you.'], ['What', 'fruit', 'do', 'you', 'like', 'best?'], ['He', 'has', 'an', 'interesting', 'book.'], ['However', 'hard', 'you', 'try,', 'you', "can't", 'finish', 'it', 'in', 'a', 'week', 'or', 'so.'], ['Why', 'would', 'I', 'want', 'to', 'help', 'Tom?'], ['I', 'wonder', 'if', 'dinner', 'is', 'ready.'], ['I', 'was', 'as', 'surprised', 'as', 'you.'], ['We', 'had', 'some', 'good', 'times.'], ['I', 'ate', 'breakfast', 'at', 'eight.'], ['I', "don't", 'expect', 'you', 'to', 'be', 'my', 'friend.'], ['I', "didn't", 'like', 'it.'], ['Could', 'you', 'type', 'this', 'letter', 'for', 'me?'], ['Get', 'out', 'of', 'my', 'kitchen.'], ['The', 'kid', 'is', 'a', 'pain', 'in', 'the', 'neck.'], ["Don't", 'you', 'want', 'to', 'know', 'why', 'I', 'did', 'that?'], ['Maybe', 'my', 'grandchild', 'will', 'be', 'the', 'first', 'person', 'to', 'set', 'foot', 'on', 'Mars.'], ['I', 'was', 'never', 'told', 'that', 'I', 'needed', 'a', 'visa.'], ['I', 'want', 'to', 'be', 'noticed.'], ['I', 'feel', 'happy.'], ['I', 'want', 'to', 'hear', 'more.'], ['Eat', 'more', 'fruit.'], ['Please', 'come', 'into', 'the', 'room.'], ['Go', 'ahead.'], ['I', 'need', 'envelopes.'], ['Do', 'one', 'thing', 'at', 'a', 'time.'], ['I', 'never', 'thought', "I'd", 'finish', 'it.'], ['Since', 'I', 'was', 'tired,', 'I', 'took', 'a', 'nap.'], ["I'm", 'not', 'going', 'to', 'lie', 'to', 'you.'], ['I', 'will', 'come', 'up', 'with', 'a', 'solution', 'to', 'the', 'problem.'], ["I'm", 'stuffed.'], ['Do', 'you', 'have', 'any', 'idea', 'what', 'that', 'means?'], ['They', 'knew', 'exactly', 'what', 'they', 'were', 'doing.'], ['We', 'all', 'agreed.'], ['I', 'think', "we're", 'going', 'to', 'be', 'OK.'], ['That', 'is', 'my', 'overcoat.'], ['Why', "didn't", 'you', 'believe', 'me?'], ['Hurry', 'up.', 'The', 'train', 'leaves', 'in', 'ten', 'minutes.', 'We', "don't", 'want', 'to', 'miss', 'it.'], ["Doesn't", 'that', 'strike', 'you', 'as', 'odd?'], ["You're", 'ambitious.'], ['Would', 'you', 'be', 'willing', 'to', 'help?'], ['You', "don't", 'fool', 'me,', 'you', 'know.'], ['I', 'had', 'been', 'studying', 'music', 'in', 'Boston', 'before', 'I', 'returned', 'to', 'Japan.'], ['He', 'keeps', 'a', 'cat.'], ['You', "won't", 'have', 'a', 'chance.'], ['We', 'have', 'ample', 'time', 'to', 'catch', 'our', 'train.'], ['Nothing', 'happens', 'unless', 'you', 'make', 'it', 'happen.'], ['I', 'was', 'too', 'shy.'], ['It', 'is', 'not', 'as', 'good', 'as', 'it', 'looks.'], ['The', 'red', 'hat', 'goes', 'well', 'with', 'her', 'dress.'], ['She', 'laughed', 'so', 'hard', 'she', 'cried.'], ['If', "I'd", 'known', 'it,', "I'd", 'have', 'told', 'you.'], ["Don't", 'you', 'think', 'this', 'is', 'ridiculous?'], ["You're", 'not', 'going', 'to', 'believe', 'this.'], ['Welcome', 'back.'], ['I', 'think', 'you', 'need', 'help.'], ['What', 'would', 'you', 'do', 'in', 'this', 'type', 'of', 'situation?'], ['I', 'wish', 'I', 'could', 'tell', 'you', 'the', 'reason,', 'but', 'I', "can't."], ['I', 'left', 'you', 'a', 'couple', 'messages.'], ['I', 'almost', 'forgot', 'to', 'do', 'my', 'homework.'], ['The', 'accident', 'has', 'caused', 'many', 'deaths.'], ["I'm", 'not', 'who', 'you', 'think', 'I', 'am.'], ['Who', 'asked', 'for', 'your', 'opinion', 'anyway?'], ['The', 'situation', 'is', 'grave.'], ["I've", 'had', 'a', 'busy', 'morning.'], ["I'd", 'rather', 'not', 'do', 'it.'], ['Women', 'seem', 'to', 'like', 'him', 'for', 'some', 'reason.'], ['I', "didn't", 'hear', 'you', 'come', 'in.'], ['I', 'have', 'met', 'neither', 'of', 'his', 'sons.'], ['Our', 'eyes', 'met.'], ["How's", 'the', 'weather', 'out', 'there?'], ['It', 'was', 'an', 'exciting', 'game.'], ['I', 'think', 'Tom', 'loves', 'Mary.'], ['Tom', 'is', 'outside,', 'playing.'], ['We', 'must', 'never', 'do', 'this', 'again.'], ['We', 'used', 'to', 'sit', 'on', 'these', 'steps', 'and', 'talk.'], ['The', 'teacher', 'caught', 'the', 'student', 'cheating', 'on', 'the', 'examination.'], ['I', 'have', 'to', 'pay', 'more', 'attention', 'to', 'myself.'], ['Tom', 'has', 'a', 'big', 'house.'], ['We', "couldn't", 'open', 'the', 'door', 'because', 'it', 'was', 'locked', 'from', 'the', 'inside.'], ['Last', 'night', 'there', 'was', 'a', 'fire', 'near', 'here,', 'and', 'I', "couldn't", 'sleep.'], ['We', 'heard', 'gunshots', 'from', 'next', 'door.'], ['I', "don't", 'know', 'how', 'to', 'reply', 'to', 'that', 'question.'], ['Curiosity', 'got', 'the', 'better', 'of', 'him.'], ['Please', 'hold', 'the', 'line', 'a', 'moment.'], ['Please', 'keep', 'it', 'a', 'secret.'], ['Do', 'you', 'like', 'Indonesian', 'food?'], ["I'm", 'glad', 'to', 'hear', 'it.'], ['Tom', 'brought', 'us', 'each', 'a', 'gift.'], ['It', 'will', 'take', 'some', 'time', 'before', 'he', 'understands', 'it.'], ['You', 'should', 'run', 'for', 'president.'], ['Tom', 'asked', 'us', 'several', 'questions.'], ["She's", 'smarter', 'than', 'him.'], ["I'm", 'not', 'in', 'a', 'party', 'mood.'], ["Let's", 'hit', 'the', 'showers.'], ['I', "don't", 'want', 'to', 'see', 'you.'], ['You', "won't", 'succeed.'], ['I', 'blew', 'on', 'my', 'hands', 'to', 'warm', 'them.'], ['This', 'window', 'is', 'bulletproof.'], ['I', 'can', 'be', 'impartial.'], ["It's", 'only', 'money.'], ['She', 'waited', 'for', 'him', 'for', 'hours.'], ['They', 'were', 'plainly', 'dressed.'], ['We', 'survived.'], ["It's", 'been', 'a', 'terrible', 'day.'], ['I', 'lived', 'abroad', 'for', 'ten', 'years.'], ['You', 'are', 'so', 'childish', 'sometimes.'], ['I', 'have', 'a', 'mission', 'to', 'complete.'], ["I'm", 'having', 'the', 'time', 'of', 'my', 'life.'], ['Shut', 'the', 'door,', 'please.'], ['I', 'never', 'closed', 'the', 'windows.'], ["I'm", 'looking', 'forward', 'to', 'receiving', 'your', 'reply.'], ['I', 'like', 'being', 'with', 'you.'], ['Have', 'you', 'gone', 'completely', 'insane?'], ["Shouldn't", 'you', 'go', 'home?'], ["I'd", 'like', 'to', 'find', 'somebody', 'to', 'talk', 'to.'], ['I', 'want', 'to', 'personally', 'thank', 'you.'], ['After', 'taking', 'a', 'bath,', 'Tom', 'ate', 'dinner.'], ['Tom', 'died', 'in', 'Australia', 'in', '2013.'], ['You', 'start.'], ['Tom', 'has', 'been', 'growing', 'a', 'beard', 'all', 'summer.'], ['That', 'should', 'be', 'prohibited.'], ['He', 'had', 'no', 'particular', 'reason', 'to', 'go', 'there.'], ["What's", 'your', 'opinion', 'on', 'this?'], ["I've", 'done', 'that', 'myself.'], ['Fill', 'in', 'your', 'name', 'and', 'address', 'here.'], ['Thousands', 'of', 'foreigners', 'visit', 'Japan', 'each', 'year.'], ['You', 'always', 'lie', 'to', 'me.'], ['You', 'have', 'to', 'pay', 'in', 'advance.'], ['My', 'family', 'goes', 'skiing', 'every', 'winter.'], ['Will', 'you', 'watch', 'the', 'Olympics?'], ['I', 'surrendered.'], ['Tom', "isn't", 'wearing', 'gloves.'], ['She', 'glanced', 'around.'], ['He', 'knows', 'how', 'to', 'make', 'a', 'radio.'], ["You're", 'my', 'boss.'], ['I', 'considered', 'changing', 'my', 'job,', 'but', 'in', 'the', 'end', 'I', 'decided', 'not', 'to.'], ['How', 'about', 'a', 'snack?'], ["I'll", 'leave', 'it', 'up', 'to', 'you.'], ['My', 'mother', 'allowed', 'me', 'to', 'go', 'abroad.'], ["I'm", 'allergic', 'to', 'shellfish.'], ['Can', 'you', 'prove', 'Tom', "didn't", 'do', 'it?'], ['Tom', 'is', 'being', 'held', 'prisoner.'], ['I', "don't", 'feel', 'like', 'dancing.'], ['Are', 'you', 'picking', 'on', 'me?'], ['Get', 'in', 'the', 'van.'], ['I', "couldn't", 'have', 'done', 'that', 'better.'], ['Tom', "doesn't", 'know', 'whether', 'to', 'turn', 'left', 'or', 'right.'], ['I', 'told', 'him', 'everything.'], ['"Thank', 'you', 'for', 'helping', 'me."', '"Don\'t', 'mention', 'it."'], ['No', 'one', 'seems', 'to', 'have', 'the', 'guts', 'to', 'do', 'that', 'anymore.'], ['Tom', 'is', 'our', 'new', 'bass', 'player.'], ['Hold', 'on', 'a', 'minute,', 'please.'], ['I', 'owe', 'you', 'something.'], ['He', 'attributes', 'his', 'success', 'to', 'good', 'luck.'], ['It', 'was', 'raining', 'last', 'night.'], ['I', "can't", 'remember', 'doing', 'that.'], ['The', 'water', 'is', 'hot.'], ['This', 'is', 'how', 'I', 'made', 'it.'], ["You're", 'so', 'talented.'], ['She', 'had', 'her', 'hat', 'blown', 'off', 'by', 'the', 'wind.'], ["What's", 'your', 'first', 'name?'], ['May', 'we', 'accompany', 'you', 'on', 'your', 'walk?'], ["I'm", 'not', 'very', 'confident.'], ["You're", 'not', 'bad.'], ['No', 'need', 'to', 'worry.'], ['Are', 'you', 'going', 'to', 'go', 'anywhere', 'this', 'summer?'], ['Do', 'you', 'want', 'some', 'breakfast?'], ['All', 'the', 'money', 'is', 'gone.'], ['Since', 'I', 'was', 'sick,', 'I', "didn't", 'go', 'to', 'school.'], ['I', 'went', 'out', 'with', 'my', 'friends.'], ['I', 'have', 'nothing', 'to', 'say', 'with', 'regard', 'to', 'that', 'problem.'], ["I'm", 'not', 'a', 'morning', 'person.'], ['I', 'want', 'it', 'delivered', 'to', 'me', 'by', 'noon', 'tomorrow.'], ['The', 'financial', 'crisis', 'has', 'left', 'many', 'unemployed.'], ['I', 'like', 'that.'], ['That', 'is', 'your', 'book.'], ['Tom', 'will', 'probably', 'wait', 'for', 'you.'], ['Never', 'choose', 'a', 'vocation', 'just', 'because', 'it', 'promises', 'social', 'standing.'], ['There', 'appears', 'to', 'have', 'been', 'an', 'accident.'], ['She', 'bought', 'a', 'handkerchief', 'for', 'ten', 'dollars.'], ['Is', 'it', 'worth', 'it', 'or', 'not?'], ["I've", 'been', 'waiting', 'for', 'this', 'moment', 'all', 'my', 'life.'], ["I'm", 'lonely.'], ['I', 'heard', 'the', 'question.'], ['Everybody', 'made', 'it', 'to', 'the', 'wedding.'], ['Tom', 'was', 'home', 'alone', 'at', 'the', 'time.'], ['This', 'is', 'probably', 'a', 'real', 'diamond.'], ['You', 'do', 'want', 'that,', "don't", 'you?'], ['Would', 'you', 'like', 'me', 'to', 'go', 'there', 'with', 'you?'], ["I'm", 'not', 'at', 'all', 'tired.'], ['Is', 'it', 'true', 'that', 'you', "can't", 'swim?'], ['You', "don't", 'seem', 'very', 'concerned.'], ['We', 'cannot', 'meet', 'your', 'demands.'], ['He', 'is', 'good', 'at', 'singing.'], ['I', 'think', "I'm", 'going', 'to', 'buy', 'one', 'of', 'those.'], ['She', 'thought', 'of', 'a', 'good', 'solution.'], ['Are', 'you', 'as', 'tall', 'as', 'me?'], ['Can', 'you', 'tell', 'me', 'why', 'Tom', "isn't", 'here?'], ['They', 'have', 'to', 'live', 'on', 'his', 'small', 'income.'], ['With', 'the', 'weather', 'getting', 'worse,', 'the', 'departure', 'was', 'put', 'off.'], ['Stop', 'doing', 'that.'], ['Tom', 'seemed', 'to', 'know', 'what', 'he', 'was', 'doing.'], ['We', 'should', 'try', 'to', 'understand', 'one', 'another.'], ['I', 'drank', 'three', 'cups', 'of', 'coffee', 'this', 'morning.'], ['They', 'were', 'scolded', 'by', 'the', 'teacher.'], ['Let', 'me', 'check.'], ['I', 'have', 'absolutely', 'no', 'idea', 'when', "I'm", 'supposed', 'to', 'do', 'that.'], ['The', 'rain', 'lasted', 'for', 'three', 'days.'], ['This', 'is', 'based', 'on', 'fact.'], ["Don't", 'touch', 'it.'], ['I', 'love', 'the', 'way', 'you', 'walk.'], ['Can', 'you', 'get', 'that', 'to', 'me', 'by', 'the', 'end', 'of', 'the', 'day?'], ['Tom', "wasn't", 'my', 'husband', 'at', 'that', 'time.'], ['What', 'time', 'do', 'you', 'have', 'supper?'], ['Where', 'exactly', 'did', 'you', 'go?'], ['You', 'are', 'now', 'an', 'adult.'], ['Tom', 'knew', "he'd", 'just', 'made', 'a', 'huge', 'mistake.'], ['Hurry', 'up,', 'and', 'you', 'will', 'be', 'able', 'to', 'catch', 'the', 'train.'], ["You're", 'just', 'like', 'your', 'father.'], ['You', 'should', 'put', 'on', 'some', 'clothes.'], ['I', 'hope', 'to', 'have', 'my', 'car', 'paid', 'off', 'by', 'next', 'September.'], ['I', 'thought', 'it', 'would', 'be', 'a', 'good', 'idea.'], ['Are', 'you', 'a', 'cop?'], ['We', 'have', 'to', 'talk', 'about', 'this.'], ['The', 'meeting', 'finished', 'at', 'nine.'], ["You're", 'not', 'one', 'of', 'us.'], ['This', 'is', 'your', 'fault.'], ['I', 'could', 'hear', 'the', 'sound', 'of', 'children', 'playing', 'outside', 'my', 'window.'], ['Minors', "aren't", 'allowed', 'to', 'enter.'], ['She', 'told', 'him', 'to', 'study.'], ['Move', 'up', 'to', 'the', 'front,', 'please.'], ['Tom', 'often', 'plays', 'tennis', 'with', 'Mary', 'after', 'school.'], ['Why', 'does', 'everybody', 'love', 'cats?'], ["We're", 'very', 'nervous', 'about', 'that.'], ["I'll", 'give', 'you', 'a', 'piece', 'of', 'advice.'], ["I'm", 'not', 'a', 'very', 'good', 'artist.'], ["Don't", 'make', 'me', 'shoot', 'you.'], ["That's", 'what', 'I', 'told', 'him.'], ['I', 'saw', 'a', 'stranger', 'enter', 'that', 'house.'], ['It', 'is', 'not', 'known', 'when', 'he', 'came', 'up', 'to', 'London.'], ['Do', 'you', 'sometimes', 'study', 'in', 'the', 'library?'], ['His', 'car', 'is', 'two', 'years', 'old.'], ['Do', 'you', 'want', 'a', 'lawyer?'], ['I', 'never', 'make', 'my', 'bed.'], ['Can', 'I', 'have', 'some', 'water,', 'please?'], ['You', 'despise', 'me,', "don't", 'you?'], ["Don't", 'you', 'like', 'us?'], ['She', 'tried', 'to', 'comfort', 'him,', 'but', 'he', 'kept', 'crying.'], ['Can', 'I', 'have', 'my', 'bicycle', 'back?'], ['We', 'have', 'a', 'good', 'heating', 'system.'], ['I', "can't", 'swim,', 'but', 'my', 'younger', 'brother', 'can.'], ['Put', 'the', 'carrots', 'in', 'the', 'pot.'], ['Please', 'help', 'yourself', 'to', 'the', 'cake.'], ['I', "can't", 'afford', 'to', 'buy', 'a', 'pony.'], ["You're", 'very', 'good.'], ['You', 'are', 'blinded', 'by', 'love.'], ['He', 'gave', 'me', 'a', 'stern', 'look.'], ['They', 'showed', 'me', 'a', 'lot', 'of', 'nice', 'pictures.'], ["I'm", 'very', 'short.'], ["We'll", 'all', 'be', 'home', 'in', 'time', 'for', 'dinner.'], ['Tell', 'me', "you're", 'kidding.'], ['I', 'have', 'no', 'religion.'], ['You', "shouldn't", 'have', 'borrowed', "Tom's", 'car.'], ['I', 'think', 'there', 'has', 'been', 'some', 'misunderstanding', 'here.'], ['I', 'know', 'Tom', 'is', 'troubled.'], ["Where's", 'the', 'ball?'], ['I', 'had', 'never', 'seen', 'him', 'before.'], ['Stay', 'in', 'bed.'], ["I'll", 'go', 'get', 'the', 'proper', 'forms.'], ['She', 'watched', 'him', 'swim.'], ["Let's", 'shake', 'hands', 'and', 'be', 'friends.'], ['You', "don't", 'really', 'expect', 'me', 'to', 'tell', 'you,', 'do', 'you?'], ['Not', 'many', 'survive', 'this', 'disease.'], ['They', 'said', 'you', 'were', 'fired.'], ['I', 'hope', 'you', 'enjoyed', 'it.'], ['He', 'boarded', 'the', 'ship.'], ['You', 'must', 'not', 'be', 'late', 'for', 'school.'], ['I', 'admit', 'that', "I'm", 'tired.'], ['The', 'police', 'continued', 'their', 'investigation.'], ['If', 'you', 'hit', 'a', 'patch', 'of', 'fog,', 'slow', 'down', 'and', 'put', 'your', 'blinkers', 'on.'], ['The', 'dolphin', 'and', 'trainer', 'communicated', 'much', 'better', 'than', 'we', 'expected.'], ['He', 'just', 'left.'], ['I', 'think', "it's", 'going', 'to', 'be', 'a', 'nice', 'day.'], ["I'm", 'happy', 'you', 'two', 'are', 'friends', 'again.'], ['How', 'can', 'that', 'be?'], ['It', 'took', 'me', 'only', 'three', 'hours', 'to', 'do', 'that.'], ["You've", 'come', 'too', 'early.'], ['I', "don't", 'think', 'this', 'is', 'a', 'problem.'], ['Do', 'you', 'love', 'music?'], ['I', "didn't", 'steal', 'it.', 'You', 'can', 'check', 'my', 'pockets.'], ['She', 'hopes', 'to', 'become', 'a', 'designer.'], ['Tom', "doesn't", 'want', 'Mary', 'to', 'work.'], ['It', "isn't", 'the', 'same', 'thing.'], ['Are', 'you', 'speaking', 'to', 'me?'], ['Can', 'you', 'do', 'it', 'faster?'], ['Pour', 'me', 'a', 'drink.'], ['Tom', 'is', 'going', 'to', 'learn', 'how', 'to', 'do', 'that', 'sooner', 'or', 'later.'], ['I', 'see', 'a', 'star.'], ['His', 'family', "didn't", 'have', 'much', 'money.'], ['I', 'thought', 'you', 'were', 'taller.'], ['Eleven', "o'clock", 'is', 'good', 'for', 'me.'], ['Now,', 'what', 'was', 'your', 'name', 'again?'], ['When', 'I', 'saw', 'her', 'recently,', 'she', 'looked', 'very', 'happy.'], ['You', 'decide.'], ["Aren't", 'you', 'a', 'little', 'young', 'to', 'be', 'doing', 'this?'], ['Bite', 'your', 'tongue.'], ['Remember', 'not', 'to', 'tell', 'anyone.'], ['That', 'will', 'benefit', 'the', 'community.'], ['It', 'is', 'a', 'pity', 'that', 'you', "can't", 'join', 'us.'], ['Take', 'care', 'of', 'this.'], ['Let', 'me', 'get', 'you', 'the', 'key.'], ["I'm", 'not', 'giving', 'you', 'any', 'money.'], ["Don't", 'let', 'them', 'get', 'to', 'you.'], ["Tom's", 'birthday', 'was', 'the', 'day', 'before', 'yesterday.'], ["We'll", 'find', 'a', 'way', 'to', 'use', 'it.'], ['Marriage', 'is', 'the', 'main', 'cause', 'of', 'all', 'divorces.'], ['I', 'like', 'swimming', 'very', 'much.'], ['My', 'apartment', 'is', 'near', 'here.'], ['Tom,', 'Mary,', 'John', 'and', 'Alice', 'all', 'went', 'to', 'the', 'park', 'to', 'play', 'on', 'the', 'merry-go-round.'], ['Why', 'did', 'you', 'let', 'me', 'sleep', 'so', 'late?'], ['Tom', 'thinks', 'the', 'answer', 'is', 'no.'], ["You're", 'confused.'], ['I', 'suppose', 'you', 'like', 'him.'], ['I', 'never', 'thought', "I'd", 'ever', 'see', 'you', 'again.'], ["I'm", 'not', 'worried', 'about', 'anything.'], ["It's", 'not', 'illegal.'], ["It's", 'so', 'pretty.'], ['Try', 'to', 'keep', 'it', 'down.'], ['Are', 'you', 'ready', 'to', 'fly?'], ['He', 'will', 'go', 'to', 'the', 'meeting', 'instead', 'of', 'me.'], ["It's", 'a', 'basic', 'human', 'right.'], ['When', 'I', 'was', 'your', 'age,', 'I', 'had', 'a', 'girlfriend.'], ['Tom', 'and', 'Mary', 'really', 'loved', 'each', 'other.'], ['This', 'park', 'is', 'a', 'paradise', 'for', 'children.'], ['I', 'brought', 'you', 'red', 'roses.'], ['Do', 'you', 'have', 'an', 'English', 'dictionary?'], ['That', 'dress', 'looks', 'stunning', 'on', 'you.'], ['I', 'began', 'living', 'by', 'myself.'], ["I've", 'come', 'to', 'the', 'same', 'conclusion.'], ["You're", 'no', 'longer', 'welcome', 'in', 'my', 'house.'], ['Twenty', 'years', 'already', 'passed.'], ['All', 'of', 'us', 'are', 'disappointed.'], ['She', 'spends', 'a', 'pretty', 'good', 'chunk', 'of', 'time', 'just', 'sitting', 'there', 'and', 'looking', 'out', 'the', 'window.'], ['Many', 'thanks.'], ['Shut', 'up.', 'If', 'you', "don't,", "you'll", 'be', 'thrown', 'out.'], ['It', 'was', 'his', 'bicycle', 'that', 'was', 'stolen.'], ['Are', 'you', 'spending', 'enough', 'time', 'with', 'your', 'kids?'], ["I'm", 'amazed', 'by', 'the', 'rate', 'at', 'which', 'industries', 'grow.'], ['They', 'say', 'that', 'he', 'will', 'never', 'return.'], ['Are', 'you', 'here', 'alone?'], ['Is', 'everything', 'all', 'right', 'at', 'home?'], ['Calm', 'down.', "I'll", 'come', 'over', 'as', 'soon', 'as', 'possible.'], ["I'm", 'in', 'my', 'apartment.'], ['They', 'have', 'nothing', 'to', 'eat.'], ['They', 'are', 'always', 'short', 'of', 'money.'], ['Sheep', 'are', 'bred', 'for', 'their', 'fleece', 'and', 'their', 'meat.'], ['Is', 'this', 'seat', 'free?'], ['What', 'time', 'did', 'you', 'arrive', 'there?'], ['Do', 'you', 'know', 'where', 'they', 'come', 'from?'], ['Is', 'there', 'something', 'in', 'particular', 'that', 'you', 'want', 'to', 'hear?'], ['A', 'horse', 'is', 'an', 'animal.'], ['I', 'like', 'your', 'legs.'], ['This', 'is', 'the', 'tallest', 'tower', 'in', 'Japan.'], ['Fortunately,', 'no', 'passengers', 'were', 'injured.'], ['We', 'took', 'a', 'mud', 'bath.'], ['I', 'want', 'mine.'], ['He', 'gave', 'a', 'positive', 'answer', 'to', 'my', 'question.'], ["Aren't", 'you', 'dressed', 'yet?'], ["We're", 'unhappy.'], ['Is', 'it', 'dirty?'], ['Who', 'cheated?'], ['Tom', "won't", 'answer', 'the', 'question.'], ["You're", 'not', 'good', 'at', 'this.'], ['I', "didn't", 'know', 'you', 'had', 'a', 'dog.'], ['I', 'have', 'very', 'few', 'books', 'in', 'English.'], ['What', 'do', 'you', 'suppose', 'is', 'in', 'this', 'box?'], ['Tom', 'is', 'competent,', 'but', 'Mary', "isn't."], ['Your', 'boyfriend', 'is', 'cheating', 'on', 'you.'], ['Foreigners', 'often', 'feel', 'unwelcome', 'here.'], ['She', 'advised', 'him', 'to', 'go', 'by', 'bicycle.'], ["Here's", 'a', 'better', 'idea.'], ['Who', 'gave', 'you', 'these', 'flowers?'], ['She', 'used', 'to', 'go', 'to', 'the', 'museum', 'on', 'Sundays.'], ["Don't", 'they', 'drive', 'you', 'mad?'], ['I', 'was', 'quite', 'surprised.'], ['I', 'asked', 'Tom', 'why', 'he', 'wanted', 'to', 'study', 'French.'], ["Don't", 'forget', 'your', 'ticket.'], ["He's", 'doing', 'it', 'right.'], ['You', 'may', 'take', 'this', 'book', 'as', 'long', 'as', 'you', 'keep', 'it', 'clean.'], ["I'll", 'do', 'the', 'best', 'I', 'can.'], ['They', 'were', 'enjoying', 'themselves.'], ['The', 'animal', 'struggled', 'to', 'get', 'out', 'of', 'the', 'cage.'], ['I', 'wonder', 'if', 'I', 'can', 'do', 'that.'], ['He', 'traveled', 'with', 'only', 'a', 'dog', 'for', 'company.'], ['Can', 'we', 'have', 'a', 'moment', 'alone,', 'please?'], ['It', 'is', 'clear', 'what', 'must', 'be', 'done.'], ['Do', 'you', 'really', 'want', 'to', 'get', 'more', 'done?'], ['I', "couldn't", 'afford', 'to', 'do', 'that.'], ["That's", 'a', 'joke.'], ['I', 'have', 'a', 'bad', 'feeling', 'about', 'this.'], ['Go', 'on,', 'Tom,', "I'm", 'listening.'], ['Please', 'be', 'careful.'], ['Our', 'teacher', 'seemed', 'surprised.'], ["He's", 'decided', 'to', 'leave', 'the', 'company.'], ['That', 'girl', 'looks', 'boyish.'], ['How', 'old', 'are', 'you', 'now?'], ['We', 'met', 'before.'], ['Please', 'say', 'it', 'in', 'English.'], ['When', 'did', 'the', 'war', 'end?'], ['You', 'should', 'try', 'it', 'on.'], ['He', 'was', 'alone', 'there.'], ["I'm", 'going', 'to', 'need', 'a', 'wig.'], ["It's", 'just', 'not', 'fair.'], ['What', 'was', 'the', 'weather', 'report?'], ["That's", 'what', 'you', 'always', 'do.'], ['That', 'was', 'our', 'first', 'encounter.'], ['He', 'likes', 'oranges.'], ['It', 'was', 'raining', 'around', 'Chicago.'], ['He', 'was', 'scared', 'to', 'admit', 'that', 'he', "didn't", 'know.'], ['Do', 'you', 'know', 'who', 'that', 'person', 'is?'], ["I'm", 'sure', 'Tom', 'had', 'a', 'good', 'reason.'], ['I', "don't", 'believe', 'in', 'coincidence.'], ['He', "can't", 'do', 'that.'], ['She', 'declined', 'to', 'say', 'more', 'about', 'it.'], ['Could', 'you', 'please', 'repeat', 'that?'], ['I', "don't", 'know', 'whether', "I'll", 'be', 'able', 'to', 'attend', "tomorrow's", 'meeting.'], ['She', 'advised', 'him', 'to', 'come', 'back', 'at', 'once.'], ['He', 'makes', 'everybody', 'feel', 'at', 'ease.'], ["I'm", 'forgetful.'], ["I'm", 'friends', 'with', 'all', 'those', 'guys.'], ['Get', 'down.'], ["Let's", 'have', 'a', 'drink', 'first.'], ['Are', 'you', 'listening?'], ['I', 'know', 'you', 'probably', 'want', 'to', 'be', 'alone,', 'so', "I'll", 'leave.'], ['I', 'would', 'like', 'to', 'pay', 'with', 'a', 'credit', 'card.'], ["I'm", 'not', 'convinced', 'of', 'that.'], ['She', 'accused', 'me', 'of', 'being', 'a', 'liar.'], ['He', 'loves', 'soccer.'], ['I', "don't", 'care', 'as', 'long', 'as', 'you', 'are', 'happy.'], ["What're", 'you', 'writing?'], ['Are', 'you', 'going', 'to', 'sell', 'Tom', 'your', 'house?'], ['Tom', 'shot', 'three', 'times.'], ['I', "can't", 'help', 'but', 'feel', 'like', "I've", 'forgotten', 'something.'], ["You're", 'not', 'going', 'fast', 'enough.'], ['It', 'seems', 'that', 'he', 'believes', 'what', 'he', 'said', 'is', 'right.'], ['Wait', 'a', 'little', 'longer.'], ['What', 'did', 'you', 'come', 'here', 'for?'], ['Not', 'everyone', 'agreed.'], ['Do', 'you', 'mind', 'if', 'I', 'take', 'my', 'shirt', 'off?'], ['Pack', 'your', 'gear.'], ['I', 'just', "can't", 'remember.'], ['Can', 'you', 'read', 'French?'], ['It', 'no', 'longer', 'matters.'], ['If', 'you', "can't", 'solve', 'this', 'problem,', 'ask', 'your', 'teacher.'], ['Tom', 'was', 'given', 'a', 'warm', 'reception.'], ['Her', 'new', 'husband', 'turned', 'out', 'to', 'be', 'a', 'bad', 'person.'], ['Why', 'are', 'you', 'upset?'], ['Would', 'you', 'do', 'something', 'for', 'me?'], ['He', 'took', 'credit', 'for', 'my', 'idea.'], ['She', 'turned', 'on', 'the', 'TV.'], ['This', 'is', 'what', "I've", 'always', 'wanted', 'to', 'do.'], ["I'm", 'not', 'sure', "I'm", 'ready.'], ['She', 'had', 'a', 'happy', 'time', 'with', 'them.'], ['I', "can't", 'tell', 'you', 'how', 'happy', 'I', 'am', 'that', "you've", 'come', 'to', 'visit', 'us.'], ['I', 'think', 'you', 'made', 'the', 'right', 'choice.'], ['Stop', 'right', 'there,', 'please.'], ['Do', 'your', 'homework', 'now.'], ["You're", 'very', 'understanding.'], ['I', 'explained', 'it', 'to', 'him.'], ['They', 'brush', 'their', 'teeth', 'twice', 'a', 'day.'], ['I', 'know', 'that', 'Japanese', 'songs', 'are', 'very', 'difficult', 'for', 'us.'], ['They', 'manage', 'to', 'get', 'along', 'without', 'much', 'money.'], ["Tom's", 'not', 'the', 'slightest', 'bit', 'interested', 'in', 'my', 'suggestion.'], ['I', 'like', 'fishing.'], ['Hand', 'me', 'a', 'tissue.'], ['Almost', 'everything', 'has', 'gotten', 'better.'], ['Have', 'you', 'ever', 'eaten', 'alone', 'in', 'a', 'restaurant?'], ['I', 'wish', 'I', 'had', 'a', 'car.'], ['It', 'keeps', 'you', 'on', 'your', 'toes.'], ["You'll", 'have', 'to', 'do', 'that', 'on', 'your', 'own.'], ['He', 'helped', 'me', 'clean', 'up', 'the', 'mess.'], ["I've", 'been', 'waiting', 'for', 'the', 'bus', 'for', 'half', 'an', 'hour.'], ['You', "can't", 'hold', 'me', 'responsible.'], ['He', 'got', 'injured', 'in', 'a', 'traffic', 'accident.'], ['No', 'one', 'says', 'that', 'anymore.'], ['She', 'went', 'to', 'the', 'museum', 'by', 'taxi.'], ['Whatever', 'happens,', 'I', 'want', 'you', 'to', 'know', 'that', 'I', 'love', 'you.'], ['He', 'needs', 'a', 'towel.'], ["I'd", 'like', 'to', 'get', 'an', 'early', 'start.'], ["You're", 'going', 'to', 'die.'], ['Tom', 'started', 'climbing.'], ['I', 'love', 'your', 'place.'], ["She's", 'busy', 'now,', 'so', 'she', "can't", 'talk', 'with', 'you.'], ['They', 'come', 'from', 'the', 'same', 'village.'], ['I', 'visited', 'my', "father's", 'grave.'], ['Tom', 'is', 'waiting', 'at', 'the', 'airport.'], ['I', 'thought', "you'd", 'want', 'this', 'one.'], ['Everyone', 'is', 'going', 'to', 'be', 'there.'], ["I'm", 'not', 'what', 'I', 'used', 'to', 'be.'], ['He', 'stood', 'by', 'himself.'], ['She', 'spends', 'a', 'major', 'part', 'of', 'her', 'income', 'on', 'food.'], ["It's", 'a', 'very', 'delicate', 'subject.'], ['You', 'look', 'Japanese.'], ['I', 'know', 'Tom', 'saved', "Mary's", 'life.'], ['There', 'was', 'nothing', 'there.'], ['Give', 'it', 'to', 'whoever', 'wants', 'it.'], ['I', 'do', 'things', 'at', 'my', 'own', 'pace.'], ["I've", 'caught', 'a', 'bad', 'cold.'], ["Don't", 'touch', 'this!'], ['I', 'was', 'fired.'], ['I', "don't", 'know', 'how', 'else', 'to', 'say', 'it.'], ['Tom', 'is', 'good', 'at', 'cooking.'], ['I', 'think', "you've", 'got', 'what', 'I', 'need.'], ['If', 'you', "wouldn't", 'mind,', 'I', 'could', 'use', 'a', 'hand.'], ['"Just', 'go', 'in', 'and', 'tell', 'the', 'boss', 'you', 'want', 'a', 'raise."', '"That\'s', 'easier', 'said', 'than', 'done."'], ['Pink', 'is', 'not', 'just', 'for', 'girls.'], ['They', 'did', 'it', 'in', 'front', 'of', 'the', 'staff.'], ["I'm", '17,', 'too.'], ['My', 'whole', 'body', 'is', 'sore.'], ['Tom', "doesn't", 'like', 'to', 'talk', 'about', 'his', 'past.'], ['I', 'have', 'a', 'serious', 'problem.'], ['I', 'hope', 'it', 'was', 'worth', 'it.'], ["Let's", 'pick', 'up', 'Tom.'], ["You're", 'articulate.'], ["I'm", 'not', 'at', 'all', 'interested.'], ['Is', 'this', 'your', 'pen?'], ['He', 'attended', 'the', 'meeting', 'as', 'the', 'company', 'representative.'], ['Would', 'you', 'like', 'to', 'join', 'us', 'for', 'dinner?'], ["We're", 'all', 'single.'], ['I', 'have', 'not', 'had', 'a', 'chance', 'to', 'see', 'that', 'movie.'], ['He', 'said', 'he', 'would', 'see', 'me', 'the', 'next', 'day.'], ['I', 'figured', 'this', 'might', 'come', 'in', 'handy.'], ["We're", 'alone', 'here.'], ['I', 'used', 'to', 'go', 'fishing', 'with', 'my', 'father', 'when', 'I', 'was', 'a', 'child.'], ['Can', 'you', 'help', 'me', 'write', 'a', 'love', 'letter?'], ['It', 'makes', 'no', 'difference', 'to', 'me', 'whether', 'you', 'believe', 'it', 'or', 'not.'], ['Is', 'there', 'room', 'for', 'me', 'in', 'your', 'car?'], ['He', 'tried', 'to', 'kill', 'himself.'], ['I', 'remember', 'seeing', 'him', 'once.'], ['It', 'would', 'have', 'been', 'nice', 'if', 'you', 'had', 'helped', 'me', 'a', 'little.'], ['Tom', 'is', 'out', 'of', 'breath.'], ["It's", 'shocking,', "isn't", 'it?'], ['Did', 'I', 'hurt', 'you?'], ['I', "wasn't", 'sure', 'where', 'I', 'belonged.'], ['I', 'like', 'salmon.'], ['I', 'know', 'that.'], ['She', 'got', 'in', 'the', 'taxi.'], ['I', 'thought', 'for', 'sure', 'you', 'would', 'stay', 'in', 'Japan', 'forever.'], ['I', 'have', 'never', 'seen', 'anyone', 'like', 'him.'], ['Write', 'your', 'address', 'here.'], ['Do', 'you', 'wear', 'a', 'kimono?'], ['My', 'mom', 'spoke', 'with', 'the', 'school', 'superintendent.'], ["What's", 'the', 'emergency?'], ['We', 'abhor', 'violence.'], ['May', 'I', 'have', 'some', 'rice?'], ["I'm", 'saving', 'money', 'for', 'my', 'old', 'age.'], ['Can', 'you', 'give', 'me', 'another', 'sentence', 'to', 'translate?'], ['You', 'two', 'should', 'be', 'ashamed', 'of', 'yourselves.'], ["We're", 'all', 'thinking', 'the', 'same', 'thing,', "I'm", 'sure.'], ["I'd", 'be', 'honored.'], ["I'm", 'afraid', 'of', 'spiders.'], ['Tom', 'blew', 'all', 'his', 'money', 'on', 'a', 'motorcycle.'], ['She', 'advised', 'me', 'where', 'to', 'stay.'], ['People', 'always', 'ask', 'me', 'why', 'I', 'do', 'what', 'I', 'do.'], ['When', 'were', 'you', 'born?'], ['Some', 'prominent', 'tennis', 'players', 'behave', 'like', 'spoiled', 'brats.'], ['Please', 'look', 'at', 'me.'], ['Is', 'it', 'serious?'], ['How', 'long', 'has', 'she', 'been', 'sick?'], ['He', 'cheated', 'on', 'me.'], ["I'd", 'like', 'to', 'talk', 'to', 'you', 'when', 'you', 'have', 'some', 'free', 'time.'], ['I', 'have', 'never', 'met', 'a', 'person', 'like', 'him.'], ['I', 'have', 'plenty', 'of', 'things', 'to', 'eat', 'in', 'the', 'pantry.'], ['Friends', 'do', 'things', 'together.'], ['He', 'gave', 'me', 'an', 'example.'], ['I', "didn't", 'think', 'Boston', 'would', 'be', 'this', 'hot.'], ['What', 'do', 'we', 'have', 'here?'], ["That's", 'strange.'], ['Do', 'you', 'have', 'any', 'questions?'], ['She', 'watched', 'him', 'continue', 'to', 'fight', 'as', 'hard', 'as', 'he', 'could.'], ["I'll", 'fix', 'your', 'sink', 'for', 'you', 'if', 'you', 'want.'], ['Tom', "doesn't", 'know', 'who', 'he', 'should', 'ask.'], ["I'm", 'being', 'paid', 'to', 'do', 'this.'], ["He's", 'a', 'bit', 'naive.'], ['She', 'saw', 'me', 'enter', 'the', 'store.'], ['You', 'may', 'be', 'right.'], ['He', 'stressed', 'the', 'convenient', 'aspects', 'of', 'city', 'life.'], ["What's", 'your', 'favorite', 'food?'], ['The', 'spinning', 'top', 'skidded', 'across', 'the', 'floor.'], ["You're", 'a', 'nervous', 'wreck.'], ["I've", 'got', 'a', 'frog', 'in', 'my', 'throat.'], ['Life', 'imitates', 'art', 'more', 'often', 'than', 'the', 'other', 'way', 'around.'], ['How', 'many', 'times', 'have', 'I', 'told', 'you', 'to', 'fold', 'your', 'clothes?'], ['If', "you're", 'happy,', "I'm", 'glad.'], ['We', 'have', 'no', 'extra', 'money.'], ['Why', "don't", 'you', 'ever', 'cook?'], ['I', 'was', 'caught', 'in', 'a', 'shower', 'on', 'my', 'way', 'home.'], ['She', 'had', 'a', 'basket', 'full', 'of', 'apples.'], ['Perhaps', 'will', 'he', 'never', 'become', 'famous.'], ['I', "didn't", 'see', 'a', 'doctor', 'last', 'year.'], ['Tom', 'and', "I've", 'been', 'discussing', 'the', 'situation', 'for', 'the', 'past', 'three', 'hours.'], ['Do', 'you', 'have', 'a', 'bag?'], ["Don't", 'turn', 'around.'], ['Tom', 'lost', 'a', 'lot', 'of', 'money', 'playing', 'poker.'], ['I', "don't", 'think', 'I', 'can', 'eat', 'this.'], ['You', 'deserve', 'so', 'much', 'more', 'than', 'this.'], ['Tom', 'is', 'about', 'as', 'tall', 'as', 'Mary.'], ['He', 'fed', 'his', 'dog', 'at', 'the', 'same', 'time', 'every', 'day.'], ['Can', 'you', 'tell', 'me', 'when', 'the', 'next', 'bus', 'will', 'arrive?'], ['I', "can't", 'explain', 'it', 'to', 'you', 'now.'], ['It', "doesn't", 'matter', 'what', 'game', 'he', 'plays,', 'he', 'always', 'wins.'], ['Please', "don't", 'ever', 'do', 'that', 'again.'], ['Can', 'you', 'tell', 'me', 'what', 'it', 'means?'], ['Glass', 'is', 'breakable.'], ["You've", 'forgotten', 'me,', "haven't", 'you?'], ['There', 'is', 'nothing', 'to', 'do', 'but', 'apologize.'], ['They', 'supplied', 'the', 'soldiers', 'with', 'enough', 'food', 'and', 'water.'], ['Can', 'you', 'read', 'Arabic?'], ['What', 'did', 'she', 'say?'], ['He', 'will', 'regret', 'his', 'own', 'words.'], ['I', 'figured', 'it', 'out', 'by', 'myself.'], ["We're", 'fasting.'], ['He', 'is', 'very', 'brave.'], ['I', "can't", 'explain', 'what', 'happened.'], ["That's", 'stupid.'], ["I'm", 'wondering', 'if', 'I', 'love', 'Tom.'], ['No', 'way!'], ["Don't", 'forget', 'the', 'fact', 'that', 'smoking', 'is', 'bad', 'for', 'your', 'health.'], ["I'm", 'reading', 'this', 'book.'], ['He', 'is', 'the', 'greatest', 'scientist', 'that', 'the', 'world', 'has', 'ever', 'produced.'], ['She', 'was', 'indignant', 'at', 'the', 'way', 'she', 'had', 'been', 'treated.'], ['I', "didn't", 'get', 'discouraged.'], ['I', "don't", 'speak', 'French', 'or', 'German.'], ['There', 'were', 'no', 'resignations.'], ['Are', 'you', 'freaking', 'out?'], ['My', 'father', 'was', 'busy.'], ['Put', 'this', 'on', 'my', 'tab,', 'please.'], ['A', 'full', 'moon', 'is', 'shining', 'bright', 'in', 'the', 'sky.'], ['Does', 'this', 'medicine', 'actually', 'relieve', 'pain?'], ['Antimatter', 'is', 'highly', 'unstable.'], ['I', 'wonder', 'how', 'long', "it's", 'going', 'to', 'take.'], ['Why', 'did', 'Tom', 'need', 'to', 'go?'], ['A', 'pine', 'cone', 'fell', 'on', "Tom's", 'head.'], ['None', 'of', 'the', 'money', 'is', 'yours.'], ["Let's", 'wait', 'a', 'while.'], ['I', 'want', 'the', 'whole', 'world', 'to', 'know', 'that', "we're", 'in', 'love.'], ['I', "didn't", 'steal', 'it.'], ['What', 'do', 'you', 'think', 'is', 'in', 'the', 'box?'], ['I', 'have', 'only', 'half', 'as', 'many', 'books', 'as', 'he', 'does.'], ['I', 'like', 'the', 'way', 'you', 'look.'], ['I', "don't", 'think', 'I', 'really', 'matter', 'to', 'you.'], ['Is', 'your', 'wife', 'tall?'], ["I'm", 'about', 'to', 'leave.'], ['How', 'many', 'pounds', 'do', 'you', 'weigh?'], ['Some', 'men', 'don’t', 'know', 'that.'], ['Your', 'face', 'is', 'dirty.'], ['Tom', 'tried', 'not', 'to', 'look', 'at', 'Mary.'], ['Do', 'your', 'very', 'best.'], ['Do', 'you', 'truly', 'believe', 'that', "it's", 'a', 'good', 'idea?'], ['Ten', 'is', 'ten', 'percent', 'of', 'one', 'hundred.'], ['Tom', 'is', 'a', 'fascinating', 'guy.'], ['Tom', 'thought', 'that', 'Mary', 'was', 'asleep.'], ["Tom'll", 'call.'], ['He', 'narrowly', 'escaped', 'being', 'run', 'over.'], ['Please', "don't", 'do', 'anything', 'stupid.'], ['When', "you're", 'in', 'a', 'hurry,', "it's", 'easy', 'to', 'make', 'a', 'mistake.'], ['A', 'pet', 'theory', 'of', 'mine', 'is', 'that', 'things', 'should', 'be', 'seen', 'from', 'a', 'distance.'], ["I'm", 'disorganized.'], ['We', 'only', 'kissed.'], ['You', "can't", 'be', 'too', 'careful.'], ['Did', 'you', 'say', 'yes', 'or', 'no?'], ['It', 'was', 'that', 'dog', 'that', 'bit', 'my', 'hand.'], ["Tom's", 'parents', 'wanted', 'him', 'to', 'study', 'harder.'], ['Why', 'are', 'you', 'so', 'tired?'], ['Tom', 'wanted', 'to', 'help', 'Mary.'], ['Have', 'you', 'really', 'already', 'found', 'a', 'new', 'job?'], ['If', "I'd", 'wanted', 'your', 'opinion,', 'I', "would've", 'asked', 'for', 'it.'], ['Tom', 'asked', 'Mary', 'to', 'pick', 'John', 'up.'], ['Would', 'you', 'like', 'to', 'try', 'it', 'again?'], ['I', 'also', 'heard', 'a', 'similar', 'story.'], ['Tom', 'helped.'], ['What', 'happened?', 'Why', 'are', 'you', 'crying?'], ["Don't", 'do', 'it!', "It's", 'stupid', 'and', 'dangerous.'], ['The', 'soldiers', 'laughed.'], ['When', 'your', 'stomach', 'is', 'busy,', 'digesting', 'a', 'big', 'meal', 'your', 'brain', 'takes', 'a', 'vacation.'], ['I', "wasn't", 'the', 'only', 'one', 'who', 'was', 'late.'], ["I'm", 'interested', 'in', 'this', 'book.'], ['We', 'found', 'a', 'beautiful,', 'blue', 'lagoon', 'on', 'the', 'far', 'side', 'of', 'the', 'island.'], ['You', "don't", 'seem', 'to', 'want', 'to', 'come', 'with', 'us.'], ['She', 'lives', 'in', 'the', 'village.'], ['She', 'gets', 'hives', 'when', 'she', 'eats', 'eggs.'], ['He', 'asked', 'me', 'to', 'open', 'the', 'door.'], ['I', 'may', 'not', 'be', 'completely', 'objective.'], ['It', 'has', 'been', 'snowing', 'on', 'and', 'off.'], ['We', 'have', 'arrived', 'safe', 'and', 'sound.'], ['Your', 'secret', 'will', 'be', 'safe', 'with', 'me.'], ['No', 'one', 'else', 'could', 'do', 'my', 'work.'], ["I'm", 'a', 'friend.'], ['I', "don't", 'get', 'modern', 'jazz.'], ['I', 'was', 'a', 'passenger.'], ['I', 'never', 'thought', 'it', 'would', 'happen', 'to', 'me.'], ["I'm", 'not', 'ashamed', 'of', 'my', 'father', 'being', 'poor.'], ['Are', 'you', 'sure', 'you', "don't", 'want', 'something', 'to', 'eat?'], ['Tom', 'knew', 'there', 'was', 'a', 'problem.'], ["I'll", 'destroy', 'it.'], ['You', "don't", 'have', 'to', 'do', 'that', 'if', 'you', "don't", 'really', 'want', 'to.'], ['The', 'weather', 'remained', 'rainy.'], ['You', 'could', 'well', 'be', 'right.'], ['Whether', 'he', 'agrees', 'or', 'not,', 'we', "won't", 'change', 'our', 'plans.'], ['I', "don't", 'know', 'if', 'that', 'means', 'anything.'], ["There's", 'no', 'toilet', 'paper.'], ['Do', 'you', 'know', 'which', 'deity', 'this', 'temple', 'is', 'dedicated', 'to?'], ['He', 'ran', 'like', 'a', 'scared', 'rabbit.'], ['Every', 'word', 'is', 'significant.'], ['Think', 'carefully', 'before', 'answering.'], ['She', 'told', 'him', 'to', 'try', 'harder.'], ['Tom', "doesn't", 'really', 'know', 'how', 'to', 'ski', 'very', 'well.'], ['I', 'want', 'your', 'answer', 'by', 'the', 'end', 'of', 'the', 'day.'], ['I', "don't", 'like', 'her', 'face.'], ['I', 'fell', 'in', 'love', 'with', 'a', 'girl', 'I', 'met', 'in', 'Boston', 'last', 'year.'], ['No', 'one', 'knows', 'their', 'name.'], ['The', 'heater', 'is', 'broken.'], ['Pleased', 'to', 'meet', 'you.'], ['He', 'is', 'not', 'old', 'enough', 'to', 'vote.'], ['He', 'sells', 'cars.'], ['Why', 'should', 'there', 'be', 'a', 'problem?'], ['Even', 'wounds', 'that', 'have', 'healed,', 'leave', 'scars', 'behind.'], ['Keep', 'reading.'], ['I', 'thought', 'she', 'was', 'sick.'], ['Tom', 'will', 'be', 'an', 'adult', 'soon.'], ["I'm", 'not', 'in', 'love', 'with', 'you.'], ['Although', 'I', 'was', 'sick,', 'I', 'did', 'my', 'best.'], ['We', 'want', 'change.'], ['I', "can't", 'concentrate', 'on', 'my', 'work', 'because', 'of', 'the', 'noise.'], ['I', 'felt', 'tired', 'from', 'having', 'worked', 'for', 'hours.'], ["That's", 'not', 'really', 'necessary', 'anymore.'], ['We', 'had', 'fun', 'with', 'Tom.'], ['You', 'seem', 'a', 'little', 'depressed.'], ['We', 'are', 'supposed', 'to', 'take', 'off', 'our', 'shoes', 'at', 'the', 'entrance.'], ["It's", 'a', 'bit', 'greasy.'], ['I', 'enjoyed', 'talking', 'with', 'him', 'at', 'the', 'party.'], ['I', 'just', 'want', 'to', 'improve', 'as', 'much', 'as', 'I', 'can.'], ['There', 'are', 'insects', 'everywhere.'], ['I', 'like', 'the', 'music', 'of', 'Austria.'], ['Everyone', 'was', 'satisfied.'], ['Be', 'nice', 'to', 'her.'], ['That', 'is', 'not', 'an', 'orange,', 'either.'], ['I', "don't", 'have', 'time', 'for', 'a', 'walk.'], ['He', 'held', 'his', 'breath.'], ['I', 'know', "you're", 'busy,', 'but', 'I', 'could', 'use', 'some', 'help.'], ['What', 'kind', 'of', 'things', 'do', 'you', 'enjoy', 'doing?'], ["I'm", 'sure', 'that', "I'll", 'win', 'that', 'tennis', 'match.'], ['I', 'heard', 'that', 'Tom', 'kissed', 'Mary.'], ["Let's", 'say', 'no', 'more', 'about', 'it.'], ['Animals', 'are', 'afraid', 'of', 'fire.'], ['The', 'desk', 'drawer', 'is', 'open.'], ['Please', 'choose', 'one', 'person.'], ['Where', 'were', 'you', 'last', 'night?'], ['I', "don't", 'want', 'to', 'be', 'late', 'for', 'class', 'on', 'the', 'first', 'day.'], ['He', 'has', 'the', 'habit', 'of', 'standing', 'up', 'when', 'he', 'is', 'angry.'], ['I', 'canceled', 'my', 'appointment', 'because', 'of', 'urgent', 'business.'], ['What', 'have', 'you', 'been', 'doing', 'all', 'this', 'time!'], ['Tom', 'and', 'Mary', 'have', 'gone.'], ['I', 'got', 'fined.'], ['I', 'drink', 'tea', 'without', 'sugar.'], ['I', 'never', 'saw', 'you.'], ['Let', 'me', 'answer', "Tom's", 'question.'], ['I', 'want', 'to', 'see', 'how', 'it', 'ends.'], ['I', 'watched', 'TV', 'after', 'I', 'washed', 'the', 'dishes.'], ['I', 'want', 'to', 'apologize', 'to', 'everybody.'], ['What', 'floats', 'your', 'boat?'], ["That's", 'not', 'an', 'issue.'], ['All', 'your', 'problems', 'have', 'been', 'solved.'], ['Even', 'the', 'teacher', 'could', 'not', 'solve', 'the', 'problem.'], ['He', 'is', 'liked', 'by', 'everybody.'], ['The', 'soldiers', 'were', 'ready', 'to', 'die', 'for', 'their', 'country.'], ['They', 'liked', 'having', 'more', 'space', 'for', 'their', 'children', 'to', 'play.'], ["You'd", 'better', 'give', 'up', 'smoking.'], ["We're", 'smashed.'], ['Can', 'you', 'read', 'that', 'sign', 'ahead', 'of', 'us?'], ['No', 'one', 'believed', 'me', 'at', 'first.'], ['They', 'adopted', 'the', 'orphan.'], ['See', 'what', 'happens', 'when', 'you', 'give', 'people', 'advice?'], ["Tom's", 'behavior', 'at', 'the', 'party', 'was', 'inexcusable.'], ["I've", 'seen', 'it', 'all.'], ['Tom', 'was', 'afraid', 'that', 'no', 'one', 'would', 'show', 'up', 'for', 'the', 'party.'], ['Where', 'are', 'you', 'staying?'], ['Tom', 'is', 'going', 'out', 'with', 'a', 'Chinese', 'exchange', 'student.'], ['He', 'seems', 'interested', 'in', 'her.'], ['I', "don't", 'mind', 'waiting.'], ['Are', 'you', 'relaxed?'], ['The', 'boy', 'came', 'running', 'into', 'the', 'room.'], ['Tom', 'is', 'obviously', 'very', 'upset.'], ["It's", 'all', 'right.'], ['Can', 'you', 'tell', 'us', 'what', 'happened', 'to', 'you?'], ['They', 'danced', 'until', 'six', 'in', 'the', 'morning.'], ['I', 'drove', 'the', 'car', 'into', 'the', 'garage.'], ['How', 'much', 'did', 'all', 'this', 'cost?'], ["I'd", 'like', 'to', 'talk', 'to', 'you', 'for', 'a', 'minute.'], ['You', 'guys', 'can', 'do', 'it', 'if', 'you', 'try.'], ['I', 'need', 'a', 'few', 'minutes', 'alone.'], ['Why', "don't", 'you', 'cut', 'your', 'hair?'], ['You', "don't", 'have', 'to', 'respond.'], ['There’s', 'no', 'better', 'way', 'to', 'start', 'the', 'day.'], ['Are', 'you', 'making', 'friends', 'here?'], ['Really?'], ["I'm", 'sorry', 'about', 'your', 'loss.'], ["It's", 'as', 'you', 'say.'], ["Don't", 'lose', 'heart', 'now.'], ['They', "don't", 'need', 'me', 'anymore.'], ['His', 'office', 'is', 'very', 'close', 'to', 'mine.'], ['Mary', "can't", 'have', 'any', 'more', 'children.'], ["You're", 'a', 'winner.'], ["Don't", 'you', 'have', 'classes', 'today?'], ['I', "should've", 'known', 'it', 'was', 'a', 'waste', 'of', 'time.'], ['Water', 'the', 'flowers', 'before', 'you', 'eat', 'breakfast.'], ['He', 'continued', 'doing', 'it.'], ['He', 'was', 'sleeping', 'under', 'the', 'tree.'], ['I', "haven't", 'decided', 'what', 'to', 'do', 'yet.'], ['Nobody', 'likes', 'her.'], ['Tom', "can't", 'hurt', 'you', 'anymore.'], ['What', 'fun!'], ['I', "didn't", 'mean', 'any', 'of', 'it.'], ['He', 'who', 'is', 'not', 'satisfied', 'with', 'a', 'little,', 'is', 'satisfied', 'with', 'nothing.'], ['I', "can't", 'go', 'with', 'you', 'tonight.'], ['Tom', 'gave', 'Mary', 'a', 'box', 'of', 'chocolates.'], ['Does', 'anyone', 'have', 'any', 'questions', 'thus', 'far?'], ['I', 'made', 'him', 'change', 'his', 'plan.'], ['We', 'expect', 'a', 'lot', 'from', 'him.'], ['Long', 'time,', 'no', 'see.'], ['Click', 'on', 'the', 'link.'], ['Do', 'you', 'have', 'any', 'allergies?'], ["I'm", 'just', 'happy', 'to', 'be', 'here.'], ['I', "don't", 'see', 'the', 'difference.'], ['I', "don't", 'have', 'an', 'answer.'], ['Your', 'problem', 'is', 'similar', 'to', 'mine.'], ['Do', 'you', 'want', 'in', 'or', 'not?'], ['Are', 'you', 'almost', 'here?'], ['Forget', 'I', 'said', 'that.'], ['I', 'regret', 'that', 'I', 'did', 'not', 'work', 'harder.'], ["It'll", 'be', 'forgotten', 'in', 'a', 'few', "months'", 'time.'], ['We', 'can', 'handle', 'that.'], ["We're", 'glad', 'to', 'see', 'you.'], ['Daddy,', "let's", 'make', 'faces', 'at', 'each', 'other', 'and', 'see', 'who', 'can', 'keep', 'from', 'laughing', 'the', 'longest.'], ['Please', 'show', 'me', 'this', 'book.'], ['Stay', 'down.'], ['Now', 'that', 'he', 'has', 'gone,', 'we', 'miss', 'him', 'very', 'much.'], ['Tom', 'put', 'his', 'pistol', 'under', 'the', 'pillow.'], ['Yes,', 'we', 'can', 'go.'], ["Don't", 'go', 'without', 'a', 'hat.'], ['I', 'have', 'a', 'business', 'visa.'], ['We', 'season', 'with', 'salt.'], ['I', "don't", 'like', 'him.'], ["You're", 'turning', 'thirty.'], ["I'm", 'sorry', 'I', 'dragged', 'you', 'into', 'this.'], ["They're", 'rich.'], ["Don't", 'be', 'late', 'for', 'school', 'again.'], ["I'm", 'afraid', 'of', 'drowning.'], ['The', 'questionnaire', 'form', 'was', 'distributed', 'properly.'], ['We', 'still', 'have', 'some', 'work', 'to', 'do.'], ['What', 'kinds', 'of', 'changes', 'are', 'needed', 'to', 'address', 'these', 'problems?'], ['How', 'is', 'your', 'name', 'spelled?'], ['I', 'brought', 'you', 'a', 'present.'], ['You', "don't", 'have', 'to', 'speak.'], ['Be', 'calm.'], ["It's", 'way', 'too', 'heavy.'], ['Tom', 'has', 'achieved', 'his', 'goals.'], ["I'm", 'talking', 'about', 'my', 'friend.'], ["Let's", 'do', 'it', 'now.'], ["You're", 'not', 'my', 'friend', 'anymore.'], ["Who's", 'been', 'eating', 'my', 'peanuts?'], ['Do', 'what', 'you', 'want', 'with', 'it.'], ['Right', 'now', 'I', "can't", 'think', 'of', 'anything', 'else.'], ["I'm", 'getting', 'a', 'bad', 'feeling.'], ['Is', 'the', 'bridge', 'safe?'], ['Perhaps', 'we', 'should', 'talk', 'in', 'my', 'office.'], ['Tom', 'works', 'with', 'Mary.'], ['I', 'have', 'to', 'take', 'the', 'entrance', 'examination', 'today.'], ['It', 'seemed', 'to', 'work.'], ['I', 'fell', 'down', 'the', 'stairs.'], ["You're", 'a', 'good', 'bass', 'player.'], ["There's", 'nothing', 'like', 'a', 'good', 'hot', 'bath.'], ['If', 'the', 'weather', 'clears', 'up,', "we'll", 'go', 'for', 'a', 'walk', 'in', 'the', 'forest.'], ['I', 'am', 'brushing', 'my', 'teeth.'], ['I', 'was', 'tired', 'so', 'I', 'went', 'to', 'bed.'], ['The', 'sidewalk', 'was', 'covered', 'with', 'fallen', 'leaves.'], ['I', 'remember', 'telling', 'her', 'that', 'news.'], ['This', 'is', 'an', 'easy', 'sentence.'], ['You', 'amuse', 'me.'], ['She', 'has', 'a', 'small', 'black', 'dog.'], ['How', 'is', 'the', 'salad?'], ['We', 'have', 'illustrated', 'the', 'story', 'with', 'pictures.'], ["He's", 'a', 'man', 'you', 'can', 'rely', 'on.'], ['Have', 'you', 'ever', 'gotten', 'a', 'speeding', 'ticket?'], ['She', 'is', 'ashamed', 'of', 'her', 'old', 'clothes.'], ["It's", 'right', 'above', 'you.'], ['I', 'got', 'really', 'hungry.'], ['Tom', 'uses', 'anabolic', 'steroids.'], ['Tom', "couldn't", 'stop', 'laughing.'], ['Write', 'down', 'the', 'facts', 'needed', 'to', 'convince', 'other', 'people.'], ["I'm", 'so', 'drunk', 'that', 'I', "can't", 'feel', 'my', 'face', 'anymore.'], ['Tom', 'wanted', 'to', 'see', "Mary's", 'room.'], ['We', 'got', 'your', 'message.'], ['You', 'were', 'seventh.'], ['That', 'woman', 'is', 'strong.'], ['We', 'are', 'looking', 'forward', 'to', 'seeing', 'you', 'again.'], ['Can', 'you', 'tell', 'me', 'who', 'they', 'are?'], ['What', 'would', 'you', 'call', 'that?'], ["That's", 'my', 'younger', "sister's", 'photograph.'], ['They', 'were', 'motivated', 'by', 'revenge.'], ['He', 'opened', 'the', 'door.'], ["There's", 'a', 'good', 'chance', 'that', "he'll", 'be', 'late.'], ['Are', 'you', 'going', 'to', 'vote', 'in', 'the', 'upcoming', 'election?'], ['Is', 'this', 'seat', 'free?'], ['We', 'are', 'under', 'his', 'command.'], ["Where's", 'the', 'proof?'], ['The', 'long', 'discussion', 'came', 'to', 'an', 'end', 'at', 'last.'], ['Dogs', 'often', 'bury', 'bones.'], ['She', 'glanced', 'shyly', 'at', 'the', 'young', 'man.'], ['I', 'am', 'tired.'], ['They', 'dug', 'through', 'the', 'mountain', 'and', 'built', 'a', 'tunnel.'], ['I', 'still', "don't", 'know.'], ['I', "don't", 'know', 'how', 'I', 'know.'], ['I', 'have', 'a', 'few', 'ideas.'], ["He's", 'sleeping', 'off', 'last', "night's", 'bender.'], ['You', 'need', 'to', 'leave.'], ['I', 'know', 'that', "you're", 'very', 'angry.'], ['My', 'family', 'is', 'very', 'proud', 'of', 'me.'], ['He', 'asked', 'me', 'for', 'more', 'money', 'than', 'was', 'necessary.'], ['She', 'is', 'not', 'here', 'yet.'], ['Tom', "isn't", 'invited.'], ['I', 'think', 'I', 'can', 'do', 'that.'], ['It', 'cost', 'me', 'a', 'fortune', 'to', 'get', 'my', 'car', 'repaired.'], ['I', 'remember', 'many', 'things.'], ['He', 'is', 'suffering', 'from', 'a', 'headache.'], ['She', 'selected', 'a', 'blue', 'dress', 'from', 'the', 'wardrobe.'], ["I'm", 'sleepy!'], ['This', 'bird', 'cannot', 'fly.'], ["Don't", 'even', 'get', 'me', 'started.'], ['How', 'can', 'you', 'eat', 'at', 'a', 'time', 'like', 'this?'], ["I'd", 'like', 'to', 'join', 'your', 'group.'], ['We', 'arrived', 'tired', 'and', 'hungry.'], ['I', 'made', 'dinner.'], ["I'll", 'help.'], ['What', 'happens', 'if', 'that', 'happens?'], ["It's", 'worse', 'than', 'I', 'thought.'], ['May', 'I', 'use', 'the', 'telephone?'], ['Tom', 'lost', 'his', 'arm', 'in', 'the', 'war.'], ['Put', 'it', 'where', 'children', "can't", 'get', 'at', 'it.'], ['Where', 'do', 'you', 'want', 'it', 'delivered?'], ['I', 'want', 'to', 'go', 'to', 'Australia', 'again', 'before', 'my', 'passport', 'expires.'], ['He', 'comes', 'into', 'contact', 'with', 'all', 'kinds', 'of', 'people.'], ['I', "don't", 'want', 'dinner.'], ['I', 'pressed', 'the', 'button', 'to', 'turn', 'the', 'radio', 'on.'], ['You', 'must', 'not', 'give', 'up', 'hope.'], ['What', 'on', 'earth', 'are', 'you', 'doing', 'here?'], ["They're", 'on', 'good', 'terms', 'with', 'their', 'neighbors.'], ["That's", 'pretty', 'strange.'], ["We've", 'been', 'up', 'all', 'night.'], ['You', 'look', 'so', 'cool.'], ['He', 'told', 'me', 'that', 'he', 'would', 'start', 'the', 'next', 'day.'], ['Do', 'you', 'like', 'going', 'to', 'work?'], ['Tom', 'asked', 'me', 'to', 'come', 'here.'], ['She', 'promised', 'me', 'that', "she'd", 'come.'], ['Venus', 'is', 'also', 'known', 'as', 'the', 'Morning', 'Star.'], ['Who', 'would', 'do', 'this?'], ['Kobe', 'is', 'the', 'city', 'where', 'I', 'was', 'born.'], ['I', "don't", 'want', 'to', 'tell', 'him.'], ['How', 'big', 'will', 'it', 'be?'], ["I've", 'always', 'been', 'very', 'proud', 'of', 'that.'], ['He', 'developed', 'his', 'own', 'theory.'], ['My', 'father', 'gave', 'me', 'a', 'lot', 'of', 'money.'], ['He', 'has', 'taken', 'over', 'his', "father's", 'business.'], ['We', 'heard', 'the', 'boy', 'playing', 'the', 'violin.'], ['Oranges', 'are', 'sweeter', 'than', 'lemons.'], ['I', "don't", 'think', "I've", 'ever', 'eaten', 'anything', 'that', 'you', 'would', 'consider', 'disgusting.'], ['Tom', 'never', 'comes.'], ['This', "isn't", 'exactly', 'what', 'I', 'wanted.'], ['I', 'want', 'a', 'person', 'who', 'can', 'speak', 'French.'], ['I', 'saw', 'him', 'cross', 'the', 'street.'], ['I', "didn't", 'even', 'get', 'one', 'letter', 'from', 'her.'], ['Are', 'you', 'sure', "we've", 'never', 'met', 'before?'], ['This', 'is', 'such', 'a', 'dumb', 'idea.'], ['Give', 'us', 'the', 'details.'], ['Are', 'you', 'sure', "there's", 'nothing', 'else', 'to', 'drink?'], ["You're", 'a', 'great', 'guy.'], ['The', 'meeting', 'took', 'place', 'yesterday.'], ["You've", 'been', 'cleared', 'of', 'all', 'charges.'], ['Please', "don't", 'leave', 'me', 'here', 'by', 'myself.'], ['It', 'was', 'my', 'turn', 'to', 'straighten', 'up', 'the', 'room.'], ['She', 'dumped', 'him', 'for', 'a', 'younger', 'man.'], ['Tom', 'does', 'only', 'what', 'he', 'wants', 'to', 'do.'], ['Would', 'you', 'mind', 'shutting', 'the', 'door?'], ['For', 'me,', "it's", 'important.'], ['He', 'was', 'disappointed.'], ['Give', 'me', 'your', 'telephone', 'number.'], ['Ethnic', 'minorities', 'struggle', 'against', 'prejudice,', 'poverty,', 'and', 'oppression.'], ['We', 'arrived', 'at', 'the', 'museum', 'after', 'a', 'ten-minute', 'walk.'], ['He', "didn't", 'turn', 'up', 'after', 'all.'], ["What's", 'this', 'street', 'called?'], ["I'll", 'be', 'back', 'within', 'an', 'hour.'], ['Christmas', 'is', 'rapidly', 'approaching.'], ['I', 'disposed', 'of', 'my', 'old', 'coat.'], ['I', "didn't", 'find', 'anything.'], ['I', 'guess', "you'll", 'need', 'some', 'help.'], ['My', 'father', 'can', 'swim,', 'but', 'my', 'mother', "can't."], ['I', 'sent', 'it', 'to', 'you', 'two', 'days', 'ago.'], ['Be', 'still.'], ['I', 'had', 'a', 'good', 'time', 'playing', 'golf.'], ["I'll", 'be', 'back', 'at', 'seven', "o'clock."], ['Why', 'are', 'you', 'wearing', 'that?'], ['I', "don't", 'know,', 'nor', 'do', 'I', 'care.'], ['Do', 'you', 'know', 'when', 'he', 'will', 'come?'], ["You're", 'scaring', 'the', 'kids.'], ['I', 'have', 'to', 'put', 'the', 'kids', 'to', 'bed.'], ['This', 'symphony', 'is', 'a', 'real', 'masterpiece.'], ["Didn't", 'it', 'ever', 'occur', 'to', 'them', 'that', 'they', 'would', 'be', 'punished?'], ['Who', 'do', 'you', 'think', 'would', 'do', 'such', 'a', 'thing?'], ['We', 'have', 'three', 'trees', 'in', 'our', 'backyard.'], ['These', 'are', 'inexcusable', 'mistakes.'], ['The', 'students', 'of', 'this', 'school', 'are', 'kind.'], ['Please', 'smile.'], ['This', 'book', 'is', 'interesting.'], ['I', 'often', 'do', 'my', 'homework', 'before', 'dinner.'], ['Is', 'she', 'at', 'home?'], ['I', 'thought', 'you', 'might', 'be', 'lonely,', 'so', 'I', 'came', 'over', 'with', 'a', 'bottle', 'of', 'wine.'], ['God', 'sent', 'a', 'sign.'], ['That', 'would', 'not', 'be', 'easy.'], ['He', 'knows', 'the', 'truth.'], ['Why', "don't", 'you', 'go', 'take', 'a', 'nap?'], ['Did', 'you', 'do', 'something', 'you', "shouldn't", 'have?'], ['It', 'happened', 'at', 'a', 'quarter', 'past', 'eleven.'], ['I', 'never', 'for', 'a', 'moment', 'imagined', 'we', "wouldn't", 'get', 'home', 'before', 'the', 'storm', 'hit.'], ['Draw', 'a', 'circle.'], ["You've", 'got', 'to', 'learn', 'to', 'be', 'careful.'], ['I', 'had', 'the', 'same', 'problem', 'as', 'you', 'did.'], ['I', 'love', 'doing', 'this.'], ['Are', 'you', 'sure', 'you', 'just', 'want', 'water?'], ['You', "don't", 'sound', 'too', 'sure.'], ['Tom', "hasn't", 'eaten', 'anything', 'since', 'yesterday.'], ['I', "haven't", 'decided', 'which', 'job', 'to', 'apply', 'for.'], ['I', 'had', 'some', 'trouble', 'figuring', 'out', 'the', 'answer.'], ['Small', 'children', 'are', 'very', 'curious.'], ['I', "didn't", 'know', 'what', 'was', 'happening.'], ['Are', 'they', 'Japanese', 'or', 'Chinese?'], ['And', 'who', 'are', 'you', 'working', 'for', 'these', 'days?'], ['Thank', 'you', 'ever', 'so', 'much.'], ['Our', 'business', 'is', 'expanding.'], ['I', "can't", 'answer', 'your', 'question.'], ['Tom', 'went', 'to', 'the', 'park', 'by', 'himself.'], ['Tom', 'told', 'me', 'that', "he'd", 'be', 'late.'], ['Cookie', 'needs', 'a', 'walk.'], ['How', 'dare', 'you', 'accuse', 'me', 'of', 'lying!'], ['Is', 'Tom', 'safe?'], ['Not', 'all', 'criminals', 'should', 'go', 'to', 'jail.'], ['She', 'deposited', 'a', 'large', 'sum', 'of', 'money', 'in', 'the', 'bank.'], ['How', 'are', 'you', 'getting', 'along', 'in', 'your', 'new', 'job?'], ['Sometimes', "it's", 'better', 'to', 'remain', 'silent.'], ['He', 'looked', 'at', 'me', 'in', 'surprise.'], ["It's", 'a', 'good', 'start,', "don't", 'you', 'think?'], ['I', 'refuse', 'to', 'answer', 'that.'], ["You're", 'not', 'allowed', 'in', 'this', 'room.'], ["We're", 'almost', 'out', 'of', 'time.'], ['Tie', 'your', 'shoe.'], ['I', 'was', 'in', 'my', 'room', 'studying.'], ['Would', 'you', 'like', 'something', 'easier?'], ['How', 'did', 'you', 'reach', 'such', 'an', 'interesting', 'conclusion?'], ['Why', 'do', 'you', 'want', 'to', 'become', 'a', 'nurse?'], ['What', 'do', 'I', 'have', 'to', 'be', 'afraid', 'of?'], ['The', 'more', 'you', 'explain', 'it,', 'the', 'more', 'I', "don't", 'understand', 'it.'], ["We've", 'painted', 'the', 'walls', 'white.'], ['Whose', 'guitar', 'is', 'this?'], ['Sometimes', 'adults', 'behave', 'like', 'children.'], ['Give', 'a', 'thief', 'enough', 'rope', 'and', "he'll", 'hang', 'himself.'], ["Father's", 'hair', 'has', 'turned', 'gray.'], ['Her', 'heart', 'was', 'throbbing', 'with', 'excitement.'], ["Let's", 'go', 'this', 'way.'], ['I', "don't", 'think', 'I', 'can', 'help', 'you.'], ['December', 'is', 'the', 'last', 'month', 'of', 'the', 'year.'], ["What's", 'this', 'key', 'for?'], ["Who's", 'that', 'cute', 'guy', 'I', 'saw', 'you', 'with', 'yesterday?'], ['We', 'took', 'a', 'taxi', 'so', 'we', "wouldn't", 'be', 'late.'], ['Keep', 'your', 'room', 'as', 'neat', 'as', 'you', 'can.'], ["I'm", 'not', 'the', 'only', 'one', 'who', 'can', 'do', 'this.'], ['He', 'was', 'absolved', 'of', 'all', 'responsibility.'], ['Everybody', 'started', 'to', 'leave.'], ["I'll", 'transfer', 'you', 'to', 'the', 'right', 'person.'], ['Did', 'Tom', 'kill', 'himself?'], ['Stop', 'screaming', 'like', 'a', 'girl.'], ['My', 'computer', "won't", 'start', 'up', 'anymore.'], ['My', 'girlfriend', 'is', 'crying.'], ['I', 'wanted', 'you', 'to', 'see', 'that', "I'm", 'not', 'all', 'that', 'bad.'], ['They', 'lied.'], ['The', 'mouse', 'was', 'lured', 'into', 'the', 'trap', 'by', 'a', 'big', 'piece', 'of', 'cheese.'], ['Where', 'exactly', 'are', 'we', 'going?'], ['He', 'talks', 'well.'], ['These', 'products', 'are', 'selling', 'like', 'hot', 'cakes.'], ['I', 'just', 'wanted', 'to', 'help', 'Tom.'], ['Why', "didn't", 'you', 'get', 'one', 'before', 'we', 'left?'], ['We', "aren't", 'married.'], ['He', 'caught', 'a', 'terrible', 'cold.'], ['He', 'exposed', 'himself', 'to', 'danger.'], ['Do', 'you', 'want', 'me', 'to', 'call', 'the', 'police?'], ['Give', 'me', 'thirty', 'seconds.'], ['There', 'may', 'be', 'a', 'way.'], ['I', "don't", 'think', 'it', 'will', 'rain', 'this', 'afternoon.'], ['Thank', 'you', 'for', 'your', 'explanation.'], ['I', 'go', 'to', 'bed', 'about', 'ten.'], ['We', 'should', 'go,', "shouldn't", 'we?'], ['Let', 'me', 'do', 'my', 'work', 'in', 'peace.'], ["I've", 'been', 'trying', 'to', 'get', 'a', 'hold', 'of', 'you', 'for', 'the', 'past', 'two', 'hours.'], ['Is', 'this', 'your', 'wallet?'], ['I', 'thought', 'you', 'had', 'somewhere', 'else', 'to', 'be.'], ['He', 'fell', 'for', 'it', 'hook,', 'line,', 'and', 'sinker.'], ['Are', 'you', 'a', 'creature', 'of', 'habit?'], ['Are', 'you', 'retired,', 'Tom?'], ['I', "didn't", 'eat', 'everything', 'that', 'she', 'served', 'me.'], ['I', 'watched', 'a', 'movie.'], ["Don't", 'be', 'ridiculous!'], ['This', 'is', 'the', 'man', "I've", 'been', 'waiting', 'for.'], ['I', "didn't", 'want', 'to', 'die.'], ['Why', 'are', 'you', 'busy', 'today?'], ['They', 'walked', 'upstairs.'], ['She', 'ordered', 'the', 'book', 'from', 'London.'], ['She', 'teaches', 'English.'], ['We', "couldn't", 'convince', 'him', 'of', 'his', 'mistakes.'], ['You', 'still', "haven't", 'told', 'me', 'why', 'you', 'quit', 'your', 'job.'], ['Cherry', 'blossoms', 'are', 'very', 'beautiful.'], ['Are', 'you', 'hurt?'], ["Let's", 'go', 'to', 'a', 'movie.'], ['A', 'crow', 'is', 'as', 'black', 'as', 'coal.'], ['The', 'company', 'is', 'in', 'the', 'red.'], ['Certain', 'poisons,', 'properly', 'used,', 'are', 'useful.'], ["I'm", 'glad', 'to', 'see', "you're", 'happy.'], ['He', 'is', 'by', 'far', 'the', 'best', 'baseball', 'player', 'at', 'our', 'school.'], ['When', 'does', 'your', 'next', 'class', 'start?'], ["I'll", 'get', 'the', 'car.'], ['I', "can't", 'wait', 'to', 'eat', 'it.'], ['I', 'asked', 'the', 'doctor', 'some', 'questions.'], ["You're", 'too', 'trusting.'], ['Nobody', 'cares', 'what', 'you', 'think.'], ['I', 'saw', 'them.'], ['We', 'had', 'little', 'water.'], ['Employees', 'are', 'prohibited', 'from', 'watching', 'the', 'Olympics.'], ["Let's", 'not', 'gloat.'], ['I', 'write', 'poetry', 'in', 'my', 'free', 'time.'], ['I', 'totally', 'understand.'], ['He', 'succeeded', 'in', 'spite', 'of', 'all', 'difficulties.'], ['I', "don't", 'know', 'what', "we're", 'going', 'to', 'find,', 'but', 'we', 'should', 'find', 'something.'], ["I'm", 'not', 'going', 'to', 'the', 'movies', 'tomorrow.'], ['She', 'was', 'very', 'rude', 'to', 'him.'], ['I', 'told', 'her', 'that', 'if', 'I', 'could', 'be', 'of', 'any', 'use', 'I', 'would', 'be', 'glad', 'to', 'help.'], ['Would', 'you', 'like', 'to', 'go', 'to', 'a', 'movie', 'tonight?'], ["You've", 'got', 'a', 'big', 'mouth.'], ['I', 'reminded', 'him', 'of', 'his', 'interview', 'with', 'the', 'president.'], ['She', 'strongly', 'resembles', 'her', 'grandmother.'], ['Are', 'you', 'wondering', 'what', 'we', 'ended', 'up', 'doing?'], ['He', 'made', 'a', 'bad', 'decision.'], ["That's", 'kind', 'of', 'you', 'to', 'say.'], ['I', 'know', "I'm", 'in', 'trouble', 'now.'], ['What', 'kind', 'of', 'fruit', 'juice', 'do', 'you', 'have?'], ['He', 'stopped', 'smoking', 'on', 'his', "doctor's", 'advice.'], ['I', 'need', 'to', 'understand', 'the', 'meaning', 'of', 'this', 'sentence.'], ['I', 'want', 'to', 'know', 'who', 'they', 'are.'], ['Say', 'it', 'in', 'French.'], ['Darwin', 'changed', 'the', 'world.'], ['I', 'do', 'want', 'to', 'see', 'you.'], ["It's", 'the', 'end', 'of', 'the', 'year.'], ['He', 'is', 'alert', 'to', 'every', 'chance', 'of', 'making', 'money.'], ['I', 'invited', 'him', 'over', 'to', 'my', 'place.'], ['Keep', 'away', 'from', 'the', 'dog.'], ['This', 'kind', 'of', 'mistake', 'is', 'easy', 'to', 'overlook.'], ['Are', 'you', 'tired', 'of', 'living?'], ['Can', 'you', 'pronounce', 'these', 'words?'], ["It's", 'like', 'being', 'in', 'a', 'candy', 'store.'], ['I', 'was', 'too', 'fast.'], ['What', 'a', 'nice', 'tie!'], ['This', 'house', 'has', 'a', 'solid', 'foundation.'], ['I', "can't", 'believe', 'I', 'locked', 'myself', 'out', 'again.'], ['Will', 'you', 'show', 'me', 'the', 'picture?'], ['I', "don't", 'want', 'to', 'do', 'any', 'of', 'those', 'things.'], ["We're", 'persevering.'], ['The', 'Jacksons', 'moved', 'to', 'Boston.'], ['Why', "don't", 'you', 'admit', 'your', 'mistake?'], ['I', 'just', 'want', 'things', 'to', 'be', 'normal.'], ["You'll", 'understand', 'it', 'later', 'on.'], ["You'd", 'better', 'call', 'the', 'doctor.'], ['Shut', 'up!'], ['I', 'put', 'cream', 'in', 'my', 'coffee.'], ['Who', 'is', 'playing', 'the', 'piano', 'in', 'the', 'living', 'room?'], ['I', 'wonder', 'what', 'his', 'name', 'is.'], ['Tom', 'is', 'stubborn.'], ['Get', 'off', 'the', 'train', 'immediately.'], ['You', 'need', 'to', 'lose', 'some', 'weight.'], ['Students', 'are', 'supposed', 'to', 'study', 'hard.'], ['There', "isn't", 'much', 'butter', 'left', 'in', 'the', 'refrigerator.'], ['You', 'might', 'not', 'like', 'this.'], ['I', 'always', 'arrive', 'a', 'little', 'ahead', 'of', 'time.'], ['I', 'tried', 'thinking', 'about', 'why', 'it', 'was', 'that', 'I', "didn't", 'trust', 'him.'], ['You', 'should', 'not', 'despise', 'a', 'man', 'because', 'he', 'is', 'poor.'], ['He', 'stood', 'behind', 'his', 'mother.'], ['I', 'sometimes', 'dream', 'of', 'home.'], ['It', 'was', 'a', 'partial', 'success.'], ['It', 'was', 'his', 'fault.'], ['If', 'you', 'want,', 'you', 'can', 'easily', 'make', 'it.'], ["You're", 'not', 'expecting', 'me', 'to', 'help', 'you,', 'are', 'you?'], ['I', 'wanted', 'to', 'protect', 'you.'], ['The', 'only', 'thing', 'that', 'matters', 'is', 'that', 'you', 'are', 'alive.'], ['This', 'makes', 'no', 'sense', 'to', 'me.'], ['Unless', 'you', 'hurry,', 'you', 'will', 'be', 'late', 'for', 'school.'], ['I', "haven't", 'been', 'sleeping', 'very', 'much', 'lately.'], ['I', 'guess', "it's", 'possible.'], ['Do', 'you', 'write', 'in', 'French?'], ['I', "can't", 'wait', 'to', 'leave', 'this', 'place.'], ['Many', 'cities', 'were', 'destroyed', 'by', 'bombs.'], ['He', "doesn't", 'remember', 'anything.'], ['You', 'must', 'make', 'allowance', 'for', 'his', 'lack', 'of', 'experience.'], ['He', 'met', 'an', 'unexpected', 'obstacle.'], ['I', 'just', 'wanted', 'to', 'say', 'that', 'I', 'love', 'you.'], ['Tom', 'graduated.'], ['I', 'have', 'the', 'same', 'problem', 'as', 'you', 'do.'], ["Let's", 'wait', 'here.'], ["He's", 'not', 'a', 'liar.'], ['Tom', 'is', 'three', 'years', 'older', 'than', 'you,', "isn't", 'he?'], ['I', "don't", 'know', 'why', "it's", 'happening.'], ['Tom', 'heard', 'a', 'noise', 'and', 'went', 'outside', 'to', 'see', 'what', 'it', 'was.'], ['I', 'want', 'to', 'learn', 'Hebrew.'], ['I', 'want', 'to', 'see', 'more.'], ['You', 'should', 'be', 'more', 'careful', 'the', 'next', 'time.'], ['Beautiful', 'day,', "isn't", 'it?'], ['Finally,', 'he', 'reached', 'his', 'goal.'], ['She', 'kept', 'the', 'secret', 'to', 'herself.'], ['I', 'like', 'coffee', 'better.'], ["You're", 'not', 'the', 'only', 'Canadian', 'here.'], ['Get', 'some', 'help,', 'will', 'you?'], ["That's", 'what', 'I', 'want', 'most', 'right', 'now.'], ['Does', 'this', 'mean', "you're", 'not', 'coming', 'to', 'help?'], ['Do', 'you', 'have', 'any', 'knowledge', 'of', 'this', 'matter?'], ['He', 'suggested', 'that', 'I', 'accompany', 'him', 'to', 'the', 'party.'], ['Are', 'you', 'ready', 'for', "today's", 'game?'], ['When', 'does', 'the', 'rainy', 'season', 'in', 'Japan', 'begin?'], ['Fortunately,', 'no', 'one', 'was', 'hurt.'], ["Can't", 'you', 'see', "I'm", 'busy?'], ['I', 'ought', 'to', 'go', 'there,', 'but', 'I', "won't."], ['Tom', "isn't", 'a', 'lazy', 'child.'], ['I', 'was', 'taken', 'in', 'by', 'the', 'salesman.'], ['Tell', 'the', 'maid', 'to', 'make', 'the', 'beds.'], ["You're", 'even', 'more', 'naive', 'than', 'I', 'thought.'], ['Whatever', 'happened', 'to', 'your', 'pride?'], ["We're", 'already', 'old.'], ['He', 'talks', 'as', 'if', 'he', 'were', 'a', 'teacher.'], ['Women', 'are', 'better', 'at', 'this', 'than', 'men.'], ['As', 'you', 'climb', 'higher,', 'the', 'air', 'becomes', 'colder.'], ['How', 'did', 'you', 'spend', 'your', 'winter', 'vacation?'], ['I', "can't", 'read', 'lips.'], ['Do', 'you', 'have', 'other', 'family?'], ['I', 'often', 'look', 'up', 'words', 'in', 'that', 'dictionary.'], ['He', 'died', 'on', 'the', 'day', 'his', 'son', 'arrived.'], ['Tom', 'is', 'a', 'bit', 'older', 'than', 'Mary.'], ['Pray', 'for', 'all', 'of', 'us.'], ['I', 'feel', 'like', 'a', 'fool.'], ['I', 'get', 'a', 'call', 'from', 'her', 'once', 'in', 'a', 'while.'], ['Tom', 'decided', 'to', 'enter', 'the', 'room.'], ["You'd", 'make', 'a', 'good', 'private', 'detective.'], ['Do', 'you', 'want', 'to', 'get', 'us', 'both', 'killed?'], ["I'm", 'going', 'to', 'put', 'a', 'stop', 'to', 'it.'], ['I', 'know', 'Tom', 'is', 'a', 'bright', 'kid.'], ["Let's", 'leave', 'the', 'decision', 'to', 'our', 'teacher.'], ['If', 'you', 'follow', 'me,', "I'll", 'show', 'you', 'the', 'way', 'to', 'the', 'hospital.'], ['Dentists', 'take', 'x-rays', 'to', 'examine', 'your', 'teeth.'], ['Parents', 'must', 'provide', 'their', 'children', 'with', 'proper', 'food', 'and', 'clothing.'], ['Can', 'you', 'write', 'Braille?'], ['I', 'could', 'make', 'nothing', 'of', 'what', 'he', 'said.'], ['Where', 'are', 'your', 'kids?'], ["You're", 'no', 'saint.'], ['I', 'thought', 'that', 'I', 'saw', 'a', 'ghost.'], ['Just', 'give', 'me', 'a', 'little', 'time.'], ["I'm", 'afraid', "I've", 'offended', 'you.'], ['He', 'had', 'been', 'walking', 'for', 'hours.'], ["There've", 'been', 'times', 'when', "that's", 'happened.'], ['This', 'tea', 'is', 'really', 'sweet.'], ['He', 'will', 'be', 'my', 'deputy', 'while', 'I', 'am', 'away.'], ['Are', 'you', 'in', 'Boston?'], ['We', 'saw', 'a', 'stranger', 'walking', 'outside.'], ['Did', 'I', 'miss', 'something', 'this', 'morning?'], ["I'll", 'have', 'a', 'nap', 'after', 'lunch.'], ['I', "don't", 'eat', 'a', 'lot', 'of', 'fruit.'], ['I', 'hate', 'this', 'job.'], ['What', 'a', 'terrible', 'day!'], ['I', 'really', 'wish', 'I', "didn't", 'have', 'to', 'go', 'to', 'that', 'meeting', 'this', 'afternoon.'], ['I', 'have', 'to', 'remember', 'to', 'mail', 'the', 'letter.'], ['He', 'tried', 'to', 'swim', 'against', 'the', 'tide.'], ['Everywhere', 'you', 'look', 'you', 'can', 'see', 'damage', 'caused', 'by', 'the', 'earthquake.'], ["Don't", 'be', 'too', 'sensitive', 'to', 'criticism.'], ['This', 'morning,', 'I', 'saw', 'an', 'angel.'], ['My', 'uncle', 'lived', 'in', 'Washington,', 'D.', 'C.', 'for', 'two', 'years.'], ['Why', 'do', 'our', 'schools', 'look', 'like', 'prisons?'], ["I'll", 'let', 'you', 'know', 'when', 'she', 'arrives.'], ['I', "can't", 'imagine', 'what', "you're", 'going', 'through.'], ['This', 'is', 'worth', 'studying.'], ['I', "can't", 'win.'], ['My', 'grandmother', 'never', 'changed', 'her', 'style', 'of', 'living.'], ['I', 'have', 'known', 'that', 'for', 'a', 'long', 'time.'], ["I'm", 'not', 'sure', 'of', 'anything.'], ['He', 'looked', 'up', 'at', 'the', 'night', 'sky.'], ['He', 'just', 'returned', 'from', 'abroad.'], ['Everybody', 'in', 'the', 'building', 'headed', 'for', 'the', 'exits', 'at', 'the', 'same', 'time.'], ["You'll", 'have', 'to', 'take', 'his', 'place', 'in', 'case', 'he', "can't", 'come.'], ["I'm", 'not', 'that', 'drunk.'], ['Have', 'you', 'read', 'anything', 'interesting', 'lately?'], ['War', 'is', 'a', 'crime', 'against', 'humanity.'], ["It's", 'very', 'dark.'], ['I', 'knew', "you'd", 'say', 'that.'], ['You', "don't", 'look', 'so', 'busy.'], ['I', 'would', 'never', 'allow', 'that.'], ['Tom', 'eats', 'twice', 'as', 'much', 'as', 'Mary.'], ['If', "you're", 'not', 'happy,', 'quit.'], ["I'm", 'seeing', 'you', 'in', 'a', 'new', 'light.'], ['Why', 'do', 'you', 'want', 'to', 'do', 'this?'], ['All', 'the', 'boys', 'are', 'the', 'same', 'age.'], ['I', 'looked', 'down.'], ['The', 'students', 'have', 'access', 'to', 'these', 'computers.'], ['I', "can't", 'believe', "I'm", 'stuck', 'here', 'in', 'this', 'room', 'with', 'you.'], ['Tom', 'made', 'a', 'serious', 'error.'], ['Do', 'you', 'have', 'any', 'ID?'], ['Muammar', 'Kaddafi', 'escaped', 'unharmed.'], ["You're", 'afraid', 'of', 'me,', "aren't", 'you?'], ['They', 'sat', 'side', 'by', 'side.'], ['We', 'eat', 'every', 'evening', 'at', 'six.'], ['What', 'were', 'you', 'doing', 'that', 'moment?'], ['Thousands', 'of', 'people', 'were', 'milling', 'around', 'in', 'the', 'square.'], ['Who', 'are', 'you', 'talking', 'about?'], ["I'm", 'no', 'match', 'for', 'you.'], ['I', 'remember', 'the', 'warmth', 'of', 'his', 'arms.'], ['Let', 'me', 'try', 'something.'], ['Is', 'he', 'looking', 'at', 'me?'], ['Why', 'do', 'you', 'want', 'to', 'learn', 'a', 'foreign', 'language?'], ['You', 'were', 'clearly', 'mistaken.'], ['I', 'will', 'advise', 'you', 'on', 'the', 'matter.'], ["It's", 'not', 'enough.'], ['Tom', 'taught', 'Mary', 'to', 'read.'], ['Back', 'off!'], ['That', 'is', 'no', 'business', 'of', 'yours.'], ['What', 'a', 'wonderful', 'party!'], ['I', "wouldn't", 'miss', 'this', 'for', 'the', 'world.'], ['The', 'competition', 'is', 'fierce.'], ['I', 'advise', 'you', 'to', 'be', 'punctual.'], ['The', 'student', 'raised', 'his', 'hand.'], ['I', 'am', 'not', 'your', 'enemy.'], ['He', 'smoked', 'as', 'if', 'nothing', 'had', 'happened.'], ['I', 'will', 'come', 'on', 'Wednesday', 'evening', 'unless', 'I', 'hear', 'from', 'you', 'to', 'the', 'contrary.'], ['I', 'had', 'a', 'breakdown.'], ['I', 'just', 'do', 'what', "I'm", 'told.'], ['You', 'can', 'pick', 'up', 'a', 'lot', 'of', 'words', 'by', 'reading.'], ['Are', 'you', 'absolutely', 'sure', 'that', 'it', 'was', 'Tom', 'you', 'saw?'], ["It's", 'dark,', 'so', 'watch', 'your', 'step.'], ['I', 'have', 'to', 'think.'], ["He's", 'curious', 'about', 'everything.'], ['You', 'are', 'so', 'cute.'], ['Hey,', "it's", 'not', 'so', 'bad.'], ['I', 'feel', 'well.'], ['A', 'boy', 'came', 'running', 'towards', 'me.'], ["I'm", 'only', 'doing', 'my', 'duty.'], ['From', 'the', 'look', 'of', 'the', 'sky,', 'it', 'may', 'begin', 'to', 'snow', 'tonight.'], ['I', "couldn't", 'figure', 'out', 'how', 'to', 'open', 'the', 'door.'], ['Please', 'note', 'that', 'the', 'price', 'is', 'subject', 'to', 'change.'], ['Can', 'anyone', 'vouch', 'for', 'your', 'whereabouts', 'last', 'night?'], ["It'll", 'be', 'our', 'secret.'], ['You', "don't", 'want', 'to', 'know.'], ['He', 'is', 'rich', 'and', 'I', 'am', 'poor.'], ["We've", 'got', 'a', 'job', 'to', 'do.'], ['Tom', "didn't", 'do', 'anything', 'else.'], ['I', 'never', 'asked', 'for', 'it.'], ['I', "can't", 'live', 'without', 'him.'], ['Are', 'you', 'sure', 'this', 'is', 'a', 'good', 'idea?'], ['Some', 'people', 'are', 'never', 'content', 'with', 'what', 'they', 'have.'], ["You're", 'not', 'interrupting', 'anything.'], ["He'll", 'be', 'here', 'real', 'soon.'], ['The', 'following', 'was', 'inspired', 'in', 'part', 'by', 'a', 'true', 'story.'], ['You', 'should', 'get', 'some', 'rest.'], ['I', "can't", 'drink', 'this', 'stuff.'], ['You', "don't", 'fool', 'me,', 'you', 'know.'], ['He', 'took', 'pity', 'on', 'me', 'and', 'helped', 'me', 'out.'], ["You've", 'done', 'a', 'pretty', 'good', 'job', 'so', 'far.'], ["You're", 'asking', 'me', 'to', 'do', 'something', 'I', "don't", 'want', 'to', 'do.'], ['Take', 'your', 'shoes', 'off', 'before', 'you', 'come', 'into', 'the', 'room.'], ['Look', 'at', 'all', 'these', 'boxes.'], ['Tom', 'is', 'a', 'bachelor.'], ['If', 'the', 'medicine', "isn't", 'working,', 'maybe', 'we', 'should', 'up', 'the', 'dosage.'], ['We', 'hit', 'it', 'off', 'right', 'off', 'the', 'bat.'], ['They', "don't", 'have', 'to', 'go', 'to', 'school', 'today.'], ['What', 'woke', 'you', 'up?'], ['Maybe', 'Tom', 'will', 'give', 'me', 'a', 'job.'], ['I', 'love', 'your', 'sweater.'], ['He', 'whistled', 'for', 'his', 'dog.'], ['Good', 'afternoon.'], ['Morality', 'is', 'mostly', 'a', 'matter', 'of', 'how', 'much', 'temptation', 'you', 'can', 'withstand.'], ['That', 'dictionary', 'is', 'mine.'], ["I'm", 'the', 'youngest', 'in', 'the', 'family.'], ["What's", 'all', 'this', 'noise?'], ['The', 'answer', 'is', 'pretty', 'simple.'], ['We', 'all', 'wondered', 'why', 'she', 'had', 'dumped', 'such', 'a', 'nice', 'man.'], ['Are', 'you', 'new', 'here?'], ['We', 'have', 'more', 'to', 'do.'], ['Is', 'it', 'all', 'right', 'to', 'eat', 'out', 'tonight?'], ['Frankly,', 'I', "don't", 'like', 'your', 'idea.'], ['He', 'wished', 'he', 'had', 'more', 'time.'], ["That's", 'a', 'very', 'interesting', 'theory.'], ['I', "can't", 'take', 'another', 'step.'], ['Tom', 'wanted', 'to', 'be', 'famous.'], ['Tom', 'was', 'also', 'having', 'fun.'], ['Do', 'you', 'plan', 'to', 'rent', 'a', 'car?'], ['I', "wasn't", 'the', 'only', 'one', 'who', "didn't", 'know', 'Tom.'], ['He', 'gave', 'me', 'a', 'ride', 'home.'], ["That's", 'enough.'], ['He', 'asked', 'me', 'who', 'I', 'was.'], ['I', "can't", 'stop', 'myself.'], ['We', 'often', 'watch', 'TV', 'while', "we're", 'eating', 'breakfast.'], ['Tom', 'will', 'find', 'Mary.'], ['Please', 'tell', 'me', 'where', 'the', 'marketplace', 'is.'], ['Her', 'face', 'beamed', 'with', 'joy.'], ['He', 'has', 'a', 'maid.'], ['Do', 'you', 'want', 'me', 'to', 'leave?'], ["I'm", 'sorry,', 'I', "don't", 'recognize', 'you.'], ['I', 'want', 'to', 'make', 'sure', 'you', 'know', 'what', 'to', 'do.'], ['We', 'must', 'avoid', 'war', 'by', 'all', 'possible', 'means.'], ['Why', 'do', 'you', 'have', 'to', 'be', 'like', 'that?'], ['Tom', 'already', 'knows', 'how', 'to', 'read.'], ['He', 'owns', 'a', 'very', 'valuable', 'wristwatch.'], ['What', 'were', 'you', 'waiting', 'for?'], ['I', "don't", 'think', 'Tom', 'was', 'mistaken.'], ['We', 'want', 'to', 'reach', 'a', 'wider', 'audience.'], ['I', 'just', 'bought', 'some', 'cardboard.'], ['Hold', 'your', 'position.'], ['I', "can't", 'believe', "we're", 'really', 'living', 'here.'], ['Central', 'Park', 'is', 'near', 'where', 'I', 'work.'], ["I'll", 'let', 'you', 'know', 'if', 'I', 'find', 'anything', 'interesting.'], ['We', 'had', 'a', 'deal.'], ['I', 'hate', 'this.'], ["I'll", 'bring', 'you', 'something', 'to', 'eat.'], ['When', 'was', 'the', 'last', 'time', 'you', 'spoke', 'with', 'Tom?'], ["We're", 'leaving', 'tomorrow.'], ['Why', 'would', 'she', 'lie?'], ['She', 'always', 'wears', 'fashionable', 'clothes.'], ['We', 'were', 'soldiers.'], ['She', 'told', 'me', 'that', 'her', 'mother', 'had', 'bought', 'it', 'for', 'her.'], ['Did', 'you', 'go', 'straight', 'home', 'after', 'school', 'yesterday?'], ['Every', 'time', 'he', 'goes', 'out,', 'he', 'drops', 'in', 'at', 'the', 'bookstore.'], ["We're", 'brothers.'], ['You', 'can', 'spend', 'the', 'night.'], ['Do', 'you', 'know', 'what', 'it', 'was?'], ["I'm", 'smarter', 'than', 'you.'], ['How', 'long', 'did', 'you', 'stay', 'at', 'the', 'party?'], ["I'm", 'not', 'a', 'saint.'], ['I', 'fed', 'the', 'horse.'], ['I', 'have', 'the', 'dictionary.'], ['Are', 'you', 'doing', 'all', 'right?'], ["What'll", 'you', 'give', 'me', 'for', 'this?'], ['He', 'uses', 'foul', 'language', 'whenever', 'he', 'gets', 'angry.'], ["That's", 'what', 'they', 'told', 'me.'], ['I', "don't", 'understand', 'why', 'you', 'want', 'it.'], ['Does', 'someone', 'here', 'speak', 'French?'], ['I', 'did', 'everything', 'I', 'could', 'think', 'of.'], ['Have', 'you', 'ever', 'been', 'in', 'prison?'], ['Tom', 'said', 'that', 'he', 'was', 'thirsty.'], ["They're", 'outside.'], ['Please', 'mail', 'this', 'form', 'to', 'your', 'insurance', 'company.'], ['Tom', 'is', 'actually', 'busy', 'today.'], ['Everyone', 'started', 'talking', 'at', 'once.'], ['My', 'wife', 'had', 'a', 'baby', 'last', 'week.'], ['What', 'kind', 'of', 'movies', 'do', 'you', 'like', 'to', 'watch?'], ["I'll", 'go', 'crazy', 'if', 'this', 'keeps', 'up.'], ['When', 'did', 'you', 'become', 'a', 'teacher?'], ['I', 'love', 'music,', 'particularly', 'classical.'], ['Many', 'people', 'put', 'too', 'much', 'personal', 'information', 'on', 'social', 'media.'], ['He', 'removed', 'his', 'sunglasses.'], ['She', 'took', 'up', 'his', 'offer.'], ['This', 'typewriter', 'has', 'been', 'used', 'a', 'lot.'], ["There's", 'no', 'guarantee', 'that', 'the', 'stock', 'will', 'go', 'up.'], ["I've", 'had', 'enough', 'of', 'your', 'snide', 'remarks.'], ['Ask', 'your', 'parents', 'for', 'permission.'], ['You', 'are,', 'hands', 'down,', 'the', 'biggest', 'idiot', "I've", 'ever', 'met.'], ["I'll", 'take', 'those.'], ['I', 'have', 'something', 'to', 'trade.'], ['He', 'seems', 'to', 'have', 'been', 'rich.'], ['Boston', 'is', 'a', 'large', 'city.'], ['You', 'were', 'beginning', 'to', 'worry', 'me.'], ['Where', 'did', 'you', 'stay?'], ["Aren't", 'you', 'glad', 'you', "didn't", 'go', 'to', 'Boston?'], ['The', 'boy', 'made', 'a', 'paper', 'plane.'], ['If', 'my', 'wife', 'calls,', 'just', 'tell', 'her', "I'm", 'in', 'an', 'important', 'meeting', 'and', 'cannot', 'be', 'disturbed.'], ["I've", 'always', 'loved', 'you.'], ['Tom', 'is', 'persuaded', "he's", 'right.'], ['An', 'honest', 'man', 'never', 'steals', 'money.'], ['We', 'want', 'justice.'], ['I', 'know', 'why', 'you', 'did', 'it.'], ["I'd", 'appreciate', 'it.'], ['Tom', "wouldn't", 'like', 'Boston.'], ["I'd", 'like', 'to', 'be', 'more', 'like', 'you.'], ["We're", 'friends,', 'right?'], ['She', 'has', 'lunch', 'at', 'home.'], ['I', 'saw', 'what', 'you', 'did.'], ['They', 'know', "we're", 'cops.'], ['I', "don't", 'want', 'dinner.'], ['Tom', 'will', 'work', 'hard.'], ['The', 'work', 'has', 'to', 'be', 'finished', 'before', 'noon.'], ['I', 'feel', 'inclined', 'to', 'agree', 'with', 'her.'], ['Maybe', 'Tom', 'was', 'the', 'one', 'who', 'stole', 'your', 'bicycle.'], ['Will', 'you', 'be', 'hiring', 'any', 'part-time', 'help?'], ["I'd", 'like', 'to', 'make', 'a', 'reservation', 'for', 'next', 'Monday.'], ['The', 'river', 'flooded', 'the', 'entire', 'region.'], ['Tom', 'should', 'really', 'study', 'French.'], ['Did', 'I', 'make', 'the', 'team?'], ['It', 'worked', 'perfectly.'], ["We're", 'not', 'getting', 'any', 'younger.'], ['Now', 'fix', 'that.'], ["I'll", 'make', 'all', 'the', 'arrangements.'], ["You'll", 'ruin', 'everything.'], ['She', 'gladly', 'accepted', 'his', 'proposal.'], ['How', 'often', 'should', 'I', 'feed', 'my', 'dog?'], ['This', 'door', 'will', 'not', 'open.'], ['I', 'would', 'never', 'do', 'it', 'again.'], ['There', 'are', 'many', 'galaxies', 'in', 'the', 'universe.'], ['It', 'may', 'sound', 'strange,', 'but', 'it', 'is', 'true.'], ['The', 'Sphinx', 'began', 'to', 'walk', 'around', 'him.'], ['Smog', 'hung', 'over', 'Tokyo.'], ['What', 'do', 'you', 'want', 'to', 'learn?'], ['I', 'think', "you're", 'right.'], ['I', 'think', "I'll", 'take', 'this', 'tie.'], ['She', 'advised', 'him', 'not', 'to', 'buy', 'a', 'used', 'car,', 'but', 'he', "didn't", 'follow', 'her', 'advice.'], ['Last', 'night', 'my', 'daughter', "didn't", 'come', 'home', 'until', 'half', 'past', 'one.'], ['How', 'much', 'time', 'and', 'energy', 'do', 'you', 'spend', 'on', 'projects', 'that', "don't", 'make', 'you', 'any', 'money?'], ['The', 'robber', 'was', 'nabbed', 'this', 'morning.'], ['The', 'cat', 'is', 'sitting', 'on', 'top', 'of', 'the', 'table.'], ["You're", 'opportunistic.'], ['Tom', 'is', 'used', 'to', 'working', 'hard.'], ['I', "don't", 'have', 'anything', 'to', 'say', 'on', 'that', 'subject.'], ['You', 'can', 'pour', 'the', 'wine', 'into', 'the', 'glass.'], ['I', 'must', 'postpone', 'going', 'to', 'the', 'dentist.'], ['The', 'result', 'was', 'far', 'from', 'being', 'satisfactory.'], ['I', 'meant', 'you', 'no', 'harm.'], ['Tom', 'tripped', 'over', 'something.'], ['There', 'were', 'three', 'coffee', 'mugs', 'on', 'the', 'table.'], ['This', 'is', 'why', 'I', 'hate', 'him.'], ["What's", 'your', "dad's", 'name?'], ['I', 'just', "don't", 'like', 'it.'], ['Did', 'I', 'give', 'it', 'to', 'you?'], ['What', 'were', 'you', 'hoping', 'to', 'see?'], ["It's", 'routine', 'procedure.'], ['Do', 'you', 'have', 'an', 'extra', 'key?'], ['A', 'large', 'amount', 'of', 'money', 'was', 'spent', 'on', 'the', 'new', 'bridge.'], ["I'm", 'the', 'youngest', 'in', 'the', 'family.'], ['Tell', 'me', 'how', 'to', 'do', 'that.'], ['I', "don't", 'know', 'how', 'to', 'explain', 'it.'], ['The', 'telephone', "doesn't", 'work.'], ['He', 'urged', 'his', 'government', 'not', 'to', 'sign', 'it.'], ['Would', 'you', 'mind', 'turning', 'down', 'the', 'radio?'], ['Is', 'Tom', 'ready', 'for', 'this?'], ["I'm", 'sorry', 'I', 'yelled', 'at', 'you.'], ["Don't", 'be', 'so', 'shy.'], ['Wow,', "it's", 'pretty', 'cold', 'today.'], ['Are', 'you', 'old', 'enough', 'to', 'drive?'], ['Tom', 'is', 'older', 'than', 'me.'], ["Tom's", 'behavior', 'never', 'ceases', 'to', 'surprise', 'me.'], ["I'll", 'give', 'you', 'a', 'ride.'], ['Give', 'it', 'to', 'me', 'straight.'], ['Do', 'you', 'really', 'want', 'to', 'dance?'], ['Why', 'did', 'you', 'come', 'here?'], ['Look', 'at', 'all', 'these', 'flowers.'], ['Most', 'of', 'the', 'time,', 'he', "doesn't", 'get', 'to', 'sleep', 'before', 'two', 'or', 'even', 'three', "o'clock", 'in', 'the', 'morning.'], ['I', "don't", 'want', 'to', 'stir', 'up', 'old', 'memories.'], ['Have', 'a', 'safe', 'journey.'], ['This', 'bridge', 'is', 'built', 'of', 'stone.'], ["We're", 'being', 'watched.'], ['That', 'noise', 'woke', 'me', 'up.'], ['They', 'worked', 'through', 'the', 'night.'], ['I', "didn't", 'mean', 'to', 'hit', 'him.'], ['I', 'already', 'called', 'him.'], ["Today's", 'special', 'is', 'fish.'], ['Who', 'recommended', 'Tom', 'for', 'the', 'position?'], ['I', 'wanted', 'to', 'go', 'back', 'to', 'your', 'village.'], ['It', 'looks', 'really', 'good.'], ['I', 'want', 'them', 'to', 'be', 'your', 'friends.'], ['Who', 'are', 'those', 'men', 'in', 'white', 'suits?'], ['I', 'lost', 'my', 'dog.'], ['We', "don't", 'have', 'a', 'moment', 'to', 'lose.'], ['Watch', 'your', 'back.'], ['He', 'spoke', 'with', 'a', 'pipe', 'in', 'his', 'mouth.'], ['I', 'thought', 'it', 'was', 'true.'], ["Tom's", 'feet', 'were', 'cold.'], ['The', 'city', 'fell', 'to', 'the', 'enemy.'], ['I', 'was', 'trespassing.'], ['Do', 'you', 'have', 'your', 'laptop', 'with', 'you?'], ['I', 'know', 'what', 'it', 'feels', 'like.'], ['Tom', 'put', 'on', 'his', 'slippers.'], ["I'm", 'glad', 'to', 'be', 'the', 'one', 'who', 'tells', 'you.'], ['I', 'was', 'worried', 'to', 'death.'], ['The', 'mailman', 'emptied', 'the', 'mailbox.'], ['Tom', "doesn't", 'know', 'how', 'strong', 'you', 'are.'], ['I', 'love', 'Australia.'], ['He', 'hung', 'an', 'old,', 'wooden', 'oar', 'on', 'his', 'wall', 'as', 'a', 'decoration.'], ['Everybody', 'in', 'the', 'building', 'felt', 'the', 'earthquake.'], ['Whose', 'book', 'is', 'this?'], ["I'd", 'like', 'to', 'ask', 'you', 'a', 'few', 'questions', 'if', 'you', "don't", 'mind.'], ["I'll", 'excuse', 'your', 'carelessness', 'this', 'time.'], ['Bring', 'your', 'children', 'with', 'you.'], ['I', 'see', 'how', 'you', 'did', 'that.'], ['I', 'accused', 'him', 'of', 'cheating.'], ['If', 'my', 'brother', "hadn't", 'helped', 'me,', 'I', "would've", 'drowned.'], ['I', "didn't", 'see', 'her.'], ['The', 'first', 'time', 'you', 'meet', 'people,', 'you', 'should', 'be', 'careful', 'about', 'how', 'near', 'you', 'stand', 'to', 'them.'], ['I', 'want', 'to', 'see', 'your', 'boss.'], ['I', 'thought', "you'd", 'be', 'different.'], ['A', 'loophole', 'in', 'the', 'law', 'allowed', 'him', 'to', 'escape', 'prosecution.'], ['Does', 'she', 'know', 'your', 'phone', 'number?'], ['Mary', 'is', 'my', 'fiancée.'], ["I'm", 'sorry,', 'I', "can't", 'help', 'you.'], ['The', 'competition', 'has', 'become', 'fierce.'], ['This', 'is', 'my', "brother's."], ['He', 'was', 'tired,', 'but', 'he', 'kept', 'working.'], ['Tom', 'asked', 'Mary', 'not', 'to', 'do', 'anything.'], ['She', 'has', 'a', 'very', 'good', 'relationship', 'with', 'her', 'students.'], ['We', 'went', 'to', 'see', 'our', 'neighbors.'], ['He', 'was', 'the', 'kind', 'of', 'kid', 'who', 'was', 'always', 'showing', 'off', 'to', 'his', 'classmates.'], ['Some', 'of', 'the', 'money', 'was', 'stolen.'], ['They', 'regarded', 'the', 'man', 'as', 'a', 'danger', 'to', 'society.'], ['I', "can't", 'believe', 'you', 'did', 'that', 'by', 'yourself.'], ['His', 'advice', 'counted', 'for', 'little.'], ['Tom', 'is', 'very', 'unpredictable', 'when', "he's", 'been', 'drinking.'], ['How', 'tall', 'you', 'are!'], ['The', 'police', 'found', 'no', 'signs', 'of', 'foul', 'play', 'in', 'the', 'apartment.'], ["You're", 'not', 'allowed', 'to', 'leave', 'this', 'room.'], ['I', 'come', 'every', 'day.'], ['He', 'suddenly', 'stopped', 'talking.'], ['I', 'sometimes', 'dream', 'of', 'my', 'mother.'], ['My', 'wife', 'died', 'of', 'cancer.'], ['She', 'just', 'wrote', 'a', 'book.'], ['He', 'was', 'thrown', 'behind', 'bars.'], ["I'm", 'willing', 'to', 'help', 'you', 'if', 'you', 'want', 'me', 'to.'], ['Thank', 'you', 'for', 'stopping', 'by.'], ['He', 'whipped', 'out', 'his', 'sword.'], ['I', 'want', 'to', 'thank', 'you', 'all', 'for', 'a', 'job', 'well', 'done.'], ['He', 'is', 'as', 'good', 'as', 'dead.'], ['At', 'least', 'they', 'listened', 'to', 'me.'], ['I', "don't", 'think', 'Tom', 'will', 'be', 'at', 'school', 'tomorrow.'], ["I'm", 'hardly', 'ever', 'home.'], ['She', 'gave', 'him', 'a', 'few', 'pointers', 'on', 'pronunciation.'], ["We've", 'seen', 'this', 'happen', 'too', 'many', 'times.'], ["Don't", 'deny', 'it.'], ['It', 'was', 'mad', 'of', 'him', 'to', 'try', 'to', 'swim', 'in', 'the', 'icy', 'water.'], ['Tom', "doesn't", 'want', 'to', 'lose', 'Mary.'], ['I', 'made', 'a', 'list.'], ['How', 'much', 'is', 'this', 'ring?'], ['The', 'product', 'is', 'guaranteed', 'to', 'be', 'free', 'from', 'defects.'], ['She', 'came', 'into', 'the', 'room.'], ['Tell', 'me', 'why', 'she', 'is', 'crying.'], ['I', 'hugged', 'her', 'tightly.'], ['He', 'is', 'fluent', 'in', 'English.'], ['I', 'just', 'want', 'to', 'ask', 'you', 'some', 'questions.'], ["Let's", 'talk', 'about', 'your', 'childhood.'], ['We', 'talked', 'about', 'time', 'zones.'], ['Tom', 'always', 'makes', 'fun', 'of', 'John', 'because', 'of', 'his', 'dialect.'], ['I', "didn't", 'realize', 'it', 'until', 'much', 'later.'], ['His', 'wounded', 'leg', 'began', 'to', 'bleed', 'again.'], ['I', 'got', 'arrested.'], ['Tom', 'is', 'busy', 'writing', 'a', 'speech.'], ['There', 'are', 'few', 'legal', 'constraints', 'on', 'the', 'sale', 'of', 'firearms', 'in', 'the', 'U.S.'], ['Balls', 'are', 'round.'], ['What', 'do', 'you', 'feed', 'your', 'dog?'], ['She', 'interrupted', 'him', 'while', 'he', 'was', 'speaking', 'to', 'my', 'father.'], ['He', 'is', 'a', 'lazy', 'fellow.'], ['The', 'boys', 'are', 'thirsty.'], ['I', "don't", 'love', 'her.'], ["Don't", 'stay', 'out', 'all', 'night.'], ['This', 'is', 'ugly.'], ['The', 'tire', 'leaks', 'air.'], ['Where', "there's", 'a', 'will,', "there's", 'a', 'way.'], ["We're", 'not', 'done.'], ["I'm", 'living', 'with', 'my', 'parents.'], ['I', "don't", 'need', 'it', 'now.'], ["There's", 'another', 'solution.'], ["That's", 'just', 'what', 'we', 'need.'], ['Why', 'do', 'you', 'call', 'me', 'that?'], ['I', "don't", 'know', 'what', 'your', 'problem', 'is.'], ['Stay', 'away', 'from', 'my', 'daughter.'], ["I'm", 'sorry', "I'm", 'late.'], ['Tom', 'has', 'a', '13-year-old', 'sister.'], ["Tom's", 'arrived.'], ['When', 'did', 'you', 'visit', 'your', 'friends?'], ["He's", 'wearing', 'a', 'new', 'coat.'], ['Is', 'this', 'store', 'open', 'on', 'Sundays?'], ["We're", 'trapped!'], ['We', 'would', 'often', 'talk', 'about', 'our', 'future.'], ['He', 'is', 'pleased', 'with', 'his', 'work.'], ['His', 'house', 'is', 'across', 'from', 'mine.'], ["Tom's", 'delighted.'], ['Are', 'you', 'out', 'of', 'your', 'mind?'], ['She', "didn't", 'want', 'him', 'to', 'play', 'poker.'], ['I', 'asked', 'Tom', 'if', 'I', 'could', 'talk', 'to', 'him', 'in', 'private.'], ['Chess', 'and', 'checkers', 'are', 'favorites', 'with', 'them.'], ["I'm", 'fed', 'up', 'with', 'him', 'always', 'preaching', 'to', 'me.'], ["I'm", 'very', 'happy', 'to', 'make', 'your', 'acquaintance.'], ['This', 'would', 'be', 'a', 'good', 'place', 'to', 'raise', 'kids.'], ['They', "won't", 'wait', 'long.'], ['There', 'were', 'flowers', 'all', 'around.'], ["She's", 'an', 'intelligent', 'young', 'woman.'], ['Anyone', 'can', 'make', 'mistakes.'], ['Hold', 'on', 'for', 'a', 'few', 'minutes,', 'will', 'you?'], ["I'm", 'very', 'sorry', 'about', 'the', 'mistake.'], ['She', 'abandoned', 'her', 'children.'], ['You', "don't", 'need', 'to', 'tell', 'me', 'what', 'to', 'do.', 'I', 'already', 'know.'], ['You', "can't", 'force', 'us', 'to', 'go.'], ["That's", 'our', 'best', 'hope.'], ['I', 'think', 'you', 'are', 'the', 'one', 'who', 'broke', 'it.'], ['No', 'one', 'has', 'the', 'right', 'to', 'tell', 'you', 'how', 'to', 'raise', 'your', 'child.'], ["It's", 'too', 'quiet.'], ['Where', 'do', 'you', 'guys', 'live?'], ['She', 'sat', 'on', 'the', 'bed', 'as', 'her', 'mother', 'braided', 'her', 'hair.'], ['It', 'would', 'cost', 'twice', 'as', 'much', 'as', 'that.'], ['Let', 'go', 'of', 'the', 'bottle.'], ['No', 'one', 'is', 'at', 'fault.'], ['This', 'is', 'my', 'business.'], ["We've", 'been', 'through', 'a', 'lot', 'together.'], ['Children', "can't", 'drink', 'wine.'], ['The', 'company', 'wants', 'to', 'hire', '20', 'people.'], ["He'll", 'do', 'anything', 'to', 'score', 'some', 'drugs.'], ['I', 'will', 'play', 'football', 'tomorrow.'], ['I', 'made', 'a', 'bad', 'mistake.'], ['Tell', 'me', 'the', 'meaning', 'of', 'life.'], ['He', 'stood', 'gazing', 'at', 'the', 'painting.'], ['I', 'helped.'], ['I', 'had', 'my', 'doubts', 'about', 'you.'], ['I', 'got', 'up', 'very', 'early', 'this', 'morning.'], ['I', "can't", 'believe', "I'm", 'even', 'considering', 'this.'], ['Napoleon', 'was', 'exiled', 'to', 'the', 'island', 'of', 'Elba', 'in', '1814.'], ['Is', 'there', 'a', 'bank', 'near', 'here?'], ['We', 'caught', 'you.'], ['I', 'just', 'like', 'to', 'daydream.'], ['I', 'thought', "you'd", 'gone', 'and', 'left', 'me.'], ['I', "don't", 'get', 'bored', 'alone', 'at', 'home.'], ["I'll", 'tell', 'you', 'what', 'to', 'say.'], ['The', 'cat', 'climbed', 'up', 'the', 'tree.'], ['Wet', 'clothes', 'cling', 'to', 'the', 'body.'], ['We', 'sat', 'face', 'to', 'face', 'with', 'executives.'], ['This', 'is', 'almost', 'as', 'good', 'as', 'fishing.'], ['I', 'lost', 'my', 'temper.'], ['I', 'promised', 'I', "wasn't", 'going', 'to', 'do', 'this.'], ['I', "don't", 'remember', 'doing', 'that.'], ['I', 'bought', 'this', 'suit', 'just', 'for', 'this', 'occasion.'], ['Please', 'turn', 'out', 'the', 'light', 'so', 'that', 'I', 'can', 'sleep.'], ['There', 'are', 'many', 'countries', 'in', 'Europe', 'that', "I'd", 'like', 'to', 'visit.'], ["You're", 'the', 'teacher.'], ['I', 'hate', 'politics.'], ["I'm", 'afraid', 'of', 'nothing.'], ["I'm", 'beautiful.'], ['I', 'know', 'how', 'busy', "you've", 'been.'], ['She', 'takes', 'care', 'of', 'many', 'elderly', 'people.'], ['I', "wouldn't", 'want', 'to', 'miss', 'the', 'party.'], ["I'm", 'going', 'to', 'New', 'York', 'next', 'week.'], ['I', "didn't", 'move', 'a', 'thing.'], ['She', 'traveled', 'around', 'Japan.'], ['All', 'that', 'glitters', 'is', 'not', 'gold.'], ['Our', 'guests', 'are', 'arriving.'], ['I', "can't", 'recall', 'her', 'name', 'at', 'the', 'moment.'], ['She', 'trusted', 'you.'], ['We', 'saw', 'the', 'airplane.'], ['Did', 'you', 'study', 'yesterday?'], ['This', 'is', 'gold.'], ['She', "didn't", 'want', 'him', 'to', 'stay', 'any', 'longer.'], ['My', 'mother', 'would', 'freak', 'out', 'if', 'she', 'knew', 'about', 'it.'], ['Are', 'you', 'all', 'right?'], ['One', 'of', 'the', 'fan', 'blades', 'broke', 'loose', 'and', 'shattered', 'against', 'the', 'wall.'], ['How', 'can', 'this', 'be', 'done?'], ['I', "don't", 'know', 'this', 'neighborhood', 'too', 'well.'], ['I', 'said', 'that', 'I', 'could,', 'not', 'that', 'I', 'would.'], ['I', 'am', 'pleased', 'to', 'meet', 'you.'], ['Why', "don't", 'you', 'go', 'to', 'school', 'with', 'us?'], ['None', 'of', 'us', 'plan', 'to', 'go', 'swimming', 'today.'], ["I'm", 'the', 'only', 'one', 'who', 'understands', 'Tom.'], ["I'd", 'like', 'to', 'study', 'French', 'next', 'year.'], ["There's", 'a', 'lot', 'work', 'to', 'do', 'today.'], ['The', 'price', "isn't", 'important.'], ['Do', 'I', 'annoy', 'you?'], ['My', 'mother', 'gets', 'up', 'earlier', 'than', 'anyone', 'else.'], ['All', 'I', 'want', 'is', 'your', 'love.'], ["They're", 'staying.'], ['He', 'returned', 'home', 'for', 'the', 'first', 'time', 'in', 'ten', 'years.'], ['The', 'street', 'was', 'very', 'empty.'], ['Nothing', 'is', 'going', 'to', 'happen.'], ['Say', 'which', 'you', 'would', 'like.'], ["It's", 'cold', 'today', 'so', 'button', 'your', 'coat.'], ['I', 'know', "you're", 'disappointed.'], ["What's", 'the', 'meaning', 'of', 'this?'], ["Don't", 'leave', 'your', 'work', 'half', 'finished.'], ['I', 'know', 'Tom', 'is', 'troubled.'], ['Father', 'took', 'his', 'place', 'at', 'the', 'head', 'of', 'the', 'table', 'and', 'began', 'to', 'say', 'grace.'], ['Are', 'you', 'going', 'to', 'be', 'OK?'], ['I', 'think', "that's", 'awful.'], ['This', 'story', 'is', 'worth', 'reading', 'again.'], ['Tom', 'wanted', 'me', 'to', 'meet', 'him', 'at', 'the', 'station.'], ['Love', 'hurts.'], ['I', 'had', 'a', 'very', 'good', 'time.'], ['We', 'thought', 'that', 'we', "wouldn't", 'be', 'able', 'to', 'stop', 'Tom.'], ["Don't", 'be', 'afraid', 'of', 'making', 'mistakes.'], ['When', 'was', 'the', 'last', 'time', 'you', 'hunted?'], ['In', 'Kyoto,', 'you', 'can', 'see', 'both', 'old', 'and', 'modern', 'buildings.'], ["I'd", 'rather', 'not', 'eat', 'the', 'same', 'food', 'again', 'today.'], ['Tom', 'claims', 'that', 'he', 'has', 'never', 'killed', 'anyone.'], ['What', 'else', 'was', 'in', 'the', 'basket?'], ['Is', 'there', 'any', 'place', 'around', 'here', 'where', 'I', 'can', 'rent', 'a', 'bicycle?'], ["They're", 'all', 'in', 'there.'], ['Is', 'your', 'car', 'fast?'], ['Do', 'you', 'want', 'to', 'try', 'it?'], ['Tom', 'admired', 'Mary', 'for', 'her', 'bravery.'], ["I've", 'never', 'seen', 'Tom', 'drunk.'], ['That', "isn't", 'the', 'way', 'I', 'heard', 'it.'], ['He', 'intends', 'to', 'buy', 'a', 'new', 'bicycle.'], ['Do', 'you', 'want', 'to', 'see', 'more?'], ['We', "don't", 'even', 'know', 'what', "we're", 'fighting', 'for.'], ['Nobody', 'knows', 'how', 'the', 'fire', 'started.'], ['Do', 'come', 'and', 'visit', 'us.'], ['I', 'sure', 'hope', 'he', 'passes', 'the', 'test.'], ['I', 'have', 'a', 'black', 'and', 'white', 'dog.'], ['I', "don't", 'want', 'to', 'do', 'that.'], ['This', 'coat', 'is', 'nice,', 'but', 'too', 'expensive.'], ["I'm", 'eating.'], ['I', 'woke', 'you', 'up.'], ['Stop', 'me', 'if', 'you', 'can.'], ["It's", 'Tom.'], ['I', "don't", 'understand', 'and', "I'm", 'not', 'used', 'to', 'not', 'understanding.', 'Please', 'explain', 'it', 'once', 'more.'], ['I', 'knew', 'something', "wasn't", 'right.'], ['He', 'majors', 'in', 'modern', 'literature.'], ["I'll", 'take', 'you', 'anywhere', 'you', 'want', 'to', 'go.'], ['I', 'heard', 'you', "don't", 'eat', 'meat.'], ["We're", 'all', 'going', 'home.'], ["I'd", 'like', 'to', 'thank', 'you', 'both.'], ['Tom', "isn't", 'going', 'to', 'let', 'you', 'drive.'], ['You', 'have', 'to', 'see', 'it.'], ['I', 'cheered', 'myself', 'up', 'by', 'listening', 'to', 'music.'], ["I've", 'seen', 'a', 'lot', 'of', 'him', 'recently.'], ['My', 'brother', 'watches', 'television.'], ['I', "don't", 'deny', 'this.'], ['Have', 'you', 'said', 'anything', 'about', 'this', 'to', 'Tom?'], ["You're", 'courteous.'], ['Tom', 'told', 'me', 'he', 'was', 'a', 'doctor.'], ['These', 'trousers', 'are', 'dirty.'], ['Did', 'you', 'go', 'straight', 'home', 'after', 'school', 'yesterday?'], ['I', 'have', 'to', 'go', 'home', 'now.'], ['I', 'have', 'no', 'opponents.'], ['Tom', 'has', 'been', 'beaten', 'up', 'pretty', 'badly.'], ['What', 'on', 'earth', 'do', 'you', 'think', "you're", 'doing?'], ['The', 'president', 'takes', 'office', 'tomorrow.'], ['We', 'went', 'for', 'a', 'walk', 'on', 'the', 'beach.'], ["I'm", 'still', 'in', 'love', 'with', 'Mary.'], ['How', 'about', 'tonight?'], ['Your', 'theory', 'has', 'no', 'scientific', 'basis.'], ['We', 'have', 'to', 'memorize', 'this', 'poem', 'by', 'the', 'next', 'class.'], ['They', 'teased', 'the', 'new', 'student.'], ['We', 'will', 'visit', 'them', 'soon.'], ['I', 'think', "that's", 'a', 'problem.'], ['She', 'showed', 'up', 'at', 'the', 'party', 'looking', 'like', 'a', 'million', 'dollars.'], ['I', 'could', 'barely', 'contain', 'my', 'excitement.'], ['They', 'were', 'not', 'amused.'], ['Tom', 'drank', 'a', 'lot', 'more', 'than', 'I', 'did.'], ['After', 'three', 'hours', 'in', 'the', 'casino,', "he's", '$2,000', 'in', 'the', 'hole.'], ['I', 'think', 'that', 'you', 'and', 'I', 'should', 'probably', 'be', 'able', 'to', 'get', 'along', 'better.'], ['Were', 'you', 'born', 'there?'], ["It's", 'a', 'relief.'], ['I', "won't", 'do', 'that.'], ['Would', 'you', 'like', 'to', 'give', 'it', 'a', 'try?'], ["You're", 'the', 'only', 'person', 'that', 'can', 'persuade', 'him.'], ['I', 'was', 'ill', 'yesterday.'], ['How', 'do', 'we', 'find', 'it?'], ["We're", 'not', 'proud', 'of', 'it.'], ["We've", 'all', 'been', 'laid', 'off.'], ['I', 'had', 'to', 'do', 'it.'], ['I', 'am', 'deeply', 'grateful', 'to', 'you', 'for', 'your', 'kindness.'], ['That', "doesn't", 'surprise', 'me.'], ['Do', 'you', 'really', 'want', 'to', 'do', 'that?'], ['We', 'drove', 'across', 'the', 'city.'], ['Your', "name's", 'further', 'down', 'the', 'list.'], ['He', 'was', 'checking', 'you', 'out.'], ['Please', 'write', 'down', 'your', 'contact', 'address', 'here.'], ['You', 'were', 'perfect.'], ['We', "don't", 'meet', 'very', 'often', 'recently.'], ["You're", 'very', 'busy.'], ['At', 'last,', 'I', 'caught', 'up', 'with', 'my', 'friends.'], ['His', 'father', 'is', 'Japanese.'], ['It', 'seems', 'likely.'], ['I', 'bought', 'a', 'book', 'yesterday.'], ['Is', 'that', 'bothering', 'you?'], ['Do', 'you', 'have', 'any', 'cash?'], ['I', 'like', 'taking', 'walks', 'in', 'the', 'woods.'], ["He's", 'bound', 'to', 'notice', 'your', 'mistake.'], ['I', 'know', 'you', 'think', "I'm", 'stupid.'], ['Your', 'hands', 'need', 'to', 'be', 'washed.'], ['Are', 'you', 'staying', 'for', 'dinner?'], ['I', 'gave', 'my', 'sister', 'a', 'pearl', 'necklace', 'on', 'her', 'birthday.'], ["I'm", 'emotionally', 'drained.'], ['Tell', 'me', 'more', 'about', 'this.'], ['He', 'would', 'not', 'go', 'out.'], ['The', 'house', 'appears', 'to', 'be', 'empty.'], ['This', 'is', 'your', 'only', 'chance.'], ['He', 'got', 'lost', 'while', 'walking', 'in', 'the', 'woods.'], ['Where', 'did', 'you', 'get', 'that?'], ['She', 'received', 'the', 'electricity', 'bill', 'today.'], ['Did', 'anyone', 'visit', 'me', 'during', 'my', 'absence?'], ["You're", 'the', 'last', 'person', 'I', 'expected', 'to', 'see', 'here.'], ['Stop', 'talking', 'loudly.'], ["I'm", 'sick', 'of', 'lying.'], ['Have', 'a', 'nice', 'holiday.'], ['She', 'has', 'something', 'in', 'her', 'hand.'], ['I', "haven't", 'read', 'all', 'of', 'these', 'books.'], ['After', 'running', 'up', 'the', 'hill,', 'I', 'was', 'completely', 'out', 'of', 'breath.'], ['Call', 'us.'], ['Tom', "doesn't", 'have', 'kids.'], ['She', 'had', 'no', 'sooner', 'seen', 'me', 'than', 'she', 'ran', 'away.'], ['At', 'last,', 'we', 'got', 'to', 'the', 'lake.'], ['Your', 'parents', "would've", 'been', 'proud', 'of', 'you.'], ['I', 'just', 'finished.'], ['Yesterday', 'was', 'my', 'seventeenth', 'birthday.'], ['Tom', 'asked', 'Mary', 'who', 'she', 'was', 'looking', 'for.'], ['I', 'wondered', 'if', 'her', 'story', 'was', 'true.'], ['I', 'saw', 'her', 'spike', 'his', 'drink.'], ['My', 'mother', 'went', 'shopping,', "didn't", 'she?'], ["I'd", 'like', 'to', 'believe', "that's", 'true.'], ["Let's", 'go', 'as', 'soon', 'as', 'it', 'stops', 'raining.'], ['I', 'paid', 'for', 'them.'], ['Saying', 'you', "can't", 'do', 'the', 'job', 'because', "you're", 'too', 'busy', 'is', 'just', 'a', 'cop', 'out.'], ['Are', 'we', 'all', 'happy?'], ['I', 'often', 'go', 'fishing', 'with', 'them.'], ['I', 'need', 'to', 'be', 'alone', 'for', 'a', 'while.'], ['They', 'say', 'amniotic', 'fluid', 'has', 'roughly', 'the', 'same', 'composition', 'as', 'sea', 'water.'], ['We', 'were', 'unable', 'to', 'follow', 'his', 'logic.'], ['Hurry!', 'We', "don't", 'have', 'a', 'lot', 'of', 'time.'], ['Tom', 'asked', 'me', 'to', 'pick', 'Mary', 'up', 'at', 'the', 'airport.'], ["We're", 'on', 'the', 'right', 'track.'], ['Hello', 'everyone!'], ['I', 'saw', 'you', 'cooking.'], ['It', 'was', 'very', 'cold', 'last', 'month.'], ['The', 'tree', 'fell', 'down.'], ['How', 'long', 'did', 'you', 'stay', 'in', 'Boston?'], ["I'm", 'kind', 'of', 'sick', 'today.'], ['Many', 'people', 'in', 'my', "grandfather's", 'generation', 'grew', 'up', 'on', 'farms.'], ['I', "don't", 'even', 'know', 'where', 'to', 'look.'], ["We're", 'early.'], ['Let', 'me', 'know', 'what', "you're", 'up', 'to.'], ['This', 'semester', 'I', 'failed', 'two', 'students', 'for', 'plagiarism.'], ['Have', 'you', 'taken', 'a', 'bath', 'yet,', 'Takashi?'], ['The', 'weather', 'remained', 'rainy.'], ['Job', 'security', 'is', 'a', 'priority', 'over', 'wages.'], ["He's", 'a', 'fine', 'young', 'lad.'], ['The', 'prisoners', 'tried', 'to', 'escape.'], ['He', 'is', 'neither', 'for', 'nor', 'against', 'the', 'plan.'], ['He', 'was', 'named', 'after', 'his', 'grandfather.'], ["Where's", 'a', 'mirror?'], ['Everything', 'I', 'said', 'was', 'true.'], ['I', "can't", 'think', 'of', 'any', 'reason', 'not', 'to', 'go.'], ['I', 'was', 'wondering', 'when', 'you', 'were', 'going', 'to', 'tell', 'me', 'you', 'loved', 'me.'], ['One', 'of', 'them', 'is', 'probably', 'lying.'], ['Is', 'there', 'a', 'washing', 'machine', 'in', 'the', 'house?'], ['Tom', 'came', 'here', 'to', 'speak', 'to', 'us.'], ['I', 'love', 'my', 'kids.'], ['Your', 'pen', 'is', 'better', 'than', 'mine.'], ['You', 'were', 'jealous,', "weren't", 'you?'], ['You', "don't", 'look', 'very', 'well.', 'Are', 'you', 'sick?'], ['Hopefully,', 'the', 'weather', 'will', 'be', 'good.'], ['If', 'only', "I'd", "hadn't", 'stayed', 'so', 'long!'], ["She's", 'not', 'invited', 'to', 'parties.'], ["You're", 'not', 'very', 'tidy.'], ['You', "aren't", 'listening', 'to', 'what', "I'm", 'saying.'], ['I', 'am', 'going', 'to', 'study', 'English', 'this', 'afternoon.'], ['I', 'have', 'no', 'money', 'in', 'my', 'pocket.'], ['They', 'arrived', 'at', 'the', 'hotel.'], ['I', 'need', 'some', 'sugar.', 'Do', 'you', 'have', 'any?'], ['He', 'helped', 'me', 'carry', 'the', 'baggage.'], ['How', 'many', 'boys', 'are', 'in', 'this', 'class?'], ['If', 'you', "don't", 'kill', 'them,', "they'll", 'kill', 'you.'], ['I', 'think', 'that', 'it', 'was', 'Tom', 'who', 'did', 'that.'], ["Where's", 'the', 'money', 'I', 'gave', 'you?'], ['I', 'want', 'to', 'go', 'abroad', 'next', 'year.'], ['Is', 'this', 'art?'], ['You', 'should', 'follow', "Tom's", 'example.'], ['I', 'almost', 'died.'], ['How', 'did', 'you', 'become', 'involved', 'in', 'this', 'project?'], ['I', 'think', "it's", 'time', 'for', 'me', 'to', 'ask', 'for', 'directions.'], ['Young', 'men', 'such', 'as', 'you', 'are', 'needed', 'for', 'this', 'work.'], ['I', 'have', 'to', 'make', 'a', 'decision.'], ['The', 'plane', 'gets', 'in', 'at', 'eight', "o'clock."], ['She', 'announced', 'her', 'engagement', 'to', 'him.'], ['Where', 'do', 'you', 'work', 'now?'], ["You're", 'not', 'very', 'funny.'], ['I', 'love', 'your', 'house.'], ["It's", 'been', 'three', 'years', 'since', 'I', 'began', 'studying', 'French.'], ['She', 'gave', 'me', 'a', 'fake', 'phone', 'number.'], ["I'm", 'not', 'sure', 'anything', 'happened.'], ['I', 'was', 'the', 'only', 'one', 'at', 'the', 'meeting', 'who', "didn't", 'think', 'that', 'was', 'a', 'good', 'idea.'], ['Pork', "doesn't", 'agree', 'with', 'me.'], ['The', 'women', 'are', 'working.'], ["That's", 'all', 'I', 'have', 'to', 'say', 'to', 'you.'], ["There's", 'something', 'missing.'], ['We', 'saw', 'you.'], ['Father', 'laid', 'his', 'hand', 'on', 'my', 'shoulder.'], ['I', 'was', 'the', 'happiest', 'man', 'on', 'earth.'], ['Something', 'had', 'to', 'be', 'done.'], ['She', 'mistook', 'my', 'brother', 'for', 'me.'], ['I', "don't", 'know', 'why', 'Tom', 'is', 'whispering.'], ['You', "can't", 'believe', 'everything', 'you', 'hear.'], ['I', 'have', 'to', 'get', 'home', 'before', 'it', 'gets', 'dark.'], ["Don't", 'you', 'have', 'work', 'today?'], ['You', 'did', 'something', 'incredibly', 'stupid.'], ['Which', 'do', 'you', 'like', 'better,', 'sushi', 'or', 'tempura?'], ['Are', 'dogs', 'more', 'intelligent', 'than', 'cats?'], ['I', 'think', 'Tom', "didn't", 'tell', 'us', 'everything.'], ['I', "can't", 'go', 'in', 'there.'], ["You're", 'going', 'to', 'have', 'to', 'deal', 'with', 'that.'], ["It's", 'too', 'thin.'], ["Don't", 'trust', 'anyone.'], ["I'll", 'stay', 'home', 'tomorrow.'], ['What', 'have', 'we', 'done', 'to', 'be', 'punished', 'like', 'this?'], ['The', 'flowers', 'are', 'beginning', 'to', 'grow', 'and', 'everything', 'is', 'becoming', 'green.'], ['I', "don't", 'think', "I'm", 'the', 'only', 'one', 'who', 'noticed.'], ['Tom', 'will', 'be', 'angry', 'if', 'Mary', 'does', 'that.'], ['What', 'was', 'it', 'that', 'brought', 'you', 'to', 'me?'], ['You', "don't", 'kick', 'a', 'man', 'when', "he's", 'down.'], ["They're", 'going', 'to', 'the', 'war.'], ['Do', 'you', 'want', 'to', 'go', 'to', 'a', 'soccer', 'game?'], ['Honesty', 'pays', 'in', 'the', 'long', 'run.'], ['Have', 'you', 'finished', 'reading', 'the', 'novel?'], ['English', 'is', 'spoken', 'in', 'many', 'parts', 'of', 'the', 'world.'], ['Let', 'me', 'show', 'you', 'how', 'to', 'do', 'that.'], ['Fashions', 'change', 'quickly.'], ['I', 'think', "we're", 'neighbors.'], ['Stop', 'crying', 'like', 'a', 'little', 'girl.'], ["It's", 'not', 'hard.'], ['Sometimes', 'I', 'see', 'him', 'at', 'the', 'club.'], ['What', 'are', 'you', 'going', 'to', 'do', 'next?'], ['Cucumbers,', 'spinach,', 'broccoli', 'and', 'onions', 'are', 'considered', 'non-starchy', 'vegetables.'], ['We', 'are', 'to', 'eat', 'at', 'six.'], ['Where', 'do', 'you', 'think', 'we', 'came', 'from?'], ['I', 'never', 'told', 'you', 'to', 'quit.'], ['He', 'knows', 'how', 'to', 'drive', 'a', 'car.'], ['Does', 'truth', 'matter?'], ['He', 'was', 'a', 'weak', 'and', 'delicate', 'child.'], ['I', "didn't", 'realize', 'you', 'could', 'speak', 'French.'], ['He', 'smiled', 'and', 'left.'], ['I', 'studied', 'for', 'one', 'hour.'], ['I', 'think', "I'm", 'prepared', 'for', 'that.'], ["Don't", 'you', 'believe', 'me?'], ['You', 'alone', 'can', 'do', 'it,', 'but', 'you', "can't", 'do', 'it', 'alone.'], ['Could', 'you', 'put', 'this', 'bag', 'somewhere', 'else?'], ["You're", 'taller', 'than', 'me.'], ['It', 'is', 'too', 'expensive.'], ['Tom', 'wants', 'you', 'to', 'buy', 'him', 'a', 'ticket,', 'too.'], ['Tom', 'has', 'just', 'retired.'], ['Tom', 'lives', 'in', 'the', 'same', 'apartment', 'building', 'as', 'Mary', 'does.'], ['Is', 'it', 'love?'], ['Why', "didn't", 'you', 'run?'], ['Look', 'into', 'the', 'matter', 'more', 'carefully.'], ['Tom', 'bought', 'a', 'leather', 'couch.'], ['You', 'should', 'protect', 'your', 'eyes', 'from', 'direct', 'sunlight.'], ["You're", 'not', 'alone', 'anymore.'], ['I', 'really', 'enjoyed', 'last', 'night.'], ['How', 'do', 'you', 'like', 'my', 'new', 'suit?'], ['The', 'boy', 'feared', 'the', 'dark.'], ['You', 'need', 'to', 'look', 'at', 'the', 'big', 'picture', 'here.'], ['My', 'parents', "aren't", 'going', 'to', 'be', 'there.'], ["I'm", 'not', 'sure', 'that', "you're", 'ready.'], ['I', 'was', 'devastated.'], ['Tom', 'is', 'biting', 'his', 'nails.'], ['Tom', 'has', 'just', 'finished', 'writing', 'a', 'letter', 'to', 'Mary.'], ['He', 'could', 'always', 'tell', 'which', 'direction', 'the', 'wind', 'was', 'blowing.'], ['She', 'is', 'always', 'kind', 'to', 'everyone.'], ["It's", 'my', 'custom', 'to', 'go', 'for', 'a', 'walk', 'before', 'breakfast.'], ["I'm", 'sure', "they'll", 'be', 'very', 'happy', 'together.'], ['He', "doesn't", 'know', 'any', 'better.'], ['Walking', 'from', 'the', 'station', 'to', 'the', 'house', 'takes', 'only', 'five', 'minutes.'], ['That', 'is', 'very', 'expensive!'], ['Do', 'you', 'want', 'to', 'bet', 'on', 'that?'], ['You', 'are', 'now', 'on', 'the', 'way', 'to', 'recovery.'], ['I', "haven't", 'gotten', 'rid', 'of', 'my', 'bad', 'cold', 'yet.'], ['Who', 'told', 'you', 'to', 'bring', 'me', 'here?'], ['You', 'can', 'stay', 'here', 'as', 'long', 'as', 'you', 'keep', 'quiet.'], ['What', 'would', 'you', 'do', 'without', 'me?'], ['I', "don't", 'know', 'what', "you're", 'waiting', 'for.'], ['Racial', 'profiling', 'is', 'a', 'controversial', 'police', 'tactic.'], ['I', 'feel', 'giddy.'], ['Tom', 'kept', 'his', 'opinion', 'to', 'himself.'], ['The', 'weather', 'was', 'ideal.'], ['I', 'thought', 'this', 'building', 'was', 'abandoned.'], ["Don't", 'pull', 'my', 'sleeve.'], ['They', 'wanted', 'to', 'steal', 'the', 'car.'], ['We', "don't", 'need', 'these', 'things.'], ['All', 'the', 'doors', 'of', 'the', 'house', 'were', 'closed.'], ['They', 'had', 'no', 'money', 'left.'], ['They', 'left', 'it', 'under', 'the', 'table.'], ["Don't", 'feel', 'embarrassed.', 'These', 'things', 'happen.'], ['They', 'have', 'their', 'own', 'troubles.'], ['You', "don't", 'even', 'know', 'why', "I'm", 'here.'], ['Can', 'you', 'catch', 'the', 'chicken?'], ['Madeira', 'is', 'the', 'name', 'of', 'a', 'wine.'], ["I'll", 'do', 'it', 'according', 'to', 'your', 'instructions.'], ['Please', 'write', 'your', 'name', 'with', 'a', 'pencil.'], ['I', 'love', 'poetry.'], ["They're", 'hard', 'to', 'find.'], ['Did', 'you', 'order', 'the', 'book?'], ['How', 'did', 'you', 'get', 'into', 'Harvard?'], ['I', 'bet', "you're", 'right.'], ['You', 'could', 'do', 'a', 'lot', 'if', 'you', 'put', 'your', 'mind', 'to', 'it.'], ["We're", 'headed', 'in', 'the', 'right', 'direction.'], ['Pour', 'yourselves', 'drinks.'], ['She', 'watched', 'him', 'drawing', 'a', 'picture.'], ['Turn', 'off', 'the', 'light', 'and', 'go', 'to', 'sleep.'], ["We'll", 'never', 'get', 'through', 'it.'], ['Tom', 'said', 'he', 'just', 'had', 'to', 'eat', 'something', 'right', 'away.'], ["We're", 'lazy.'], ['How', 'will', 'I', 'recognize', 'you?'], ["Don't", 'throw', 'stones.'], ["We'll", 'miss', 'Tom.'], ['Do', 'you', 'like', 'caramel-flavored', 'ice', 'cream?'], ['Sorry', 'about', 'earlier.'], ["Let's", 'take', 'care', 'of', 'business.'], ['Check', 'this.'], ['Can', 'I', 'pay', 'by', 'credit', 'card?'], ['Today', 'is', 'a', 'national', 'holiday.'], ['The', 'first', 'step', 'is', 'the', 'hardest.'], ['Maybe', "you'll", 'succeed.'], ['I', 'was', 'about', 'to', 'leave', 'my', 'house', 'when', 'she', 'called.'], ['Tom', 'goes', 'to', 'school', 'five', 'days', 'a', 'week.'], ['Just', 'do', 'your', 'job.'], ['I', 'still', 'need', 'to', 'buy', 'some', 'bread.'], ['As', 'F.', 'Scott', 'Fitzgerald', 'famously', 'noted,', 'the', 'rich', 'are', 'different', 'from', 'you', 'and', 'me.'], ['My', 'friend', 'helped', 'me.'], ['I', 'hope', "you're", 'happy', 'together.'], ['I', 'used', 'to', 'do', 'that,', 'but', 'I', "don't", 'do', 'it', 'anymore.'], ['I', "don't", 'understand', "what's", 'happening', 'to', 'me.'], ['My', 'brother', 'is', 'not', 'yet', 'in', 'school.'], ['Both', 'of', 'them', 'are', 'hungry.'], ['I', 'mentioned', 'your', 'name', 'to', 'him.'], ['She', 'made', 'him', 'cry.'], ["We're", 'eating', 'breakfast', 'indoors.'], ['I', "can't", 'agree', 'with', 'you', 'on', 'this', 'matter.'], ['I', 'hated', 'history', 'class.'], ['I', 'appreciate', 'your', 'situation.'], ["I'm", 'crazy', 'about', 'you.'], ['We', 'may', 'as', 'well', 'start', 'at', 'once.'], ['I', 'had', 'fun.'], ['My', 'brother', 'would', 'often', 'stay', 'up', 'all', 'night', 'reading', 'novels.'], ['Have', 'you', 'read', "today's", 'paper?'], ['She', 'is', 'used', 'to', 'staying', 'up', 'all', 'night.'], ['I', 'think', "it's", 'time', 'for', 'you', 'to', 'grow', 'up.'], ["You're", 'dirty.'], ['Tom', "didn't", 'talk', 'about', 'it.'], ["I'd", 'like', 'to', 'talk', 'to', 'the', 'doctor', 'alone', 'for', 'a', 'moment.'], ['I', 'went', 'to', 'the', 'wrong', 'address.'], ["I've", 'tried', 'them', 'all.'], ['I', "don't", 'understand', 'this', 'at', 'all.'], ['He', 'says', 'his', 'son', 'can', 'count', 'up', 'to', '100', 'now.'], ['"Will', 'they', 'go', 'on', 'strike', 'again?"', '"I\'m', 'afraid', 'so."'], ['Tom', "couldn't", 'find', 'work.'], ['When', 'I', 'was', 'a', 'child,', 'my', 'mother', 'would', 'often', 'read', 'fairy', 'tales', 'to', 'me.'], ["I'd", 'rather', 'go', 'for', 'a', 'walk', 'than', 'see', 'the', 'movie.'], ['I', 'made', 'a', 'deal.'], ['I', 'bought', 'her', 'a', 'new', 'car.'], ['You', 'probably', "won't", 'like', 'it.'], ['He', 'met', 'his', 'wife', 'online.'], ['I', 'think', "you'll", 'like', 'the', 'dessert.'], ['It', 'was', 'no', 'trouble.'], ['We', 'can', 'hide', 'in', 'here.'], ['They', 'look', 'like', "they're", 'having', 'fun.'], ['I', 'think', 'what', "you're", 'doing', 'is', 'dangerous.'], ['No', "one's", 'safe', 'here.'], ["Nothing's", 'happening', 'right', 'now.'], ['You', 'say', 'you', "don't", 'want', 'to', 'get', 'your', 'hands', 'dirty.'], ['I', "don't", 'want', 'to', 'do', 'anything', 'to', 'jeopardize', 'my', 'friendship', 'with', 'you.'], ["I'm", 'sick', 'of', 'this', 'hot', 'weather.'], ['Put', 'that', 'book', 'aside', 'for', 'me.'], ['Nowadays,', 'almost', 'every', 'home', 'has', 'one', 'or', 'two', 'televisions.'], ['Did', 'you', 'enjoy', 'the', 'tour?'], ['Please', 'let', 'me', 'pick', 'up', 'your', 'sister', 'at', 'the', 'station.'], ["I've", 'been', 'feeling', 'this', 'way', 'all', 'day.'], ['You', "didn't", 'buy', 'that,', 'did', 'you?'], ['The', 'sun', 'is', 'the', 'brightest', 'star.'], ["I'm", 'turning', 'thirty', 'in', 'October.'], ["I've", 'had', 'a', 'very', 'busy', 'morning.'], ['I', 'worry', 'about', 'whether', "I'll", 'be', 'a', 'good', 'father.'], ['Pay', 'what', 'you', 'want.'], ['I', 'thought', "you'd", 'say', 'that.'], ["I'm", 'glad', 'you', 'came', 'today.'], ['They', 'fled', 'in', 'all', 'directions.'], ['He', 'speaks', 'two', 'languages', 'besides', 'English.'], ["Don't", 'sit', 'too', 'close', 'to', 'the', 'TV.'], ['He', 'chose', 'his', 'words', 'carefully.'], ['I', 'feel', 'strange.'], ['You', 'should', 'not', 'have', 'done', 'it', 'without', 'my', 'permission.'], ['We', 'should', 'observe', 'the', 'speed', 'limit.'], ['I', 'ate', 'your', 'piece', 'of', 'cake.'], ['Where', 'is', 'it', 'located?'], ['Just', 'one', 'moment,', 'please.'], ['Were', 'you', 'at', 'home', 'yesterday?'], ['It', 'felt', 'pretty', 'good.'], ["I'm", 'glad', 'someone', 'agrees', 'with', 'me', 'for', 'once.'], ['I', "hadn't", 'expected', 'anyone', 'to', 'be', 'home.'], ['Stop', 'squabbling.'], ['Tell', 'me', 'if', "you're", 'going', 'to', 'give', 'it', 'to', 'him', 'or', 'not.'], ['Did', 'you', 'write', 'this', 'fairy', 'tale', 'by', 'yourself?'], ['The', 'train', 'has', 'arrived.'], ['My', 'grandmother', 'used', 'to', 'use', 'her', 'sewing', 'machine', 'a', 'lot', 'when', 'she', 'was', 'younger.'], ["I'll", 'bring', 'wine.'], ['Please', 'sum', 'up', 'your', 'idea.'], ['Tom', 'carried', 'his', 'duffel', 'bag', 'on', 'his', 'shoulder.'], ['I', 'admire', 'your', 'bravery.'], ['Doing', 'that', 'would', 'be', 'a', 'very', 'bad', 'idea.'], ["Don't", 'you', 'always', 'do', "what's", 'expected?'], ["I'll", 'do', 'all', 'the', 'talking.'], ['They', 'kicked', 'Tom', 'out', 'of', 'the', 'bar.'], ['I', 'remember', 'writing', 'to', 'her.'], ['I', 'want', 'to', 'thank', 'everyone', 'who', 'helped', 'me', 'do', 'this.'], ["I'm", 'not', 'gambling', 'anymore.'], ['He', 'is', 'popular', 'with', 'everybody.'], ['I', 'owe', 'you', 'something.'], ['Obviously', 'he', 'is', 'wrong.'], ['Cool', 'down.'], ['The', 'kettle', 'is', 'boiling.'], ['I', 'need', 'to', 'talk', 'to', 'you', 'about', 'this.'], ["You're", 'so', 'naive.'], ['They', "didn't", 'see', 'anything.'], ['Life', 'is', 'full', 'of', 'ups', 'and', 'downs.'], ['Is', 'all', 'this', 'money', 'yours?'], ['I', 'want', 'one,', 'too.'], ["I'm", 'too', 'old', 'for', 'Tom.'], ['Could', 'you', 'put', 'these', 'in', 'a', 'box?'], ['What', 'is', 'it?'], ["I'm", 'not', 'going', 'to', 'tell', 'you', 'my', 'name.'], ['No', "one's", 'judging', 'you.'], ['I', 'know', "it's", 'not', 'true,', 'but', 'it', 'definitely', 'seems', 'like', 'the', 'sun', 'revolves', 'around', 'the', 'Earth.'], ["I'm", 'not', 'going', 'to', 'betray', 'you.'], ['We', "weren't", 'even', 'in', 'Boston', 'at', 'that', 'time.'], ["I've", 'got', 'my', 'reasons.'], ['I', 'often', 'played', 'baseball', 'when', 'I', 'was', 'young.'], ['I', 'want', 'to', 'study', 'English.'], ['To', 'tell', 'you', 'the', 'truth,', 'I', "don't", 'like', 'Tom.'], ['Is', 'this', '223-1374?'], ["They're", 'part', 'of', 'us.'], ['Help', 'yourself', 'to', 'a', 'piece', 'of', 'cake.'], ['We', 'can', 'get', 'a', 'beautiful', 'view', 'of', 'the', 'sea', 'from', 'the', 'hill.'], ['After', 'a', 'hectic', 'few', 'days', 'at', 'work,', 'Tom', 'is', 'looking', 'forward', 'to', 'a', 'change', 'of', 'pace.'], ['I', "didn't", 'want', 'to', 'intrude.'], ['I', "don't", 'consider', 'Tom', 'a', 'friend.'], ['The', 'devil', 'is', 'in', 'the', 'details.'], ['I', 'thought', "I'd", 'died', 'and', 'gone', 'to', 'heaven.'], ['I', 'think', "it's", 'going', 'to', 'get', 'steadily', 'hotter', 'from', 'now.'], ['I', 'took', 'this', 'picture.'], ['The', 'conference', 'went', 'on', 'according', 'to', 'plan.'], ['What', 'makes', 'you', 'think', 'Tom', 'would', 'ever', 'consider', 'going', 'on', 'a', 'date', 'with', 'Mary?'], ['I', 'had', 'to', 'see', 'you.'], ['I', 'may', 'need', 'to', 'move', 'on.'], ["I've", 'heard', 'it', 'before.'], ['Put', 'it', 'there,', 'not', 'here.'], ['Show', 'me', 'another', 'example.'], ['Why', "don't", 'you', 'ever', 'cook?'], ['I', 'ordered', 'them', 'to', 'leave', 'the', 'room.'], ["I'm", 'almost', 'finished', 'reading', 'this', 'book.'], ['Why', 'did', 'you', 'join', 'the', 'Army?'], ['He', 'is', 'a', 'tennis', 'champion.'], ["What's", 'the', 'best', 'way', 'to', 'learn', 'French?'], ['Circumstances', 'did', 'not', 'permit', 'me', 'to', 'help', 'you.'], ['You', 'must', 'not', 'behave', 'like', 'this.'], ['Is', 'this', 'your', 'daughter?'], ['She', 'prepared', 'a', 'wonderful', 'meal', 'for', 'us.'], ['I', 'know', 'that', 'Tom', 'is', 'still', 'busy.'], ['I', 'want', 'to', 'talk', 'to', 'you', 'about', 'this', 'report.'], ['I', "don't", 'like', 'Tom', 'so', 'much.'], ['He', 'is', 'not', 'much', 'better,', 'and', 'there', 'is', 'a', 'little', 'hope', 'of', 'recovery.'], ['Has', 'something', 'happened', 'to', 'Tom?'], ['She', 'left', 'me', 'simply', 'because', 'I', 'had', 'a', 'small', 'income.'], ['She', 'may', 'have', 'missed', 'her', 'train.'], ['I', 'wish', 'I', 'could', 'be', 'more', 'spontaneous.'], ['It', 'was', 'a', 'miscalculation.'], ['They', 'showed', 'me', 'a', 'lot', 'of', 'nice', 'pictures.'], ['I', 'feel', 'bad', 'that', 'I', "haven't", 'paid', 'you', 'yet.'], ['My', 'grandfather', 'is', 'in', 'his', 'nineties.'], ["You're", 'not', 'dead.'], ['I', "can't", 'hide', 'out', 'forever.'], ['That', 'is', 'her', 'car.'], ["You're", 'scaring', 'the', 'kids.'], ['She', 'plays', 'the', 'guitar.'], ['I', 'forgot', 'about', 'that.'], ['Tom', 'said', 'that', 'he', "wouldn't", 'buy', 'any', 'of', "Mary's", 'paintings.'], ['I', "didn't", 'catch', 'what', 'he', 'said.'], ['It', 'was', 'cold', 'yesterday.'], ["We're", 'not', 'done.'], ['He', "hasn't", 'arrived', 'yet.'], ['Tom', "doesn't", 'know', 'what', 'Mary', 'was', 'going', 'to', 'do.'], ["That's", 'what', 'I', 'figured.'], ['Let', 'Tom', 'answer.'], ['The', 'shop', 'on', 'the', 'corner', 'sells', 'fruit', 'at', 'a', 'very', 'good', 'price.'], ['She', 'is', 'no', 'less', 'charming', 'than', 'her', 'older', 'sister.'], ['She', 'boards', 'students.'], ["I'd", 'be', 'happy', 'if', "you'd", 'come.'], ['I', 'must', 'concentrate.'], ['Why', 'are', 'you', 'making', 'that', 'face?'], ['All', 'the', 'students', 'are', 'present.'], ['How', 'did', 'we', 'let', 'things', 'get', 'to', 'this', 'point?'], ['All', 'our', 'teachers', 'were', 'young', 'and', 'loved', 'teaching.'], ['You', 'have', 'made', 'a', 'promise.'], ['You', 'need', 'to', 'study', 'harder.'], ['Spring', 'is', 'just', 'around', 'the', 'corner.'], ['Go', 'away', 'before', 'they', 'see', 'you', 'here.'], ['Everyone', 'noticed.'], ['The', 'airplane', 'took', 'off', 'on', 'time.'], ['Nobody', 'answered.'], ['You', 'need', 'to', 'be', 'prepared.'], ['You', 'were', 'in', 'danger.'], ['That', 'is', 'your', 'book.'], ['I', "can't", 'remember', 'where', 'this', 'little', 'doodad', 'goes.'], ["Didn't", 'anyone', 'question', 'you?'], ['I', 'want', 'you', 'to', 'leave', 'me', 'alone.'], ['That', 'sounds', 'familiar.'], ['I', 'like', 'your', 'car.'], ['It', 'never', 'occurred', 'to', 'me', 'that', 'I', 'might', 'be', 'fired.'], ['She', 'was', 'laughed', 'at', 'by', 'her', 'friends.'], ["Where's", 'the', 'bag?'], ["How's", 'your', 'boy', 'doing?'], ["You're", 'not', 'prepared', 'for', 'what', 'awaits', 'you.'], ['I', 'reserved', 'my', 'hotel', 'room', 'three', 'weeks', 'in', 'advance.'], ['Tom', 'was', 'a', 'little', 'disoriented.'], ["That's", "what's", 'important.'], ['I', 'handled', 'it.'], ['I', 'may', 'be', 'too', 'old.'], ['Tom', "isn't", 'very', 'athletic.'], ['I', "don't", 'think', 'we', 'should', 'go', 'outside', 'today.'], ['I', 'would', 'be', 'willing', 'to', 'help', 'you.'], ['I', 'did', 'what', 'I', 'was', 'told.'], ['Did', 'you', 'have', 'fun?'], ['Tom', 'did', 'twenty', 'pushups.'], ['England', 'is', 'proud', 'of', 'her', 'poets.'], ['Tom', 'drove', 'along', 'the', 'river.'], ["Don't", 'give', 'up.'], ['I', "don't", 'want', 'you', 'anywhere', 'near', 'the', 'medicine', 'cabinet.'], ['They', 'all', 'entered.'], ['Tom', "doesn't", 'remember', 'where', 'he', 'put', 'his', 'key.'], ['He', 'sat', 'there', 'surrounded', 'by', 'his', 'children.'], ['I', "don't", 'want', 'to', 'be', 'your', 'friend.'], ["It's", 'time.'], ['We', 'are', 'sorry', 'we', "can't", 'help', 'you.'], ['We', 'need', 'a', 'little', 'rest.'], ['I', 'have', 'to', 'take', 'some', 'money', 'out', 'of', 'the', 'bank.'], ['I', 'always', 'walk', 'to', 'school.'], ['I', 'put', 'on', 'some', 'clean', 'clothes.'], ['I', 'want', 'a', 'piece', 'of', 'cake.'], ['The', 'sound', 'of', 'a', 'gunshot', 'echoed', 'across', 'the', 'canyon.'], ['The', 'ceremony', 'will', 'take', 'place', 'tomorrow.'], ['I', 'was', 'offered', 'the', 'choice', 'of', 'tea', 'or', 'coffee.'], ['She', 'was', 'fluent', 'in', 'French.'], ['I', 'wonder', 'if', 'it', 'will', 'rain', 'tomorrow.'], ['Did', 'it', 'ever', 'occur', 'to', 'you', 'that', 'I', 'might', 'be', 'busy', 'this', 'afternoon?'], ['This', 'car', 'was', 'cheap', 'enough', 'for', 'him', 'to', 'buy.'], ['Why', 'are', 'we', 'here', 'today?'], ['Have', 'you', 'finished', 'cleaning', 'your', 'room', 'yet?'], ['How', 'can', 'I', 'get', 'my', 'toddler', 'to', 'eat', 'vegetables?'], ['I', 'had', 'sore', 'legs', 'the', 'next', 'day.'], ['Tom', 'gave', 'Mary', 'the', 'picture.'], ['Is', 'it', 'that', 'obvious?'], ['I', 'can', 'hardly', 'wait', 'to', 'get', 'home', 'and', 'sleep', 'in', 'my', 'own', 'bed.'], ['He', 'won', 'a', 'bronze', 'medal.'], ['I', "don't", 'have', 'a', 'passport.'], ['He', "didn't", 'go', 'and', 'I', "didn't", 'either.'], ['Is', 'this', 'a', 'challenge?'], ['The', 'village', 'needs', 'your', 'help.'], ['Human', 'beings', 'differ', 'from', 'animals', 'in', 'that', 'they', 'can', 'think', 'and', 'speak.'], ["We're", 'on', 'our', 'own.'], ['You', 'ought', 'not', 'to', 'miss', 'it.'], ["You're", 'a', 'pig.'], ['I', 'can', 'neither', 'confirm', 'nor', 'deny', 'this.'], ["I'm", 'a', 'fan', 'of', 'German', 'opera.'], ['I', 'knew', 'something', 'Tom', "didn't", 'know.'], ['Can', 'I', 'say', 'this', 'one', 'last', 'time?'], ['Correct', 'the', 'underlined', 'words.'], ['Does', 'Tom', 'know', 'why?'], ['He', 'hurt', 'his', 'left', 'foot', 'when', 'he', 'fell.'], ['Tom', 'picked', 'some', 'berries', 'and', 'ate', 'them.'], ['I', 'forgot', 'your', 'phone', 'number.'], ['Many', 'museums', 'are', 'closed', 'on', 'Mondays.'], ['I', 'keep', 'a', 'rabbit', 'as', 'a', 'pet.'], ['Why', 'are', 'you', 'sitting', 'there?'], ['This', 'book', "hasn't", 'yet', 'been', 'translated', 'into', 'French.'], ['And', 'with', 'that', 'we', 'finish', 'the', 'activities', 'for', 'today.'], ['I', 'am', 'hanging', 'up', 'my', 'shirts.'], ['He', 'can', 'only', 'pay', 'twenty', 'dollars', 'at', 'most.'], ['Please', 'insert', 'a', 'coin.'], ['I', "didn't", 'think', "you'd", 'come', 'back.'], ["I'm", 'not', 'as', 'smart', 'as', 'people', 'think', 'I', 'am.'], ["I'm", 'not', 'sure', 'I', 'want', 'the', 'job.'], ['I', 'had', 'a', 'job', 'when', 'I', 'was', 'your', 'age.'], ["Don't", 'make', 'the', 'same', 'mistake', 'I', 'did.'], ['Many', 'people', 'believe', 'that.'], ["Let's", 'start', 'now.'], ['They', 'have', 'kids.'], ['I', "didn't", 'know', 'what', 'I', 'should', 'say.'], ['He', 'has', 'been', 'playing', 'chess', 'since', 'he', 'was', 'in', 'high', 'school.'], ['How', 'long', 'will', 'this', 'rain', 'go', 'on?'], ['She', 'donated', 'countless', 'pieces', 'to', 'the', 'museum.'], ["It's", 'an', 'ongoing', 'process.'], ['We', 'picked', 'the', 'number', 'at', 'random.'], ['She', 'agreed', 'with', 'him', 'that', 'I', 'should', 'go', 'to', 'the', 'meeting.'], ['This', 'is', 'expensive.'], ['Oranges', 'have', 'a', 'lot', 'of', 'vitamin', 'C.'], ['They', 'lost', 'their', 'dog.'], ['He', 'is', 'not', 'as', 'smart', 'as', 'his', 'older', 'brother.'], ['Do', 'you', 'talk', 'to', 'your', 'cats?'], ['Tom', 'says', 'he', 'feels', 'much', 'better', 'today', 'than', 'yesterday.'], ['He', 'likes', 'tea.'], ["It's", 'a', 'fact.'], ['Well,', 'what', 'does', 'that', 'tell', 'you?'], ['The', 'dog', 'followed', 'me', 'to', 'my', 'home.'], ["We're", 'deluding', 'ourselves.'], ['Most', 'people', 'think', 'so.'], ['When', 'I', 'woke', 'up', 'this', 'morning,', 'I', 'felt', 'sick.'], ['He', 'was', 'there', 'on', 'business.'], ['She', 'knows', 'the', 'truth.'], ['I', "don't", 'know', 'when', "I'll", 'have', 'time', 'to', 'finish', 'reading', 'the', 'rest', 'of', 'this', 'book.'], ['The', 'picture', 'of', 'the', 'accident', 'makes', 'me', 'sick.'], ['I', 'have', 'good', 'hearing.'], ["We've", 'made', 'a', 'deal.'], ["He's", 'had', 'many', 'unhappy', 'experiences.'], ["I'm", 'punctual.'], ['I', 'called', 'for', 'help.'], ['Please', 'let', 'in', 'some', 'fresh', 'air.'], ['Can', 'you', 'please', 'stop', 'that?'], ['I', "didn't", 'give', 'them', 'anything.'], ["I'd", 'love', 'to', 'have', 'dinner', 'with', 'you.'], ['How', 'long', 'did', 'you', 'stay', 'in', 'Boston?'], ["Don't", 'believe', 'what', 'she', 'says.'], ['Do', 'you', 'want', 'to', 'go?'], ["I'd", 'like', 'to', 'be', 'a', 'dentist', 'in', 'the', 'future.'], ["Tom's", 'bag', 'was', 'very', 'light.'], ['Most', 'Japanese', 'houses', 'are', 'built', 'of', 'wood.'], ["Don't", 'try', 'this', 'at', 'home.'], ["I'm", 'sorry', 'I', 'hurt', 'you.'], ['She', 'managed', 'to', 'drive', 'a', 'car.'], ['A', 'hypochondriac', 'imagines', 'maladies', 'where', 'none', 'exist.'], ['The', 'atomic', 'number', 'for', 'iron', 'is', '26.'], ['It', 'almost', 'worked.'], ['What', 'time', 'did', 'you', 'arrive', 'there?'], ["It's", 'a', 'question', 'of', 'principle.'], ['I', 'told', 'him', 'the', 'big', 'news.'], ["I'd", 'like', 'to', 'learn', 'to', 'play', 'the', 'harp.'], ['Tom', 'is', 'an', 'aspiring', 'writer.'], ["You're", 'fluent', 'in', 'French,', 'right?'], ["It's", 'dangerous', 'to', 'text', 'while', 'crossing', 'the', 'road.'], ['I', 'just', 'wanted', 'to', 'talk', 'to', 'you.'], ["I'll", 'help', 'you', 'within', 'the', 'limits', 'of', 'my', 'ability.'], ['Can', 'someone', 'help', 'me,', 'please?'], ['That', 'hardly', 'matters', 'anymore.'], ['Three', 'deputies', 'were', 'shot.'], ['He', 'always', 'plans', 'a', 'thing', 'out', 'carefully', 'before', 'he', 'does', 'it.'], ['These', 'pants', 'fit', 'me', 'well.'], ["It's", 'not', 'safe', 'to', 'swim', 'in', 'that', 'river.'], ['We', 'saw', 'it.'], ['Why', "aren't", 'you', 'at', 'school?'], ['He', 'is', 'a', 'very', 'smart', 'boy.'], ['He', 'was', 'looking', 'through', 'a', 'microscope.'], ['I', 'continued', 'singing.'], ['This', 'is', 'too', 'spicy', 'for', 'me.'], ["I'm", 'playing', 'with', 'my', 'friends.'], ['We', 'depend', 'on', 'you.'], ['Did', 'you', 'behave', 'today?'], ['Tom', 'and', 'Mary', 'spent', 'all', 'morning', 'cleaning', 'the', 'house.'], ['I', 'want', 'this', 'luggage', 'taken', 'to', 'my', 'room', 'at', 'once.'], ["Where's", 'convenient', 'for', 'you?'], ['I', 'promise', "I'll", 'call.'], ['Tie', 'your', 'shoes.'], ['I', 'feel', 'sorry', 'for', 'her.'], ['This', 'sofa', 'can', 'seat', 'three', 'people', 'easily.'], ['We', 'need', 'an', 'answer.'], ['When', 'is', 'good', 'for', 'you?'], ['At', 'last,', 'I', 'completed', 'my', 'work.'], ['Tom', 'disagrees', 'with', 'Mary', 'on', 'that', 'matter.'], ['They', 'were', 'so', 'different.'], ['I', 'am', 'always', 'ready', 'to', 'help', 'you.'], ['What', 'did', 'you', 'eat', 'for', 'breakfast?'], ['Why', 'are', 'you', 'sad?'], ['Is', 'today', 'your', 'birthday?'], ["Let's", 'try', 'to', 'win', 'every', 'game.'], ['I', 'like', 'what', 'you', 'did', 'with', 'your', 'hair.'], ['I', 'lost', 'my', 'key.'], ['As', 'you', 'sow,', 'so', 'will', 'you', 'reap.'], ["You'll", 'get', 'another', 'chance.'], ['How', 'do', 'you', 'know', "I'm", 'not', 'the', 'one', 'who', 'did', 'it?'], ['His', 'face', 'turned', 'pale.'], ['What', 'time', 'is', 'the', 'game', 'tomorrow', 'night?'], ['I', 'got', 'a', 'flat', 'tire.'], ['Both', 'of', 'them', 'seem', 'suspicious.'], ['You', 'need', 'to', 'redecorate', 'your', 'room.'], ["I'm", 'not', 'sure', 'that', "you're", 'ready.'], ['We', 'became', 'good', 'friends.'], ['My', 'son', 'came', 'to', 'see', 'me', 'from', 'time', 'to', 'time.'], ['Tom', 'lives', 'around', 'here', 'somewhere.'], ['You', 'were', 'terrified,', "weren't", 'you?'], ['Why', 'are', 'they', 'leaving?'], ['Give', 'me', 'the', 'keys.', "I'll", 'drive.'], ['She', 'was', 'the', 'first', 'one', 'to', 'pay', 'attention', 'to', 'him.'], ['She', 'is', 'a', 'doctor.'], ['Does', 'that', 'seem', 'fair', 'to', 'you?'], ['Nobody', 'told', 'me', 'you', 'were', 'here.'], ['Tom', 'is', 'your', 'friend.'], ["You're", 'depressed,', "aren't", 'you?'], ['They', 'clung', 'together', 'for', 'warmth.'], ['She', 'will', 'come', 'if', 'you', 'ask', 'her.'], ['I', 'think', "it's", 'time', 'for', 'me', 'to', 'split.'], ["You're", 'acting', 'like', 'a', 'child.'], ['You', 'know', "it's", 'a', 'lie.'], ["I'm", 'not', 'saying', "that's", 'wrong.'], ['Can', 'you', 'put', 'the', 'children', 'to', 'bed?'], ['What', 'is', 'the', 'cat', 'up', 'to?'], ["They're", 'special.'], ['I', 'was', 'afraid', "you'd", 'say', 'that.'], ["They're", 'coming.'], ['You', 'should', 'have', 'seen', 'it!'], ['The', 'old', 'man', 'looked', 'wise.'], ["Let's", 'speak', 'French.'], ['Many', 'health', 'specialists', 'say', 'that', 'you', 'should', 'eat', 'three', 'meals', 'a', 'day.'], ['Birds', 'fly', 'in', 'the', 'sky.'], ['You', 'need', 'to', 'be', 'here', 'for', 'your', 'family.'], ['I', 'borrowed', 'it.'], ['I', 'love', 'all', 'of', 'you.'], ['I', 'want', 'to', 'speak', 'to', 'a', 'lawyer.'], ['I', 'hope', 'you', 'will', 'be', 'completely', 'cured.'], ['You', "should've", 'waited', 'until', 'Monday', 'to', 'leave.'], ['Some', 'people', 'think', "I'm", 'nuts.'], ['They', 'were', 'playing', 'footsie', 'under', 'the', 'table.'], ['Have', 'you', 'ever', 'eaten', 'alone', 'in', 'a', 'restaurant?'], ['He', 'asked', 'me', 'questions', 'similar', 'to', 'those', 'asked', 'by', 'many', 'others.'], ['What', 'could', 'it', 'all', 'mean?'], ["They're", 'awake.'], ["He's", 'ready', 'to', 'go.'], ['He', 'trusted', 'you.'], ['The', 'meeting', 'has', 'been', 'postponed', 'until', 'tomorrow.'], ['I', 'want', 'to', 'live', 'in', 'a', 'big', 'city.'], ['I', 'think', 'Tom', 'is', 'still', 'in', 'Boston.'], ["He's", 'in', 'prison.'], ['He', 'married', 'my', 'sister.'], ['Who', 'caught', 'this', 'fish?'], ['Cats', 'are', 'like', 'girls.', 'If', 'they', 'talk', 'to', 'you', "it's", 'great,', 'but', 'if', 'you', 'try', 'to', 'talk', 'to', 'them,', 'it', "doesn't", 'go', 'so', 'well.'], ["I'm", 'not', 'photogenic.'], ['What', 'else', 'would', 'you', 'like', 'to', 'eat?'], ['I', "should've", 'gone', 'to', "yesterday's", 'meeting.'], ['He', 'is', 'as', 'tall', 'as', 'her.'], ['It', 'cost', 'me', '10', 'dollars.'], ['I', 'think', "we're", 'looking', 'for', 'different', 'things.'], ['Would', 'you', 'be', 'so', 'kind', 'as', 'to', 'lend', 'me', 'your', 'book?'], ['I', 'refuse', 'to', 'accept', 'that.'], ['She', 'met', 'the', 'man', 'of', 'her', 'dreams.'], ['He', 'was', 'born', 'in', 'Africa.'], ['You', 'will', 'save', 'your', 'father', 'a', 'lot', 'of', 'worry', 'if', 'you', 'simply', 'write', 'him', 'a', 'letter.'], ['It', 'would', 'never', 'have', 'occurred', 'to', 'me', 'to', 'say', 'anything', 'like', 'that.'], ['All', 'his', 'friends', 'backed', 'his', 'plan.'], ['Were', 'you', 'even', 'tempted?'], ["We're", 'winning.'], ['Without', 'water,', 'you', 'could', 'not', 'live.'], ['Tom', 'enjoys', 'playing', 'computer', 'games.'], ['I', "don't", 'really', 'want', 'you', 'mad', 'at', 'me.'], ['The', 'job', 'must', 'be', 'finished', 'by', '3', 'p.m.'], ['She', 'was', 'disappointed', 'with', 'the', 'result.'], ['Are', 'the', 'children', 'at', 'school?'], ['Who', 'was', 'that', 'you', 'were', 'just', 'talking', 'to?'], ['Do', 'you', 'like', 'French', 'wines?'], ['I', "don't", 'want', 'Tom', 'to', 'help', 'me.'], ['Those', 'who', 'want', 'to', 'remain', 'may', 'do', 'so.'], ['I', 'love', 'being', 'right.'], ['I', 'never', 'thought', "I'd", 'see', 'your', 'face', 'again.'], ['If', 'Tom', 'were', 'here,', "he'd", 'know', 'what', 'to', 'do.'], ['Why', 'were', 'you', 'so', 'busy', 'yesterday?'], ['He', 'has', 'been', 'waiting', 'for', 'an', 'hour.'], ["It's", 'never', 'going', 'to', 'happen.'], ['Schools', 'are', 'closed', 'for', 'Christmas.'], ["Don't", 'be', 'upset.'], ['I', 'saw', 'them', 'walking', 'arm', 'in', 'arm.'], ['Do', 'you', 'plan', 'to', 'go', 'overseas?'], ["He's", 'the', 'one', 'I', 'called.'], ['I', 'had', 'dinner', 'ready', 'for', 'you.'], ["We're", 'out', 'of', 'bullets.'], ['Never', 'choose', 'a', 'vocation', 'just', 'because', 'it', 'permits', 'the', 'wearing', 'of', 'good', 'clothes.'], ['Stop', 'being', 'cruel.'], ['Do', 'it', 'this', 'way.'], ["That's", 'enough.'], ['No', 'one', 'else', 'laughed.'], ['He', 'looked', 'into', 'the', 'box.'], ['I', 'found', 'an', 'apartment.'], ['Do', 'you', 'think', "I'm", 'pretty?'], ['I', "don't", 'understand', 'you.', 'I', 'have', 'an', 'earache.'], ['At', 'first,', 'I', "didn't", 'like', 'him.'], ['How', 'did', 'you', 'spend', 'your', 'vacation?'], ['What', 'a', 'fool', "I've", 'been!'], ['I', 'enjoy', 'chess.'], ['His', 'brother', 'was', 'nasty', 'to', 'me.'], ['The', 'pain', 'finally', 'went', 'away.'], ['Why', 'are', 'we', 'even', 'talking', 'about', 'this?'], ['Which', 'group', 'is', 'your', 'friend', 'in?'], ['We', 'need', 'a', 'new', 'leader.'], ['I', 'know', 'Tom', 'is', 'done.'], ['How', 'long', 'have', 'you', 'been', 'playing', 'the', 'drums?'], ['I', 'know', 'every', 'inch', 'of', 'the', 'town.'], ['Tom', 'went', 'on', 'a', 'business', 'trip', 'last', 'week.'], ["I'd", 'like', 'to', 'discuss', 'something', 'with', 'you.'], ['I', 'let', 'it', 'fall.'], ['In', 'case', 'of', 'fire,', 'push', 'the', 'button.'], ['They', 'rushed', 'towards', 'their', 'mother.'], ["We're", 'going', 'to', 'give', 'it', 'another', 'try.'], ['He', 'is', 'likely', 'to', 'win', 'the', 'game.'], ["I've", 'forgotten', 'my', 'email', 'address.'], ['He', 'was', 'outraged.'], ['Your', 'name', 'sounds', 'familiar', 'to', 'me.'], ['She', 'appears', 'to', 'have', 'few', 'friends.'], ['She', 'testified', 'that', 'she', 'saw', 'the', 'man.'], ['I', 'hope', 'it', 'does', 'not', 'rain', 'tomorrow.'], ["That's", 'enough', 'crying.', 'Pull', 'yourself', 'together.'], ['I', 'think', 'my', 'leg', 'is', 'broken.'], ['Tom', 'bought', 'a', 'book.'], ['I', 'know', 'what', "they're", 'going', 'to', 'do.'], ['Let', 'me', 'see', 'it.'], ['This', "isn't", 'legal.'], ['She', 'went', 'to', 'rehab', 'and', 'straightened', 'herself', 'out.'], ['You', 'seem', 'really', 'busy', 'this', 'morning.'], ['I', 'only', 'have', 'one', 'so', 'far.'], ['I', 'need', 'to', 'be', 'alone.'], ['I', 'think', 'that', "I'm", 'not', 'academically', 'oriented.'], ['We', 'thank', 'you', 'very', 'much!'], ['We', "don't", 'have', 'enough', 'beer.'], ['The', 'moon', 'is', 'out.'], ['I', "won't", 'be', 'running', 'for', 'mayor.'], ['I', 'looked', 'everywhere.'], ['I', 'wish', 'there', 'were', 'a', 'French', 'translation', 'of', 'this', 'book.'], ['It', 'was', 'stupid', 'of', 'me', 'to', 'make', 'such', 'a', 'mistake.'], ['She', 'testified', 'that', 'she', 'saw', 'the', 'man.'], ['I', "don't", 'know', 'what', "I'm", 'doing.'], ['Japan', 'relies', 'on', 'Arab', 'countries', 'for', 'oil.'], ['There', 'were', 'many', 'things', 'that', 'needed', 'to', 'be', 'done', 'before', 'we', 'could', 'leave.'], ["He's", 'stronger', 'than', 'you.'], ['It', 'looks', 'like', "something's", 'going', 'to', 'happen.'], ["We're", 'not', 'all', 'as', 'tired', 'as', 'you', 'are.'], ['I', 'think', 'you', 'should', 'think', 'about', 'the', 'future.'], ['Do', 'I', 'have', 'a', 'fever?'], ["Isn't", 'that', 'annoying?'], ['After', 'a', 'ten-minute', 'break,', 'we', 'resumed', 'our', 'rehearsal.'], ['By', 'the', 'way,', 'how', 'many', 'of', 'you', 'are', 'keeping', 'a', 'diary?'], ['He', 'turned', 'around.'], ['Some', 'people', 'still', 'believe', 'that', 'the', 'world', 'is', 'flat.'], ['Did', 'you', 'make', 'it', 'by', 'yourself?'], ['She', 'is', 'interested', 'in', 'music.'], ['If', 'you', 'would', 'like', 'to', 'have', 'further', 'information,', 'please', 'contact', 'me.'], ['Read', 'it', 'to', 'me.'], ['His', 'room', 'is', 'always', 'tidy.'], ["I've", 'been', 'waiting', 'here', 'for', 'him', 'since', 'this', 'morning.'], ['Are', 'you', 'interested', 'in', 'Japanese', 'music?'], ['Why', "don't", 'you', 'take', 'your', 'coat', 'off?'], ["I'll", 'be', 'checking', 'on', 'you.'], ['When', 'did', 'you', 'guys', 'decide', 'this?'], ['Your', 'book', 'is', 'upside', 'down.'], ["That's", 'enough.'], ['Tom', 'put', 'his', 'glass', 'down.'], ['I', 'need', 'to', 'think', 'of', 'my', 'children.'], ['Tom', "won't", 'let', 'you', 'win', 'again.'], ["I'm", 'going', 'to', 'let', 'Tom', 'respond.'], ['Did', 'anybody', 'see', 'what', 'happened?'], ["Don't", 'be', 'afraid', 'of', 'seeing', 'the', 'doctor.'], ['I', "don't", 'recall', 'asking', 'for', 'your', 'advice.'], ["That's", 'what', 'Tom', 'wants', 'to', 'know.'], ['I', 'would', 'like', 'to', 'travel', 'alone.'], ['He', 'likes', 'to', 'read', 'books.'], ['He', 'devoted', 'himself', 'to', 'the', 'study', 'of', 'medicine.'], ['This', 'is', 'for', 'your', 'own', 'safety.'], ['Are', 'Tom', 'and', 'Mary', 'your', 'friends?'], ["You've", 'betrayed', 'us.'], ['Change', 'your', 'mind,', 'if', 'you', 'want', 'to.'], ['Worrying', 'is', 'like', 'paying', 'a', 'debt', 'you', "don't", 'owe.'], ['It', 'was', 'extremely', 'stressful.'], ['Tom', 'tried', 'to', 'lift', 'the', 'box.'], ['Push', 'the', 'door', 'open.'], ['The', 'rise', 'in', 'house', 'prices', 'enabled', 'him', 'to', 'sell', 'his', 'house', 'at', 'a', 'big', 'profit.'], ['The', 'orchestra', 'is', 'playing.'], ['Be', 'careful', 'or', "you'll", 'strip', 'the', 'gears.'], ['Bite', 'your', 'tongue.'], ['Would', 'you', 'show', 'us', 'some', 'samples', 'of', 'your', 'work?'], ['Are', 'you', 'sure', 'you', "didn't", 'do', 'anything?'], ['Tom', 'is', 'extremely', 'cautious.'], ['I', 'bought', 'a', 'new', 'television.'], ['Even', 'though', 'she', 'was', 'busy,', 'she', 'came', 'to', 'see', 'me.'], ['I', 'need', 'some', 'paper.'], ["I've", 'got', 'some', 'business', 'here.'], ['You', 'can', 'fix', 'all', 'this.'], ['If', 'I', 'could', 'stay', 'longer,', 'I', 'would.'], ["I'm", 'not', 'always', 'at', 'home', 'on', 'Sundays.'], ['I', 'have', 'gained', 'weight.'], ['Did', 'I', 'wake', 'you?'], ["I'm", 'not', 'even', 'sure', 'I', 'want', 'to', 'see', 'that', 'movie.'], ['You', 'were', 'right', 'about', 'this.'], ['I', 'would', 'think', 'you', 'have', 'other', 'things', 'to', 'keep', 'you', 'busy.'], ['Have', 'a', 'look.'], ['I', 'beg', 'you', 'to', 'let', 'me', 'live.'], ['I', 'have', 'to', 'make', 'sure', 'everything', 'is', 'OK.'], ['I', 'am', 'going', 'to', 'make', 'him', 'a', 'serious', 'offer.'], ['See', 'things', 'as', 'they', 'are.'], ['A', 'teacher', 'must', 'be', 'fair', 'with', 'his', 'students.'], ['When', 'does', 'the', 'movie', 'start?'], ["I'll", 'pack.'], ['Not', 'everybody', 'succeeds', 'in', 'life.'], ['Nothing', 'lasts', 'forever.'], ['We', "don't", 'have', 'this', 'in', 'Europe.'], ['He', 'told', 'me', 'to', 'meet', 'him', 'at', 'his', 'apartment.'], ["I'm", 'the', 'captain', 'of', 'this', 'ship.'], ['I', 'want', 'my', 'money', 'back', 'now.'], ['What', 'good', 'will', 'that', 'do?'], ['How', 'is', 'your', 'family', 'name', 'written?'], ['You', 'should', 'omit', 'this', 'word', 'from', 'the', 'sentence.'], ["We're", 'thinking', 'of', 'adding', 'on', 'another', 'bedroom', 'to', 'the', 'house.'], ['I', 'carried', 'one', 'bag,', 'but', 'the', 'other', 'one', 'was', 'left', 'behind.'], ['Our', 'main', 'problem', 'remains', 'unsolved.'], ["You're", 'being', 'malicious.'], ['I', 'almost', 'missed', 'the', 'train.'], ["I'd", 'like', 'a', 'cup', 'of', 'tea.'], ['She', 'made', 'a', 'new', 'suit', 'for', 'him.'], ['There', 'were', 'a', 'lot', 'of', 'people', 'at', 'the', 'concert.'], ["That's", 'all', 'it', 'takes', 'sometimes.'], ['Find', 'the', 'cat.'], ['I', 'tested', 'everything.'], ['He', 'gave', 'us', 'quite', 'a', 'lot', 'of', 'trouble.'], ['Stand', 'up', 'and', 'introduce', 'yourself,', 'please.'], ['We', 'can', 'solve', 'this.'], ['More', 'than', 'twenty', 'boys', 'went', 'there.'], ['I', 'think', 'everything', 'is', 'under', 'control', 'now.'], ['That', 'last', 'round', 'of', 'chemo', 'really', 'sapped', 'his', 'energy.'], ['How', 'many', 'songs', 'have', 'you', 'written?'], ['The', 'leader', 'of', 'the', 'party', 'is', 'a', 'famous', 'scientist.'], ['I', 'simply', 'wanted', 'to', 'see', 'what', 'was', 'going', 'on.'], ['I', 'think', 'I', 'look', 'fat', 'in', 'these', 'jeans.'], ['Which', 'do', 'you', 'like', 'better,', 'spring', 'or', 'autumn?'], ['I', 'have', 'a', 'lot', 'of', 'Canadian', 'friends.'], ['I', 'looked', 'Tom', 'in', 'the', 'eyes', 'and', 'told', 'him', 'the', 'truth.'], ['Hackers', 'are', 'adept', 'at', 'getting', 'around', 'computer', 'security', 'measures.'], ['I', "don't", 'want', 'to', 'fight.'], ["I'm", 'thinking', 'of', 'visiting', 'you', 'one', 'of', 'these', 'days.'], ['I', 'wonder', 'if', "he's", 'really', 'sick.'], ['Tom', 'wanted', 'to', 'dance', 'with', 'Mary.'], ['Why', 'were', 'you', 'so', 'slow?'], ['I', 'need', 'to', 'know', 'your', 'answer', 'by', 'Friday.'], ['I', "can't", 'believe', 'he', 'kissed', 'you.'], ['That', 'should', 'be', 'enough', 'for', 'you.'], ['Thanks', 'for', 'the', 'reminder.'], ['What', 'is', 'his', 'age?'], ['Stop', 'staring', 'at', 'me.'], ['We', 'went', 'to', 'the', 'park', 'to', 'take', 'pictures.'], ['I', "didn't", 'know', 'who', 'Tom', 'was', 'planning', 'to', 'go', 'swimming', 'with.'], ['She', 'is', 'preparing', 'for', 'college.'], ["It's", 'normal', 'to', 'make', 'mistakes.'], ['We', 'were', 'on', 'the', 'same', 'train', 'by', 'chance.'], ['He', 'barely', 'passed', 'the', 'examination.'], ["He's", 'raking', 'it', 'in.'], ["You're", 'so', 'wrong.'], ['Do', 'you', 'really', 'want', 'to', 'put', 'your', 'money', 'in', 'that', 'bank?'], ['Nobody', 'appreciates', 'me.'], ['My', 'uncle', 'gave', 'him', 'a', 'present.'], ['I', 'trusted', 'my', 'teacher.'], ['She', "didn't", 'try', 'to', 'evade', 'the', 'truth.'], ['Which', 'book', 'is', 'better?'], ['Should', 'you', 'always', 'freeze', 'fresh', 'meat?'], ['I', 'wanted', 'you', 'to', 'be', 'proud', 'of', 'me.'], ['We', 'wish', 'Tom', 'the', 'best.'], ['Tom', "didn't", 'want', 'to', 'think', 'about', 'the', 'situation.'], ['In', 'England,', 'Labor', 'Day', 'is', 'in', 'May.'], ['My', 'mobile', 'has', 'been', 'stolen.'], ['Have', 'you', 'ever', 'heard', 'her', 'sing', 'on', 'stage?'], ["We're", 'aware', 'of', 'the', 'risks.'], ['Tom', 'said', 'that', 'he', 'feels', 'like', 'going', 'out.'], ["That's", 'all', 'I', 'got.'], ['I', "didn't", 'say', 'that.'], ['You', "can't", 'blame', 'him.'], ['We', 'can', 'meet.'], ["They're", 'all', 'thieves.'], ['I', 'have', 'a', 'small', 'fever.'], ['Are', 'you', 'going', 'to', 'save', 'us?'], ['Did', 'you', 'find', 'everything', 'you', 'want?'], ['I', 'want', 'to', 'visit', 'Australia', 'one', 'day.'], ['Tell', 'me', 'what', 'you', 'know', 'about', 'the', 'incident.'], ['Maybe', 'you', 'should', 'call', 'the', 'police.'], ['I', 'felt', 'as', 'if', 'I', 'had', 'no', 'choice.'], ['You', 'look', 'happy.'], ['I', 'want', 'to', 'believe', "there's", 'still', 'a', 'chance', 'for', 'us', 'to', 'be', 'happy', 'together.'], ['I', 'will', 'have', 'spent', 'all', 'this', 'money', 'in', 'three', 'months.'], ['I', 'hope', "you'll", 'soon', 'get', 'well.'], ['I', 'need', 'to', 'earn', 'more', 'money.'], ['Why', 'do', 'I', 'have', 'to', 'go', 'to', 'school?'], ['Tom', "doesn't", 'need', 'to', 'go.'], ['What', 'is', 'it?'], ['I', 'want', 'to', 'talk', 'about', 'the', 'future.'], ['All', 'graduates', 'are', 'invited.'], ['Almost', 'all', 'of', 'the', 'dogs', 'are', 'alive.'], ["I've", 'come', 'to', 'ask', 'you', 'a', 'favor.'], ['Tom', 'found', 'your', 'cap.'], ['Both', 'of', 'them', 'are', 'very', 'cute.'], ['Take', 'the', 'money', 'and', 'run.'], ['It', 'has', 'been', 'raining', 'since', 'yesterday.'], ['Gay', 'marriage', 'is', 'legal', 'here.'], ['I', "didn't", 'have', 'the', 'heart', 'to', 'tell', 'you.'], ['I', 'heard', 'you', 'whistling.', 'You', 'must', 'be', 'happy.'], ['Can', 'you', 'come', 'with', 'us?'], ['Tom', 'always', 'talks', 'about', 'Mary.'], ['What', 'are', 'you', 'called?'], ['I', "don't", 'think', 'either', 'of', 'us', 'wants', 'that', 'to', 'happen.'], ['We', "can't", 'do', 'that.'], ['This', 'company', 'uses', 'cheap', 'labor', 'to', 'increase', 'its', 'profit', 'margins.'], ['Are', 'you', 'frightened?'], ['That', 'was', 'absolutely', 'unnecessary.'], ['Are', 'you', 'sure', "that's", 'safe?'], ['Both', 'of', 'my', 'parents', "aren't", 'alive.'], ['He', 'lit', 'the', 'candles.'], ['Sing', 'us', 'a', 'song,', 'please.'], ["He's", 'out', 'of', 'position.'], ['I', 'want', 'to', 'hear', 'more', 'about', 'this.'], ['What', 'kind', 'of', 'food', 'do', 'you', 'usually', 'cook?'], ['Last', 'night,', 'I', 'went', 'to', 'bed', 'without', 'brushing', 'my', 'teeth.'], ['I', 'wish', 'I', 'knew', 'the', 'answer', 'to', 'this', 'question.'], ['She', 'took', 'a', 'job', 'in', 'a', 'store', 'for', 'the', 'summer.'], ['Keep', 'mum', 'about', 'this', 'plan.'], ['You', 'want', 'to', 'get', 'out', 'of', 'here,', "don't", 'you?'], ['Some', 'people', 'are', 'working', 'in', 'the', 'fields.'], ['Who', 'wants', 'that?'], ['Do', 'you', 'have', 'one?'], ['What', 'more', 'do', 'we', 'need', 'to', 'make', 'us', 'happy?'], ['I', 'want', 'you', 'to', 'be', 'prepared.'], ['It', 'is', 'high', 'time', 'you', 'spilled', 'the', 'beans.'], ['Show', 'me', 'how', 'to', 'do', 'this.'], ['This', 'is', 'nonsense.'], ["It's", 'free', 'of', 'charge.'], ["I'd", 'like', 'to', 'stand.'], ["That's", 'my', 'teacher.'], ['Tom', 'kept', 'digging.'], ['I', 'just', 'want', 'to', 'be', 'prepared.'], ['We', 'consider', 'Tom', 'honest.'], ['Does', 'she', 'play', 'piano?'], ['We', 'must', 'start', 'at', 'once.'], ['Tom', 'was', 'startled', 'by', 'a', 'knock', 'on', 'the', 'door.'], ["That's", 'not', 'where', "I'm", 'going.'], ['Anybody', 'can', 'make', 'a', 'mistake.'], ['After', 'English,', 'German', 'is', 'the', 'most', 'popular', 'foreign', 'language', 'in', 'Russia.'], ["I'm", 'glad', "you're", 'here.'], ['Do', 'you', 'know', 'where', 'the', 'bus', 'stop', 'is?'], ['He', 'has', 'gone', 'to', 'Britain.'], ['No', 'matter', 'how', 'rich', 'people', 'are,', 'they', 'always', 'want', 'more.'], ["We're", 'married', 'to', 'each', 'other.'], ['Hey,', 'Tom,', 'can', 'I', 'ask', 'you', 'something?'], ['I', 'owe', 'what', 'I', 'am', 'today', 'to', 'my', 'father.'], ['Tom', 'has', 'gambling', 'debts.'], ['He', 'made', 'up', 'his', 'mind', 'to', 'be', 'a', 'pilot.'], ['I', 'wish', 'my', 'girlfriend', 'would', 'spend', 'more', 'time', 'with', 'me.'], ['The', 'book', 'you', 'gave', 'me', 'is', 'very', 'interesting.'], ['Is', 'this', 'the', 'key', 'you', 'are', 'looking', 'for?'], ['Tom', 'said', 'that', 'Mary', 'was', 'reliable.'], ['Can', 'they', 'see', 'us?'], ['I', 'have', 'to', 'be', 'back', 'home', 'by', 'seven.'], ['He', 'did', 'not', 'like', 'children.'], ['I', 'was', 'the', 'last', 'one', 'to', 'start', 'in', 'the', 'race,', 'but', 'I', 'soon', 'caught', 'up', 'with', 'the', 'others.'], ['They', 'got', 'married', 'three', 'months', 'ago.'], ['Will', 'you', 'answer', 'all', 'my', 'questions', 'truthfully?'], ['She', 'told', 'him', 'that', 'she', 'loved', 'him.'], ['Be', 'alert', 'when', 'you', 'cross', 'a', 'busy', 'street!'], ['She', "wasn't", 'able', 'to', 'talk', 'to', 'him.'], ['He', "doesn't", 'watch', 'TV', 'at', 'all.'], ['Make', 'it', 'larger.'], ['You', 'should', 'have', 'seen', 'me.'], ['She', 'is', 'missing', 'the', 'point.'], ['Is', 'it', 'too', 'late', 'to', 'get', 'my', 'money', 'back?'], ['I', 'wish', "you'd", 'told', 'me', 'that', 'a', 'bit', 'earlier.'], ['Tom', 'put', 'thirty', 'dollars', 'on', 'the', 'table.'], ['She', 'was', 'forty,', 'but', 'she', 'appeared', 'older.'], ['She', 'earns', 'more', 'than', 'she', 'spends.'], ['She', 'looks', 'familiar.'], ['I', 'think', 'she', 'is', 'sick.'], ['Keep', 'to', 'the', 'left,', 'please.'], ['This', 'is', 'technically', 'impossible.'], ['We', 'have', 'to', 'consider', 'the', 'problem', 'in', 'the', 'light', 'of', 'cultural', 'differences.'], ['We', 'apologize', 'for', 'the', 'mistake.'], ['I', 'sometimes', 'take', 'a', 'shower', 'in', 'the', 'morning.'], ["That's", 'exactly', 'it.'], ['He', 'was', 'respected', 'both', 'as', 'a', 'teacher', 'and', 'as', 'a', 'man.'], ['Open', 'up.'], ['Would', 'you', 'like', 'to', 'leave', 'a', 'message', 'for', 'him?'], ['Tell', 'Tom', 'about', 'what', 'you', 'did', 'the', 'other', 'night.'], ['My', 'answer', 'is', 'no.'], ['Is', 'there', 'somewhere', 'in', 'Europe', "you'd", 'like', 'to', 'visit?'], ['How', 'do', 'you', 'know', 'I', "don't", 'have', 'it?'], ['I', 'was', 'really', 'curious.'], ["It's", 'probably', 'just', 'my', 'imagination.'], ['Eat', 'your', 'peas.'], ['You', 'did', 'something', 'incredibly', 'stupid.'], ['Who', 'did', 'you', 'vote', 'for', 'in', 'the', 'election?'], ['That', 'was', 'so', 'cool.'], ['Why', "don't", 'you', 'run', 'for', 'student', 'council?'], ['I', 'always', 'try', 'to', 'tell', 'the', 'truth.'], ['If', 'it', 'gets', 'boring,', "I'll", 'go', 'home.'], ["Where's", 'the', 'money?'], ['You', 'should', 'think', 'before', 'you', 'begin', 'to', 'speak.'], ['You', 'look', 'disappointed.'], ['The', 'whole', 'class', 'was', 'quiet.'], ['Are', 'you', 'going,', 'too?'], ['Tom', 'spoke', 'calmly.'], ["You'll", 'soon', 'get', 'used', 'to', 'eating', 'Japanese', 'food.'], ['Does', 'your', 'mom', 'know?'], ['Do', 'you', 'remember', 'the', 'day', 'when', 'we', 'saw', 'the', 'accident?'], ['You', "don't", 'have', 'the', 'guts.'], ['They', 'knew', 'exactly', 'what', 'they', 'were', 'doing.'], ['Tell', 'me', "I'm", 'not', 'dreaming.'], ['What', 'I', 'can', 'do', 'for', 'you?'], ["I'm", 'looking', 'for', 'a', 'place', 'to', 'live.'], ["I'm", 'not', 'sure', 'if', "it's", 'a', 'compliment', 'or', 'an', 'insult.'], ["I've", 'got', 'some', 'very', 'good', 'news.'], ['Will', 'it', 'rain', 'this', 'afternoon?'], ['It', 'rained', 'heavily', 'all', 'day', 'long.'], ['How', 'many', 'years', 'has', 'it', 'been', 'since', 'I', 'last', 'saw', 'you?'], ['His', 'ID', 'was', 'fake.'], ['Please', "don't", 'leave', 'me', 'here', 'by', 'myself.'], ["She's", 'my', 'first', 'love.'], ["You've", 'set', 'a', 'bad', 'example.'], ['Tom', 'lives', 'in', 'the', 'middle', 'of', 'nowhere.'], ['I', "don't", 'care', 'about', 'your', 'past.'], ["I've", 'never', 'heard', 'of', 'that.'], ['We', 'are', 'traveling', 'on', 'a', 'tight', 'budget.'], ['Do', 'you', 'know', 'a', 'better', 'way', 'to', 'do', 'this?'], ['The', 'light', 'in', "Tom's", 'room', 'is', 'on.'], ['He', 'was', 'alone', 'in', 'the', 'room.'], ['I', "don't", 'want', 'to', 'work', 'at', 'night.'], ['He', 'left', 'the', 'box', 'unprotected.'], ['Prices', 'went', 'up.'], ['Tom', "doesn't", 'want', 'to', 'talk', 'to', 'you', 'now.'], ['I', 'thought', "I'd", 'lost', 'you.'], ['Would', 'you', 'like', 'more', 'coffee?'], ["You're", 'clever.'], ['The', 'fire', 'was', 'soon', 'extinguished.'], ['Tom', 'won', 'a', 'free', 'trip', 'to', 'Boston.'], ["I'm", 'not', 'doing', 'it', 'anymore.'], ['Stop', 'poking', 'me.'], ['I', "don't", 'see', 'how', 'that', 'could', 'be', 'possible.'], ['The', 'engine', "won't", 'start.'], ['She', 'is', 'ashamed', 'of', 'what', "she's", 'done.'], ['He', 'was', 'ashamed', 'of', 'the', 'grades', 'he', 'got.'], ['I', 'get', 'out', 'of', 'the', 'hospital', 'next', 'week.'], ['I', 'really', "didn't", 'want', 'to', 'bother', 'you', 'again.'], ['They', 'were', 'all', 'scared.'], ["You're", 'skinny.'], ['Why', 'did', 'you', 'buy', 'that', 'expensive', 'dictionary?'], ['Can', 'I', 'borrow', 'your', 'scissors?'], ['I', 'need', 'your', 'passport', 'and', 'three', 'pictures.'], ['Is', 'there', 'a', 'restaurant', 'in', 'the', 'hotel?'], ['Tom', 'went', 'back', 'to', 'the', 'hotel.'], ['Tom', 'will', 'be', 'here', 'every', 'day.'], ['Some', 'families', 'spend', 'their', 'vacation', 'near', 'the', 'beach.'], ['Everyone', 'hates', 'you.'], ['Do', 'you', 'really', 'want', 'to', 'lead', 'this', 'kind', 'of', 'life?'], ["That's", 'probably', 'a', 'good', 'idea.'], ['Can', 'you', 'wake', 'me', 'up', 'at', 'seven', "o'clock", 'tomorrow', 'morning?'], ['She', 'married', 'a', 'musician.'], ['Do', 'you', 'remember', 'your', 'grandfather?'], ['Nobody', 'was', 'hungry', 'except', 'me.'], ['He', 'is', 'still', 'angry.'], ['Every', 'man', 'has', 'his', 'price.'], ['Tell', 'him', 'where', 'he', 'should', 'go.'], ['He', 'is', 'used', 'to', 'making', 'speeches.'], ['I', 'have', 'a', 'few', 'tickets', 'in', 'row', '15.'], ['Everybody', 'loves', 'him.'], ["Don't", 'touch', 'this!'], ['Can', 'you', 'tell', 'us', 'what', 'Tom', 'did?'], ['Visiting', 'hours', 'are', 'almost', 'over.'], ['I', 'promise', 'you', "I'll", 'never', 'leave', 'you.'], ['She', 'advised', 'him', 'that', 'he', 'should', 'stay', 'at', 'home.'], ['You', "don't", 'have', 'to', 'talk', 'about', 'it', 'if', 'you', "don't", 'want', 'to.'], ['Where', 'is', 'the', 'nearest', 'telephone?'], ['Tom', 'used', 'to', 'be', 'aggressive.'], ['He', 'admitted', 'his', 'guilt.'], ['Could', 'you', 'rewrite', 'this', 'sentence.', 'It', 'is', 'not', 'clear.'], ['Is', 'anyone', 'hurt?'], ['I', "don't", 'think', "that's", 'true.'], ['Have', 'you', 'been', 'told', 'where', 'the', 'meeting', 'will', 'be?'], ['The', 'telephone', 'rang', 'a', 'few', 'minutes', 'later.'], ['Steel', 'production', 'is', 'estimated', 'to', 'reach', '100', 'million', 'tons', 'this', 'year.'], ['Tom', 'is', 'at', 'school,', "isn't", 'he?'], ['I', 'am', 'speechless.'], ['The', 'storm', 'blew', 'down', 'a', 'tree.'], ['My', 'teacher', 'put', 'in', 'a', 'good', 'word', 'for', 'me.'], ['I', "didn't", 'know', 'anyone', 'was', 'there.'], ['Clerks', 'with', 'sticky', 'fingers', "won't", 'keep', 'their', 'jobs', 'for', 'long.'], ['Are', 'you', 'sure', 'you', "don't", 'want', 'one?'], ["Don't", 'ever', 'say', 'her', 'name.'], ['He', 'seems', 'to', 'know', 'all', 'about', 'her', 'past.'], ['Who', 'do', 'you', 'think', 'would', 'do', 'such', 'a', 'thing?'], ['I', 'know', 'what', 'you', 'were', 'hoping', 'for.'], ['Love', 'is', 'everything.'], ['Come', 'back', 'soon.'], ['Can', 'we', 'count', 'on', "Tom's", 'help?'], ['Promise', 'me', 'you', "won't", 'tell', 'Mom.'], ['Tom', 'is', 'a', 'flight', 'attendant.'], ['We', 'hope', 'to', 'see', 'you', 'again.'], ['Your', 'eggs', 'are', 'getting', 'cold.'], ["Don't", 'touch', 'this!'], ['That', 'was', 'really', 'difficult.'], ['Have', 'you', 'already', 'finished?'], ['I', 'also', 'went.'], ['It', 'was', 'impossible', 'to', 'understand', 'his', 'questions.'], ['Please', 'be', 'careful.'], ['Do', 'you', 'ever', 'sleep?'], ['I', 'have', 'to', 'wait.'], ['Draw', 'a', 'picture', 'of', 'yourself.'], ['I', 'said', 'I', 'was', 'alone,', "didn't", 'I?'], ['Come', 'as', 'soon', 'as', 'possible.'], ['I', 'think', "it's", 'time', 'for', 'me', 'to', 'ask', 'for', 'his', 'advice.'], ['He', 'is', 'the', 'only', 'American', 'to', 'have', 'swum', 'the', 'English', 'Channel.'], ['I', 'just', 'had', 'breakfast', 'with', 'Tom.'], ['You', 'are', 'in', 'my', 'way.'], ['His', 'wish', 'was', 'to', 'go', 'to', 'America.'], ['I', 'always', 'knew', 'you', 'were', 'a', 'nice', 'guy.'], ['The', 'cat', 'caught', 'the', 'mouse.'], ['We', 'just', 'want', 'a', 'second', 'opinion.'], ["I'm", 'speechless.'], ['The', 'collection', 'is', 'open', 'to', 'the', 'public.'], ['The', 'battery', 'on', 'my', 'cell', 'phone', 'is', 'running', 'low.'], ["What's", 'that?'], ['Sir,', 'that', 'CD', 'is', 'available', 'only', 'by', 'special', 'order.'], ['We', 'were', 'right.'], ['I', 'turned', 'in', 'my', 'report', 'yesterday.'], ["Don't", 'take', 'it', 'personally.'], ['His', 'parents', 'were', 'pleased', 'with', 'his', 'success.'], ['Tom', 'is', 'the', 'only', 'man', 'in', 'the', 'world', 'that', 'is', 'likely', 'to', 'break', 'that', 'record.'], ['You', 'could', 'hear', 'a', 'pin', 'drop.'], ['I', 'think', 'my', 'plan', 'is', 'better', 'than', 'yours.'], ["I'm", 'not', 'your', 'husband', 'anymore.'], ['Who', 'knows', 'what', 'could', 'happen?'], ["Don't", 'forget', 'to', 'pay', 'the', 'phone', 'bill.'], ['My', 'uncle', 'gave', 'him', 'a', 'present.'], ['Tom', 'quickly', 'became', 'famous.'], ['In', 'those', 'days,', 'few', 'people', 'went', 'to', 'college.'], ['"Will', 'he', 'pass', 'the', 'examination?"', '"I', 'am', 'afraid', 'not."'], ['I', 'wanted', 'to', 'hear', 'you', 'say', 'that.'], ["It's", 'up', 'to', 'you', 'to', 'decide', 'what', 'to', 'do.'], ['Our', 'ancestors', 'came', 'to', 'this', 'country', '150', 'years', 'ago.'], ["She's", 'no', 'spring', 'chicken.'], ['Can', 'I', 'suggest', 'something?'], ['I', 'have', 'immunity.'], ['This', 'is', 'my', 'new', 'car.'], ['In', 'my', 'job', 'I', 'have', 'to', 'deal', 'with', 'all', 'kinds', 'of', 'people.'], ['What', 'is', 'the', 'news?'], ["That's", 'what', 'got', 'me', 'into', 'this', 'line', 'of', 'work.'], ['There', 'were', 'hundreds', 'of', 'people', 'there.'], ['I', 'know', 'what', 'this', 'is.'], ['He', 'who', 'hesitates', 'is', 'lost.'], ['Read', 'after', 'me.'], ['I', "don't", 'have', 'a', 'bicycle,', 'let', 'alone', 'a', 'car.'], ['How', 'do', 'you', 'know', "I'm", 'not', 'the', 'one', 'who', 'did', 'it?'], ['I', 'went', 'to', 'see', 'a', 'show', 'today.'], ['That', 'girl', 'looks', 'boyish.'], ['I', 'talk', 'to', 'myself', 'all', 'the', 'time.'], ['It', 'feels', 'weird,', "doesn't", 'it?'], ['Who', 'sent', 'you?'], ['I', 'have', 'brown', 'hair.'], ['You', 'were', 'here', 'just', 'the', 'other', 'day,', "weren't", 'you?'], ['Better', 'bread', 'without', 'butter', 'than', 'cake', 'without', 'freedom.'], ["Nobody'll", 'ever', 'find', 'us', 'here.'], ['She', 'hit', 'him', 'with', 'a', 'hammer.'], ['You', 'should', 'have', 'worked', 'harder.'], ['I', 'would', 'advise', 'against', 'it.'], ['Summer', 'is', 'almost', 'over.'], ['Our', 'house', 'faces', 'the', 'beach.'], ['Tom', "didn't", 'say', 'what', 'you', 'said', 'he', 'said.'], ['I', "didn't", 'realize', 'you', 'were', 'awake.'], ['I', 'consider', 'myself', 'very', 'stupid.'], ['This', 'is', 'kind', 'of', 'boring.'], ['Tom', 'was', 'badly', 'beaten', 'before', 'being', 'killed.'], ['He', 'helped', 'me', 'do', 'my', 'homework.'], ['I', "don't", 'know', 'whether', "he'll", 'come', 'by', 'train', 'or', 'by', 'car.'], ['Do', 'you', 'play', 'any', 'instruments?'], ['I', 'informed', 'him', 'of', 'her', 'arrival.'], ['Most', 'big', 'Japanese', 'companies', 'depend', 'on', 'exports.'], ["You're", 'required', 'to', 'help', 'them.'], ['Is', 'it', 'large', 'enough?'], ['I', 'know', "you're", 'busy,', 'but', 'can', 'I', 'talk', 'to', 'you', 'for', 'a', 'minute?'], ['It', "won't", 'be', 'long', 'before', 'he', 'is', 'up', 'and', 'about.'], ['She', 'nodded', 'her', 'head', 'in', 'agreement.'], ['My', 'brother', 'and', 'I', 'were', 'very', 'close.'], ['We', 'have', 'made', 'friends', 'with', 'Tom.'], ["You're", 'turning', 'red.'], ['You', 'can', 'do', 'that', 'right', 'now.'], ['Would', 'it', 'be', 'OK', 'if', 'I', 'took', 'a', 'vacation', 'next', 'week?'], ['Everyone', 'wins.'], ['I', 'think', 'we', 'can', 'handle', 'that.'], ["You're", 'not', 'very', 'tidy.'], ['You', "can't", 'just', 'quit.'], ['This', 'is', 'the', 'best', 'seafood', 'restaurant', 'in', 'the', 'neighborhood.'], ["That's", 'just', 'false.'], ['I', 'need', 'to', 'be', 'prepared.'], ['This', 'water', 'tastes', 'good.'], ['It', 'was', 'not', 'until', 'yesterday', 'that', 'I', 'noticed', 'it.'], ['Please', 'have', 'a', 'seat.'], ['His', 'family', 'works', 'in', 'the', 'fields.'], ["Where're", "Tom's", 'things?'], ['He', "can't", 'keep', 'time.'], ['The', 'dog', 'felt', 'guilty', 'about', 'eating', 'the', 'homework.'], ['He', 'said', 'he', 'would', 'call', 'tomorrow.'], ['Is', 'he', 'a', 'friend', 'of', 'yours?'], ['I', 'think', 'you', 'should', 'quit.'], ['Waste', 'not,', 'want', 'not.'], ['I', 'forgot', 'where', 'the', 'car', 'was.'], ['We', 'have', 'had', 'more', 'snow', 'than', 'usual', 'this', 'winter.'], ['Her', 'car', 'broke', 'down', 'on', 'the', 'way.'], ["Can't", 'you', 'see', "I'm", 'busy?'], ['I', 'was', 'elected.'], ['I', 'have', 'another', 'plan.'], ['Tom', 'raised', 'his', 'son', 'on', 'his', 'own.'], ['Maybe', 'I', 'should', 'be', 'ashamed.'], ["That's", 'a', 'big', 'one.'], ['The', 'courts', 'will', 'decide', 'that.'], ['Is', 'your', 'mom', 'at', 'home?'], ['Tom', "isn't", 'the', 'only', 'one', "who's", 'exhausted.'], ['We', 'played', 'baseball', 'yesterday.'], ['I', 'just', 'want', 'to', 'let', 'you', 'know', 'that', 'I', "can't", 'attend', 'this', "afternoon's", 'meeting.'], ['No', 'one', 'was', 'in', 'the', 'park.'], ["I've", 'been', 'looking', 'for', 'my', 'keys', 'all', 'day.'], ['Did', 'you', 'bring', 'a', 'hair', 'dryer?'], ['I', 'feel', 'like', 'a', 'fool.'], ['You', "don't", 'know', 'how', 'lucky', 'you', 'are.'], ["He's", 'looking', 'good.'], ['She', 'is', 'two', 'years', 'older', 'than', 'you.'], ['I', 'had', 'to', 'get', 'something', 'out', 'of', 'the', 'car.'], ["I'll", 'do', 'anything', 'I', 'can', 'to', 'help.'], ['Do', 'you', 'get', 'up', 'at', 'six?'], ["Don't", 'leave', 'without', 'saying', 'goodbye.'], ["Tom's", 'parents', 'are', 'teachers.'], ['It', 'freaks', 'me', 'out.'], ['I', 'want', 'to', 'cook', 'for', 'you.'], ['There', 'is', 'nothing', 'as', 'important', 'as', 'friendship.'], ["Today's", 'show', 'is', 'a', 'rerun.'], ['I', 'guess', 'I', 'just', 'like', 'making', 'people', 'happy.'], ['Why', 'are', 'you', 'so', 'insecure?'], ['He', 'glanced', 'at', 'her.'], ['Thanks', 'a', 'million.'], ['She', 'tried', 'to', 'get', 'whatever', 'she', 'wanted.'], ["We'll", 'pay', 'for', 'it.'], ['Tom', 'has', 'asked', 'us', 'for', 'help.'], ['Could', 'you', 'please', 'tell', 'me', 'again', 'why', 'you', 'are', 'late?'], ['You', "can't", 'have', 'both.'], ['How', 'could', 'you', 'take', 'that', 'job', 'without', 'consulting', 'me?'], ['How', 'often', 'do', 'you', 'play', 'sports?'], ["It's", 'getting', 'dark.'], ['What', 'a', 'country!'], ['She', 'forgave', 'him.'], ['Cover', 'it', 'up.'], ["He's", 'addicted', 'to', 'heroin.'], ['It', 'is', 'better', 'to', 'be', 'a', 'coward', 'for', 'five', 'minutes', 'than', 'dead', 'for', 'the', 'rest', 'of', 'your', 'life.'], ['I', 'hope', 'you', 'all', 'understand.'], ['Were', 'you', 'excited?'], ['You', 'might', 'want', 'some', 'of', 'this.'], ['By', 'the', 'way,', 'how', 'old', 'are', 'you?'], ['He', "can't", 'swim', 'at', 'all,', 'but', 'when', 'it', 'comes', 'to', 'skiing,', 'he', 'is', 'the', 'best.'], ["You're", 'a', 'little', 'overweight.'], ["I'd", 'like', 'you', 'to', 'read', 'this', 'book.'], ['All', 'aboard!'], ['Put', 'the', 'desk', 'against', 'the', 'wall.'], ['I', 'can', 'walk', 'to', 'school', 'in', 'ten', 'minutes.'], ['I', 'made', 'a', 'sandwich', 'for', 'you.'], ["We'll", 'check.'], ['We', 'have', 'a', 'few', 'surprises', 'in', 'store', 'for', 'her.'], ['I', "don't", 'know', 'your', 'brother.'], ['You', "don't", 'have', 'to', 'blame', 'yourself', 'for', 'that.'], ['Thanks', 'to', 'you', "I've", 'lost', 'my', 'appetite.'], ['I', 'know', 'Tom', 'is', 'a', 'tough', 'guy.'], ['He', 'arrived', 'here', 'last', 'night.'], ['They', 'live', 'in', 'tents.'], ["Don't", 'you', 'remember', 'my', 'name?'], ["How's", 'your', 'old', 'lady', 'doing?'], ['I', "don't", 'want', 'to', 'do', 'this,', 'but', 'you', 'leave', 'me', 'no', 'choice.'], ['I', 'walked', 'to', 'school.'], ['I', 'think', "I've", 'seen', 'enough.'], ['I', 'spent', 'two', 'hours', 'playing', 'the', 'piano.'], ['You', 'must', 'tell', 'me.'], ['He', 'has', 'enough', 'ability', 'to', 'manage', 'a', 'business.'], ["I'm", 'a', 'lawyer.'], ['I', 'knew', 'we', 'were', 'going', 'to', 'lose.'], ['You', 'had', 'better', 'ask', 'the', 'doctor', 'for', 'advice.'], ['Where', 'are', 'my', 'parents?'], ['Tom', 'is', 'the', 'boy', 'on', 'the', 'right.'], ['Did', 'you', 'go', 'to', "Tom's", 'party', 'last', 'Saturday?'], ['The', 'room', 'smelled', 'like', 'someone', 'had', 'been', 'smoking.'], ["You've", 'done', 'a', 'terrific', 'job.'], ["Don't", 'give', 'it', 'to', 'him.', 'Give', 'it', 'to', 'me.'], ['Many', 'economists', 'are', 'ignorant', 'of', 'that', 'fact.'], ['That', 'boy', 'is', 'his', 'brother.'], ['I', "don't", 'think', 'this', 'is', 'a', 'good', 'idea.'], ['The', 'event', 'is', 'still', 'fresh', 'in', 'our', 'memory.'], ['The', 'city', 'is', 'gaining', 'popularity', 'as', 'a', 'major', 'tourist', 'destination.'], ['Have', 'you', 'already', 'read', 'this', 'book?'], ['Thanks', 'for', 'the', 'encouragement.'], ['You', 'look', 'like', 'a', 'cop.'], ["You'll", 'like', 'it,', 'believe', 'me.'], ['Do', 'you', 'want', 'another', 'one', 'of', 'these?'], ['"How', 'about', 'a', 'cup', 'of', 'coffee?"', '"I\'d', 'like', 'to,', 'but', 'I', 'have', 'a', 'previous', 'engagement."'], ['He', 'gives', 'plain,', 'simple', 'explanations.'], ['The', 'rain', 'lasted', 'three', 'days.'], ['I', 'hope', "you'll", 'soon', 'get', 'well.'], ['Tom', 'got', 'these', 'tickets', 'for', 'free.'], ['My', 'father', 'is', 'fifty', 'years', 'old.'], ['Can', 'you', 'help', 'me', 'on', 'this', 'one?'], ['She', 'is', 'looking', 'for', 'her', 'missing', 'wallet.'], ['Each', 'time', 'I', 'see', 'Mary,', 'I', 'learn', 'something', 'new', 'and', 'important', 'from', 'her.'], ['We', 'were', 'terrified.'], ['Can', 'you', 'help', 'me', 'move', 'the', 'sofa?'], ['Father', 'bought', 'me', 'the', 'book.'], ['He', 'put', 'a', 'stamp', 'on', 'the', 'letter.'], ['I', 'trusted', 'you.'], ["What's", 'that', 'your', 'wearing?'], ['Have', 'you', 'ever', 'spoken', 'to', 'Tom', 'in', 'French?'], ['I', 'have', 'a', 'date', 'tomorrow', 'night.'], ['Which', 'of', 'these', 'rackets', 'is', 'yours?'], ['She', 'is', 'my', 'classmate.'], ["It's", 'very', 'hard', 'to', 'get', 'rid', 'of', 'bad', 'habits.'], ['That', 'scenario', 'is', 'unlikely.'], ['Where', 'do', 'they', 'come', 'from?'], ['Almost', 'a', 'third', 'of', 'the', 'gunshot', 'victims', 'were', 'teenagers.'], ['We', 'were', 'very', 'tired.'], ['All', 'the', 'passengers', 'got', 'seasick', 'during', 'the', 'storm.'], ['Everything', 'comes', 'to', 'those', 'who', 'wait.'], ['They', 'both', 'lived', 'in', 'Boston.'], ["We'll", 'finish', 'later.'], ['I', 'thought', "you'd", 'left.'], ['It', 'is', 'none', 'the', 'less', 'true.'], ['I', "can't", 'remember', 'his', 'explanation.'], ['I', "don't", 'want', 'to', 'go.'], ["There's", 'no', 'denying', 'the', 'harmful', 'effects', 'of', 'smoking.'], ['He', 'studied', 'military', 'history.'], ['You', 'saved', 'us', 'all.'], ['She', 'was', 'astonishingly', 'beautiful.'], ['The', 'storm', 'is', 'getting', 'worse.'], ['Do', 'you', 'mean', 'us?'], ['Does', 'this', 'actually', 'make', 'you', 'happy?'], ['I', "can't", 'even', 'remember', 'what', 'Tom', 'looks', 'like.'], ['Why', "don't", 'you', 'pull', 'over?'], ["They're", 'coming', 'for', 'us.'], ['I', 'have', 'some', 'personal', 'business', 'to', 'take', 'care', 'of.'], ['I', "don't", 'make', 'the', 'rules.'], ['She', 'asked', 'me', 'what', 'had', 'become', 'of', 'him,', 'but', 'I', "didn't", 'know.'], ["That's", 'not', 'your', 'knife.'], ['Who', 'are', 'you', 'to', 'tell', 'us', 'we', "can't", 'go?'], ['Do', 'you', 'know', 'my', 'name?'], ['They', 'want', 'to', 'know', "what's", 'happening.'], ['She', 'advised', 'him', 'to', 'drink', 'more', 'milk.'], ["I'm", 'not', 'in', 'a', 'mood', 'to', 'go', 'out.'], ['The', "Queen's", 'crown', 'was', 'made', 'of', 'gold.'], ["Here's", 'your', 'milk.'], ['You', 'are', 'the', 'one.'], ["It's", 'more', 'trouble', 'than', "it's", 'worth.'], ['Take', 'anything', 'you', 'want.'], ['She', 'came', 'back', 'ten', 'minutes', 'after', 'the', 'explosion.'], ['Are', 'you', 'free', 'on', 'Tuesday?'], ['When', 'does', 'it', 'arrive?'], ['They', 'do', 'not', 'waste', 'anything', 'nor', 'throw', 'anything', 'away.'], ["Don't", 'worry.', "Everything's", 'OK.'], ['What', 'do', 'you', 'need?'], ['They', 'arrived', 'there', 'before', 'dawn.'], ['You', "can't", 'just', 'change', 'your', 'mind.'], ['Do', 'you', 'want', 'me', 'to', 'tell', 'you', 'why?'], ['I', 'knew', 'I', "should've", 'stayed', 'at', 'home.'], ['Just', "don't", 'forget', 'this.'], ["I'm", 'nervous', 'and', 'excited.'], ['You', "don't", 'have', 'what', 'it', 'takes', 'to', 'be', 'a', 'leader.'], ['Where', 'can', 'I', 'buy', 'a', 'ticket?'], ['I', 'got', 'out', 'of', 'bed', 'and', 'had', 'a', 'good', 'stretch.'], ['Why', 'wait', 'for', 'Christmas?'], ['If', 'you', "don't", 'want', 'to', 'miss', 'the', 'train,', "you'd", 'better', 'hurry.'], ['She', 'was', 'unconscious', 'for', 'three', 'days.'], ['How', 'did', 'you', 'know', 'my', 'name?'], ['He', 'did', 'a', 'good', 'job.'], ["I'm", 'proud', 'of', 'you', 'all.'], ['She', 'was', 'wearing', 'a', 'strange', 'hat.'], ['Beer', 'contains', 'hops.'], ['This', 'is', 'our', 'last', 'day', 'here.'], ['He', 'is', 'late.'], ['Tom', 'drank', 'a', 'glass', 'of', 'wine.'], ['We', 'heard', 'something', 'moving', 'in', 'the', 'next', 'room.'], ['Tom', 'is', 'going', 'to', 'dump', 'Mary.'], ['I', "don't", 'see', 'your', 'point.'], ['Tom', 'watches', 'TV', 'all', 'the', 'time.'], ['Tom', 'told', 'me', 'he', 'was', 'going', 'to', 'sell', 'his', 'house.'], ['She', 'went', 'inside.'], ['I', 'became', 'acquainted', 'with', 'your', 'father', 'yesterday.'], ['We', 'all', 'wished', 'for', 'peace.'], ['I', 'cannot', 'lift', 'this', 'stone.'], ['How', 'can', 'you', 'be', 'so', 'callous?'], ['He', 'is', 'generous', 'to', 'his', 'friends.'], ['Do', 'you', 'deny', 'that', 'you', 'went', 'there?'], ['Tom', 'hopes', 'to', 'inherit', 'a', 'lot', 'of', 'money', 'when', 'his', 'mother', 'passes', 'away.'], ['Are', 'there', 'earthquakes', 'in', 'Germany?'], ['I', "don't", 'like', 'the', 'tie', 'that', "you're", 'wearing.'], ['I', "don't", 'care', 'about', 'the', 'money.'], ['The', 'car', "he's", 'driving', 'is', 'not', 'his.'], ['We', 'all', 'agree', 'with', 'you.'], ['There', 'seems', 'to', 'be', 'something', 'peculiar', 'about', 'the', 'boy.'], ['I', 'lost', 'that', 'argument.'], ['I', 'thought', 'you', 'did', 'fairly', 'well.'], ["I'm", 'loved', 'by', 'my', 'parents.'], ['That', 'plane', 'is', 'enormous!'], ['Tom', 'is', 'approximately', 'the', 'same', 'weight', 'as', 'Mary.'], ['She', 'decided', 'not', 'to', 'go.'], ['He', 'has', 'a', 'video.'], ["I'm", 'not', 'willing', 'to', 'cook', 'dinner', 'for', 'twenty', 'people.'], ["They're", 'all', 'waiting.'], ['He', 'said', 'that', 'he', 'had', 'been', 'in', 'California', 'for', 'ten', 'years.'], ["I'm", 'one', 'of', 'you.'], ['Americans', 'eat', 'special', 'foods', 'on', 'Thanksgiving.'], ['You', "can't", 'escape', 'from', 'reality.'], ['I', 'have', 'a', 'proposal.'], ['I', 'love', 'a', 'happy', 'ending.'], ['Is', 'it', 'true', 'Tom', "can't", 'read', 'or', 'write?'], ['You', "didn't", 'let', 'me', 'finish.'], ['Jobs', 'are', 'hard', 'to', 'come', 'by', 'these', 'days.'], ['Tom', 'advised', 'Mary', 'not', 'to', 'believe', 'everything', 'she', 'reads', 'on', 'the', 'Web.'], ["I've", 'worked', 'as', 'a', 'waiter', 'for', 'three', 'years.'], ["I'll", 'never', 'leave', 'you', 'alone', 'again.'], ["I've", 'never', 'been', 'in', 'love', 'before.'], ['I', "didn't", 'know', 'Tom', 'could', 'do', 'that.'], ['Tom', 'will', 'be', 'famous.'], ['The', 'examples', 'in', 'this', 'dictionary', 'are', 'easy', 'to', 'understand.'], ['The', 'city', 'supplied', 'the', 'needy', 'with', 'blankets.'], ['I', 'want', 'you', 'to', 'be', 'my', 'manager.'], ['Can', 'I', 'reserve', 'a', 'flight', 'to', 'Chicago?'], ['I', 'ate', 'lunch', 'with', 'Tom.'], ['That', 'would', 'be', 'quite', 'acceptable.'], ['Are', 'you', 'free', 'this', 'weekend?'], ['This', 'table', 'is', 'expensive.'], ["She's", 'an', 'only', 'child.'], ['My', 'husband', 'is', 'an', 'expert', 'when', 'it', 'comes', 'to', 'cooking', 'Chinese', 'food.'], ['Did', 'you', 'go', 'anywhere', 'during', 'the', 'summer', 'vacation?'], ['Please', 'explain', 'how', 'to', 'get', 'there.'], ['Without', 'your', 'help,', 'we', "wouldn't", 'be', 'able', 'to', 'carry', 'out', 'our', 'plan.'], ['A', 'frog', 'came', 'out', 'of', 'the', 'water.'], ['It', 'will', 'become', 'much', 'warmer', 'in', 'March.'], ['Fried', 'food', 'usually', "doesn't", 'agree', 'with', 'me.'], ["There's", 'only', 'room', 'for', 'one.'], ['I', "couldn't", 'walk.'], ['I', 'was', 'going', 'to', 'use', 'that.'], ['I', 'think', "you've", 'done', 'enough.'], ['Will', 'you', 'let', 'me', 'know', 'when', 'he', 'comes?'], ["They're", 'cold.'], ['I', 'spent', 'the', 'whole', 'week', 'working', 'on', 'that', 'report.'], ['I', 'never', 'thought', "I'd", 'see', 'your', 'face', 'again.'], ['I', 'tried', 'to', 'tell', 'you.'], ['I', 'love', 'to', 'party.'], ["I'll", 'go', 'tell', 'the', 'others', 'what', 'we', 'need', 'to', 'do.'], ['All', 'right,', 'give', 'me', 'a', 'kiss.'], ['Tell', 'me', 'why', 'you', 'think', 'that.'], ['When', 'will', 'his', 'new', 'novel', 'be', 'published?'], ['The', 'murderer', 'confessed', 'his', 'crime.'], ['I', 'want', 'you', 'to', 'do', 'this.'], ['They', 'come', 'from', 'the', 'same', 'town.'], ['Can', 'you', 'help', 'me', 'with', 'the', 'washing', 'up?'], ['Why', "don't", 'you', 'tell', 'me', 'how', 'you', 'think', 'it', 'happened?'], ['We', 'must', 'decide.'], ['He', 'was', 'standing', 'at', 'the', 'top', 'of', 'the', 'mountain.'], ['My', 'sister', 'is', 'very', 'fond', 'of', 'children.'], ["You'll", 'find', 'a', 'job.'], ["That's", 'good', 'for', 'a', 'first', 'try.'], ['I', "don't", 'believe', 'a', 'word', 'Tom', 'says.'], ['We', 'will', 'not', 'fail.'], ["It's", 'your', 'money.'], ['Do', 'you', 'know', 'what', 'to', 'do', 'if', "there's", 'a', 'fire', 'in', 'the', 'building?'], ['How', 'come', 'you', "don't", 'know', 'this?'], ['Have', 'you', 'seen', 'this', 'video?'], ["That's", 'acceptable.'], ['He', 'had', 'to', 'share', 'a', 'bedroom', 'with', 'his', 'brother.'], ['Our', 'only', 'daughter', 'died', 'of', 'cancer.'], ['It', 'looks', 'great', 'so', 'far.'], ['They', 'chose', 'me', 'for', 'that.'], ['Would', 'you', 'like', 'to', 'take', 'part', 'in', 'the', 'festival?'], ['Was', 'there', 'a', 'lot', 'of', 'traffic?'], ["I'm", 'starting', 'to', 'feel', 'desperate.'], ['Did', 'you', 'get', 'fired', 'from', 'your', 'last', 'job?'], ['Lincoln', 'died', 'in', '1865.'], ['I', 'am', 'not', 'always', 'free', 'on', 'Sundays.'], ['They', 'were', 'peaceful.'], ['We', 'used', 'emergency', 'measures', 'to', 'revive', 'the', 'cardiac', 'arrest', 'patient.'], ['He', 'had', 'taken', 'care', 'of', 'himself.'], ['I', 'know', 'what', 'they', 'are', 'thinking.'], ['Can', 'I', 'talk', 'to', 'you', 'for', 'a', 'minute?'], ['Tom', 'left', 'his', 'keys', 'on', 'the', 'table.'], ['They', 'were', 'on', 'vacation', 'last', 'October.'], ['She', 'will', 'be', 'there', 'by', 'now.'], ['We', 'need', 'to', 'take', 'this', 'very', 'seriously.'], ['You', 'are', 'blinded', 'by', 'love.'], ['Tom', 'is', 'my', 'only', 'real', 'friend.'], ["I'm", 'not', 'at', 'all', 'interested', 'in', 'physics.'], ['I', 'tried', 'to', 'act', 'natural.'], ["You're", 'the', 'most', 'beautiful', 'girl', "I've", 'ever', 'seen.'], ['I', 'hope', 'she', 'will', 'get', 'well.'], ['The', 'tree', 'grew', 'very', 'tall.'], ['You', 'may', 'pay', 'in', 'advance', 'for', 'your', 'order.'], ["I'm", 'not', 'sure', 'if', "it's", 'a', 'compliment', 'or', 'an', 'insult.'], ["I'm", 'doing', 'this', 'for', 'you.'], ['They', 'were', 'so', 'happy', 'together.'], ['I', 'think', "it's", "Tom's", 'motorcycle.'], ['I', "can't", 'wait', 'to', 'go', 'to', 'college.'], ['Is', 'this', 'guy', 'bothering', 'you?'], ['You', 'look', 'terrific.'], ['Do', 'you', 'want', 'to', 'bet', 'on', 'that?'], ['He', 'arrived', 'at', 'the', 'station.'], ['Keep', 'an', 'eye', 'on', 'Tom.'], ['I', 'think', "I'd", 'like', 'to', 'be', 'your', 'friend.'], ['Canada', 'is', 'really', 'big', 'and', 'there', 'are', 'lots', 'of', 'people.'], ['Stop', 'shouting.'], ["I'm", 'hit!'], ['You', 'look', 'good', 'in', 'black.'], ['Do', 'you', 'know', 'what', 'time', 'that', 'supermarket', 'closes?'], ['I', "didn't", 'know', 'Tom', 'had', 'agreed', 'to', 'do', 'that.'], ['I', "can't", 'talk', 'right', 'now.', 'I', 'need', 'to', 'go.'], ['Tom', 'died', 'in', 'prison.'], ['What', 'is', 'your', 'astrological', 'sign?'], ['Whether', 'we', 'go', 'or', 'not', 'depends', 'on', 'the', 'weather.'], ['I', 'know', 'Tom', 'is', 'frantic.'], ['She', 'is', 'very', 'thoughtful', 'and', 'patient.'], ['"The', 'good', 'die', 'young"', 'is', 'an', 'old', 'saying', 'which', 'may', 'or', 'may', 'not', 'be', 'true.'], ["I'm", 'not', 'insane.'], ['Speak', 'clearly.'], ['At', 'the', 'next', 'intersection,', 'take', 'a', 'right.'], ["I'm", 'at', 'your', 'disposal.'], ['These', 'plums', 'are', 'ripe.'], ['It', 'is', 'time', 'to', 'go', 'to', 'bed.'], ['The', 'apples', 'he', 'sent', 'me', 'were', 'delicious.'], ["Don't", 'tease', 'me.'], ['I', 'have', 'tried', 'everything.'], ['All', 'you', 'have', 'to', 'do', 'is', 'try', 'your', 'best.'], ['Are', 'you', 'on', 'Facebook?'], ['How', 'could', 'we', 'not', 'win?'], ['I', 'think', "it's", 'time', 'for', 'me', 'to', 'abandon', 'that', 'idea.'], ['Turn', 'left.'], ["I'm", 'not', 'denying', 'it.'], ['What', 'time', 'will', 'you', 'be', 'back?'], ['The', 'vote', 'is', 'unanimous.'], ['I', 'come', 'from', 'Saitama.'], ['Tom', 'says', "he's", 'having', 'trouble', 'coping', 'with', 'the', 'stress.'], ['I', 'like', 'your', 'personality.'], ['You', 'need', 'to', 'be', 'prepared.'], ['Did', 'you', 'speak', 'at', 'all?'], ['I', "don't", 'know', 'what', 'you', 'want', 'me', 'to', 'say.'], ['God', 'knows', 'we', 'did', 'everything', 'we', 'could.'], ['This', 'is', 'the', 'real', 'world.'], ['He', 'decided', 'to', 'feed', 'his', 'dog', 'the', 'rabbit', 'that', 'he', 'had', 'shot', 'earlier', 'that', 'day.'], ['The', 'cage', 'is', 'empty.'], ['You', 'really', 'should', 'try', 'this', 'cake.'], ["Don't", 'you', 'want', 'something', 'to', 'eat?'], ['The', 'restrooms', 'are', 'downstairs.'], ['This', 'letter', 'is', 'for', 'you.'], ['I', 'thought', 'that', 'you', 'could', 'speak', 'French.'], ['You', 'have', 'no', 'heart.'], ['I', 'really', "don't", 'want', 'to', 'do', 'that.'], ['Maybe', 'Tom', 'was', 'sick.'], ["This'll", 'be', 'different.'], ['Tom', 'said', 'that', 'he', 'thought', 'Mary', 'could', 'probably', 'do', 'that.'], ['What', 'time', 'do', 'you', 'leave', 'for', 'school?'], ['How', 'do', 'they', 'seem', 'to', 'you?'], ['How', 'do', 'you', 'know', 'that', 'light', 'travels', 'faster', 'than', 'sound?'], ['My', 'boss', 'is', 'very', 'cheerful', 'today.'], ['Tom', 'is', 'voting.'], ['When', 'did', 'you', 'buy', 'that?'], ['Does', 'anyone', 'have', 'a', 'lighter?'], ['Where', 'is', 'the', 'south', 'terminal?'], ['He', 'woke', 'up', 'in', 'the', 'middle', 'of', 'the', 'night.'], ['There', 'are', 'many', 'different', 'ways', 'of', 'doing', 'this.'], ['I', "don't", 'want', 'to', 'call', 'the', 'police.'], ['How', 'many', 'calories', 'are', 'in', 'this', 'dish?'], ['Everyone', 'is', 'looking', 'at', 'Tom.'], ['Would', 'you', 'please', 'close', 'that', 'window?'], ['He', 'never', 'got', 'a', 'holiday.'], ['Who', 'taught', 'you', 'how', 'to', 'do', 'this?'], ['I', 'thought', 'you', 'were', 'working.'], ['Having', 'worked', 'on', 'the', 'farm', 'all', 'day', 'long,', 'he', 'was', 'completely', 'tired', 'out.'], ["I've", 'been', 'following', 'you.'], ['I', 'have', 'something', 'urgent', 'to', 'attend', 'to.'], ['There', 'is', 'a', 'windmill', 'on', 'the', 'hill.'], ["You're", 'very', 'flexible.'], ['I', 'think', "you'd", 'better', 'go.'], ["We're", 'missing', 'something', 'here.'], ['Why', "don't", 'we', 'just', 'sit', 'here', 'and', 'talk?'], ["I'll", 'take', 'you', 'anywhere', 'you', 'want', 'to', 'go.'], ['I', 'need', 'to', 'go', 'get', 'some', 'money', 'out', 'of', 'the', 'bank.'], ['I', "don't", 'want', 'him', 'to', 'touch', 'me.'], ['I', 'wish', 'he', 'were', 'here', 'now.'], ['Tom', 'taught', 'himself', 'how', 'to', 'ski.'], ["You're", 'nuts!'], ['Tom', 'is', 'very', 'easy', 'to', 'work', 'with.'], ['How', 'does', 'it', 'work?'], ['He', 'laid', 'on', 'his', 'back', 'and', 'looked', 'up', 'at', 'the', 'sky.'], ['Learning', 'a', 'foreign', 'language', 'is', 'fun.'], ['My', 'house', 'faces', 'the', 'sea.'], ['Tom', 'only', 'mentioned', 'Mary', 'twice.'], ['The', 'king', 'once', 'lived', 'in', 'that', 'palace.'], ['I', 'have', 'a', 'few', 'friends', 'who', 'speak', 'French', 'well.'], ["There's", 'someone', "I'd", 'like', 'you', 'to', 'meet.'], ['You', 'never', 'cease', 'to', 'surprise', 'me.'], ['If', 'Tom', 'finds', 'out', 'I', 'told', 'you', 'this,', "he'll", 'kill', 'me.'], ['We', 'have', 'two', 'television', 'sets.'], ['Tom', 'asked', 'me', 'to', 'bring', 'my', 'own', 'eating', 'utensils.'], ['I', 'really', 'want', 'to', 'see', 'you.'], ['Everybody', 'left.'], ['I', 'thought', 'I', 'was', 'alone.'], ['A', 'passport', 'is', 'something', 'you', 'cannot', 'do', 'without', 'when', 'you', 'go', 'to', 'a', 'foreign', 'country.'], ['That', 'worked', 'pretty', 'well.'], ['The', 'post', 'office', 'is', 'the', 'brown', 'building.'], ["You've", 'misspelled', 'my', 'name.'], ['Did', 'you', 'find', 'anything?'], ['She', 'kept', 'various', 'kinds', 'of', 'pets.'], ['Why', 'do', 'you', 'need', 'a', 'doctor?'], ['I', 'have', 'already', 'read', "today's", 'paper.'], ['Tom', "didn't", 'want', 'to', 'listen', 'to', 'reason.'], ['This', 'car', 'runs', 'on', 'alcohol.'], ['I', 'bought', 'a', 'few', 'eggs', 'and', 'a', 'little', 'milk.'], ['They', 'stopped', 'talking.'], ['Wood', 'floats,', 'but', 'iron', 'sinks.'], ['Give', 'me', 'a', 'table', 'for', 'two', 'near', 'the', 'window.'], ['I', 'found', 'a', 'job.'], ['I', 'wonder', 'why', 'tennis', 'is', 'played', 'in', 'mini-skirts.'], ['I', 'can', 'swim', 'as', 'well', 'as', 'you.'], ['How', 'many', 'do', 'you', 'have', 'in', 'stock?'], ['Are', 'all', 'these', 'books', 'yours?'], ['Tom', 'was', 'scared', 'to', 'death.'], ['I', 'can', 'seldom', 'find', 'time', 'for', 'reading.'], ['It', 'is', 'true', 'that', 'he', 'is', 'young,', 'but', 'he', 'is', 'clever.'], ["I've", 'heard', 'quite', 'a', 'lot', 'about', 'you.'], ["That's", 'lame.'], ['I', 'eventually', 'want', 'to', 'be', 'fluent', 'in', 'German.'], ['How', 'did', 'they', 'find', 'out?'], ['For', 'a', 'long', 'time,', 'I', 'used', 'to', 'believe', 'the', 'same', 'thing', 'you', 'do.'], ['The', 'police', 'chief', 'resigned.'], ["You're", 'upset.'], ['I', "haven't", 'eaten', 'French', 'food', 'since', 'I', 'left', 'France.'], ['Who', 'needs', 'a', 'drink?'], ['I', 'know', 'a', 'lot', 'of', 'people', 'who', 'can', 'speak', 'French.'], ['Try', 'to', 'hold', 'it', 'together.'], ['She', 'was', 'kind', 'enough', 'to', 'take', 'me', 'to', 'the', 'hospital.'], ['This', 'is', 'not', 'a', 'coincidence.'], ['It', 'was', 'a', 'bomb.'], ['Tom', 'should', 'ask', 'Mary', 'how', 'to', 'do', 'it.'], ['This', 'is', 'permanent.'], ["That's", 'open', 'to', 'debate.'], ['Your', 'sacrifice', 'was', 'not', 'in', 'vain.'], ['Tom,', "I've", 'got', 'a', 'surprise', 'for', 'you.'], ['I', 'just', 'want', 'to', 'make', 'sure', 'this', "isn't", 'poison.'], ['Who', 'unplugged', 'the', 'TV?'], ['They', 'formed', 'a', 'swim', 'team.'], ["I'm", 'letting', 'you', 'go.'], ["I'm", 'going', 'to', 'do', 'you', 'a', 'favor.'], ['I', 'need', 'to', 'make', 'a', 'few', 'calls.'], ['Tom', 'is', 'being', 'held', 'prisoner', 'somewhere.'], ['Tom', "hasn't", 'changed', 'at', 'all.'], ['We', 'must', 'conform', 'to', 'the', 'rules.'], ['Check', 'out', 'these', 'stats.'], ['He', 'looks', 'old', 'for', 'his', 'age.'], ['Please', 'do', 'it', 'quickly.'], ['Happy', 'New', 'Year!'], ["You'll", 'have', 'to', 'answer', 'for', 'your', 'behavior.'], ["You're", 'too', 'tense.'], ['Do', 'you', 'think', "it's", 'wise', 'to', 'wear', 'your', 'uniform', 'today?'], ["I've", 'been', 'looking', 'for', 'them', 'for', 'more', 'than', 'one', 'hour.'], ['I', 'really', 'liked', 'what', 'you', 'cooked', 'for', 'me.'], ["Don't", 'do', 'too', 'many', 'things', 'at', 'the', 'same', 'time.'], ['How', 'many', 'years', 'has', 'it', 'been', 'since', 'I', 'last', 'saw', 'you?'], ['Keep', 'off', 'the', 'grass!'], ['You', "don't", 'need', 'to', 'stand', 'up.'], ['In', 'their', 'case,', 'it', 'was', 'love', 'at', 'first', 'sight.'], ['You', 'are', 'twice', 'as', 'strong', 'as', 'I', 'am.'], ['I', 'never', 'loved', 'you.'], ['Paris', 'is', 'the', 'capital', 'of', 'France.'], ['Tom', "wouldn't", 'take', 'my', 'call.'], ['I', 'wish', 'I', 'were', 'a', 'bird.'], ['I', 'thought', 'a', 'bunch', 'of', 'people', 'would', 'go', 'water', 'skiing', 'with', 'us,', 'but', 'absolutely', 'no', 'one', 'else', 'showed', 'up.'], ['He', 'whispered', 'sweet', 'nothings', 'into', 'her', 'ear.'], ['That', 'may', 'not', 'be', 'so', 'easy.'], ['I', 'woke', 'up', 'at', 'sunrise.'], ['I', 'hope', "I'm", 'not', 'interrupting.'], ['They', 'did', 'a', 'good', 'job.'], ['This', 'book', 'is', 'hard', 'for', 'me', 'to', 'read.'], ['We', 'know', 'it', 'works.'], ['It', 'was', 'obvious', 'to', 'everyone', 'that', 'the', 'marriage', 'would', 'sooner', 'or', 'later', 'end', 'in', 'divorce.'], ['Nobody', 'told', 'me', 'you', 'were', 'here.'], ['We', 'could', 'tell', 'Tom', 'was', 'scared.'], ['Tom', 'waited', 'for', 'more', 'than', 'an', 'hour.'], ['I', 'think', "that's", 'better.'], ['The', 'man', 'driving', 'the', 'bus', 'is', 'a', 'good', 'friend', 'of', 'mine.'], ['Are', 'you', 'eating', 'lunch?'], ['He', 'pulled', 'my', 'shirt.'], ['Nobody', 'in', 'my', 'family', 'can', 'do', 'that.'], ['I', 'let', 'him', 'spend', 'the', 'night', 'in', 'my', 'house.'], ['Did', 'you', 'see', 'what', 'Tom', 'just', 'did?'], ['What', 'can', 'you', 'do?'], ['They', 'were', 'satisfied', 'with', 'the', 'result.'], ["Don't", 'say', 'such', 'things.'], ['I', 'think', 'she', 'will', 'divorce', 'him.'], ['Will', 'you', 'help', 'them?'], ['Close', 'the', 'door', 'behind', 'you.'], ['I', 'lost', 'your', 'number.'], ['Tom', 'says', 'that', "he's", 'never', 'tried', 'eating', 'dog', 'food.'], ['I', 'think', 'you', 'know', 'what', 'has', 'to', 'be', 'done.'], ['This', 'one', 'is', 'all', 'yours.'], ['The', 'cost', 'of', 'living', 'has', 'increased', 'drastically.'], ['I', "haven't", 'yet', 'told', 'Tom', 'about', 'that.'], ['She', 'was', 'barred', 'from', 'the', 'club.'], ['He', 'knows', 'my', 'wife.'], ['I', "can't", 'stand', 'the', 'cold.'], ['Do', 'you', 'think', "that'll", 'work?'], ['Do', 'you', 'have', 'a', 'copy?'], ["I'm", 'going', 'to', 'figure', 'this', 'out.'], ['He', 'is', 'suffering', 'from', 'a', 'serious', 'illness.'], ["I'm", 'nervous.'], ['Tom', 'was', 'able', 'to', 'do', 'what', 'the', 'rest', 'of', 'us', "weren't", 'able', 'to', 'do.'], ['He', "didn't", 'dare', 'say', 'anything.'], ["There's", 'a', 'rumor', 'in', 'the', 'air', 'that', 'the', 'firm', 'is', 'going', 'into', 'bankruptcy.'], ["We're", 'best', 'friends.'], ['Where', 'are', 'your', 'gloves?'], ['Tom', 'has', 'plans.'], ["Don't", 'forget', 'who', 'you', 'are.'], ['She', 'stammers', 'when', 'she', 'feels', 'nervous.'], ['Having', 'finished', 'all', 'her', 'housework,', 'she', 'sat', 'down', 'on', 'the', 'sofa', 'to', 'watch', 'television.'], ["There's", 'something', 'I', 'feel', 'you', 'should', 'know.'], ['We', 'have', 'finished', 'lunch.'], ["I'm", '99%', 'sure.'], ['Can', 'I', 'see', 'the', 'menu?'], ['Is', 'your', 'mother', 'here?'], ['I', 'know', 'you', 'like', 'chocolate.'], ["I'll", 'give', 'you', 'money', 'if', 'you', 'need', 'some.'], ["I'm", 'not', 'going', 'to', 'argue', 'with', 'you.'], ['The', 'reason', 'for', 'this', 'is', 'obvious.'], ["I'll", 'come', 'back.'], ['You', 'can', 'take', 'a', 'horse', 'to', 'water,', 'but', 'you', "can't", 'make', 'him', 'drink.'], ['Gasoline', 'is', 'sold', 'by', 'the', 'liter.'], ['How', 'do', 'I', 'know', "you'll", 'keep', 'your', 'word?'], ['If', 'you', 'eat', 'too', 'much,', "you'll", 'become', 'fat.'], ['What', 'will', 'you', 'have?'], ['I', "don't", 'know', 'who', 'did', 'that.'], ['The', 'moon', 'is', 'shining.'], ['I', 'just', 'got', 'here.'], ['When', 'I', 'woke', 'up', 'today,', 'I', 'yawned,', 'stretched,', 'rubbed', 'the', 'sleep', 'out', 'of', 'my', 'eyes,', 'and', 'put', 'on', 'a', 'pair', 'of', 'slippers.'], ['The', 'heater', 'is', 'warming', 'up', 'the', 'room.'], ['I', 'know', 'you', 'feel', 'lonely.'], ['Preventive', 'measures', 'are', 'much', 'more', 'effective', 'than', 'the', 'actual', 'treatment.'], ["I'm", 'hoarse', 'from', 'yelling', 'so', 'much.'], ['You', "could've", 'killed', 'somebody.'], ['Violence', 'increased', 'soon', 'afterward.'], ["I'm", 'a', 'normal', 'girl.'], ['She', 'suddenly', 'kissed', 'me.'], ["I'll", 'call', 'you', 'after', 'lunch.'], ['You', 'knew', 'I', 'was', 'married.'], ['This', 'pen', "doesn't", 'write', 'well.'], ['How', 'many', 'names', 'were', 'on', 'the', 'list?'], ['I', 'guess', "I've", 'gotten', 'lazy.'], ['Does', 'this', 'ring', 'a', 'bell?'], ['Tom', 'will', 'probably', 'wait', 'for', 'you.'], ['All', 'of', 'my', 'children', 'can', 'speak', 'French.'], ['What', 'is', 'Tom', 'doing', 'here?', 'I', 'thought', 'he', 'was', 'in', 'Europe.'], ["It's", 'a', 'pretty', 'smart', 'decision.'], ['Are', 'you', 'sure', 'about', 'that?'], ['I', 'think', 'about', 'her', 'often.'], ['Am', 'I', 'talented?'], ['The', 'game', 'is', 'not', 'over.'], ['Tom', 'hung', 'up', 'his', 'coat.'], ['Has', 'anyone', 'asked', 'for', 'me?'], ['I', 'lost', 'my', 'wife', 'last', 'year.'], ['What', 'time', 'and', 'where', 'could', 'we', 'meet?'], ['Do', 'you', 'mean', "you're", 'giving', 'up?'], ['I', 'will', 'go', 'there', 'on', 'foot', 'or', 'by', 'bicycle', 'next', 'time.'], ['She', 'rarely', 'talked', 'to', 'anybody.'], ['I', "don't", 'ever', 'want', 'to', 'see', 'you', 'again.'], ['There', 'was', 'no', 'water', 'in', 'the', 'well.'], ['By', 'the', 'way,', 'I', 'have', 'something', 'to', 'tell', 'you.'], ['Why', "don't", 'you', 'just', 'buy', 'a', 'new', 'one?'], ['You', 'will', 'miss', 'the', 'train.'], ['It', 'looks', 'like', "we're", 'going', 'to', 'have', 'a', 'white', 'Christmas', 'this', 'year.'], ['Tom', 'is', 'teaching', 'French.'], ['I', 'just', 'want', 'you', 'to', 'know', "I'm", 'sorry.'], ['Are', 'you', 'allergic', 'to', 'any', 'medicine?'], ['We', 'broke', 'up.'], ['Please', 'fix', 'my', 'toy.'], ['She', 'quietly', 'entered', 'the', 'room.'], ['Is', 'she', 'your', 'only', 'daughter?'], ['This', "book's", 'new.'], ['I', 'want', 'you', 'to', 'keep', 'your', 'promise.'], ['Tom', 'reloaded', 'his', 'gun.'], ['They', 'agreed', 'to', 'start', 'early.'], ['I', 'want', 'to', 'cut', 'down', 'on', 'the', 'time', 'it', 'takes', 'to', 'process', 'records.'], ['Could', 'you', 'take', 'this,', 'please?'], ['I', 'always', 'drink', 'a', 'glass', 'of', 'milk', 'before', 'going', 'to', 'sleep.'], ['My', 'birthday', 'falls', 'on', 'Sunday.'], ["I'm", 'untalented.'], ['You', 'gotta', 'get', 'more', 'organized.'], ["I'm", 'only', 'doing', 'this', 'for', 'your', 'own', 'good.'], ["It's", 'a', 'hassle', 'trying', 'to', 'decide', 'what', 'to', 'wear', 'to', 'the', 'party.'], ['Are', 'you', 'nervous?'], ["There's", 'nothing', 'wrong', 'with', 'this', 'bicycle.'], ['Make', 'way,', 'please.'], ['He', 'is', 'a', 'member', 'of', 'the', 'parish', 'committee.'], ['Tom', 'had', 'a', 'vision.'], ['We', 'know', 'it', 'was', 'you', 'that', 'broke', 'the', 'window.'], ['Did', 'you', 'know', 'this', 'was', 'coming', 'down?'], ['The', 'sentence', 'is', 'not', 'grammatically', 'accurate.'], ['You', 'misunderstood', 'me.'], ['I', 'am', 'lazy.'], ['She', 'is', 'always', 'smoking.'], ['Tom', 'likes', 'writing.'], ['We', 'think', 'that', 'he', 'will', 'come.'], ['He', 'speaks', 'French.'], ['What', 'do', 'you', 'like', 'to', 'eat?'], ['Why', 'is', 'my', 'sister', 'so', 'mean', 'to', 'me?'], ["I'm", 'tired', 'of', 'hearing', 'you', 'moan', 'and', 'groan.'], ['How', 'did', 'I', 'look?'], ['They', 'really', 'slept', 'on', 'the', 'floor.'], ["Don't", 'pay', 'any', 'attention', 'to', 'what', 'people', 'say.'], ['You', 'must', 'not', 'give', 'up', 'hope.'], ["Didn't", 'you', 'know', 'that', 'oil', 'floats', 'on', 'water?'], ['It', 'is', 'not', 'necessarily', 'so.'], ['Mary', 'is', 'a', 'very', 'independent', 'girl.'], ['Time', 'cures', 'all', 'things.'], ['I', 'am', 'not', 'getting', 'involved.'], ['The', 'cat', 'is', 'sleeping', 'on', 'the', 'table.'], ['I', 'hear', 'Tom', 'was', 'the', 'one', 'who', 'taught', 'you', 'how', 'to', 'play', 'the', 'cello.'], ['All', 'of', 'us', 'will', 'die', 'sooner', 'or', 'later.'], ['His', 'nose', 'bled.'], ['I', 'want', 'you', 'to', 'stay', 'a', 'little', 'longer.'], ['I', 'had', 'forgotten', 'how', 'beautiful', 'you', 'are.'], ['We', 'have', 'to', 'go.'], ['Tell', 'me', 'what', 'the', 'matter', 'is.'], ['I', 'have', 'a', 'first-aid', 'kit', 'in', 'my', 'car.'], ['Tom', 'plugged', 'in', 'the', 'TV.'], ["I'm", 'lucky', 'to', 'have', 'a', 'job.'], ['The', 'poor', 'people', 'were', 'at', 'the', 'mercy', 'of', 'the', 'cruel', 'dictator.'], ['How', 'can', 'we', 'thank', 'you?'], ['Give', 'me', 'a', 'minute', 'to', 'catch', 'my', 'breath.'], ['Tom', 'was', 'genuinely', 'worried', 'about', 'Mary.'], ['I', "don't", 'think', 'you', 'did', 'this', 'by', 'yourself.'], ['He', 'works', 'all', 'night', 'and', 'he', 'sleeps', 'all', 'day.'], ["I'd", 'like', 'you', 'to', 'translate', 'this', 'book', 'into', 'English.'], ['I', 'still', "haven't", 'gotten', 'over', 'what', 'happened', 'to', 'me.'], ['Who', 'did', 'he', 'see?'], ['Your', 'daughter', 'is', 'not', 'a', 'child', 'anymore.'], ['I', "can't", 'carry', 'all', 'that', 'baggage.'], ['Tell', 'us', 'what', 'you', 'want', 'and', "we'll", 'try', 'to', 'get', 'it', 'for', 'you.'], ['This', 'is', 'a', 'friend', 'of', 'mine.'], ['Tom', 'talks', 'about', 'that', 'a', 'lot.'], ['In', 'autumn', 'the', 'leaves', 'turn', 'yellow.'], ['If', 'for', 'some', 'reason', 'that', 'happened,', 'what', 'would', 'you', 'do?'], ['Have', 'you', 'decided', 'what', "you're", 'going', 'to', 'do?'], ['There', 'is', 'an', 'urgent', 'need', 'for', 'the', 'local', 'government', 'to', 'help', 'the', 'homeless.'], ['Who', 'do', 'you', 'have', 'to', 'do', 'that', 'with?'], ["I'll", 'teach', 'you', 'what', 'you', 'need', 'to', 'know.'], ['You', "don't", 'realize', 'how', 'lucky', 'you', 'are.'], ['This', 'broken', 'vase', "can't", 'be', 'repaired.'], ['You', 'would', 'have', 'to', 'practice', 'the', 'violin', 'every', 'day.'], ['I', "don't", 'think', 'I', 'can', 'fix', 'it.'], ['Tom', 'said', 'he', 'wanted', 'to', 'go', 'swimming.'], ['We', 'can', 'do', 'it', 'right', 'now.'], ['He', 'has', 'a', 'hat', 'on.'], ['Tom', 'took', 'the', 'easy', 'way', 'out.'], ['I', 'wanted', 'to', 'thank', 'you', 'for', 'what', 'you', 'did', 'today.'], ['Tom', 'is', 'an', 'unusual', 'kid.'], ["She's", 'an', 'alcoholic.'], ['There', 'are', 'no', 'shortcuts', 'to', 'the', 'top,', 'only', 'to', 'the', 'bottom.'], ['Having', 'a', 'telephone', 'helped', 'her', 'find', 'more', 'clients.'], ['I', 'wish', 'I', 'could', 'afford', 'to', 'buy', 'a', 'car', 'like', 'that.'], ['They', 'invited', 'them', 'to', 'dinner.'], ['I', 'think', 'Tom', 'should', 'give', 'Mary', 'another', 'chance.'], ['You', 'were', 'my', 'friend.'], ['You', 'should', 'buy', 'her', 'a', 'gift', 'card', 'instead.'], ['My', 'little', 'sister', 'sure', 'knows', 'how', 'to', 'push', 'my', 'buttons.'], ["He's", 'got', 'the', 'biggest', 'eyebrows', "I've", 'ever', 'seen.'], ['He', 'works', 'at', 'night.'], ['Is', 'your', 'daughter', 'here?'], ['Tom', 'is', 'trying', 'to', 'do', 'that.'], ['Success', 'depends', 'mostly', 'on', 'effort.'], ['I', 'went', 'to', 'bed', 'early', 'because', 'I', 'was', 'tired.'], ["I'll", 'give', 'you', 'a', 'call', 'before', 'I', 'come.'], ['She', 'kissed', 'my', 'cheek.'], ['I', 'warned', 'you', 'once.'], ['You', 'still', "haven't", 'told', 'me', 'why', "you're", 'here.'], ['He', 'is', 'engaged', 'to', 'my', 'younger', 'sister.'], ['He', 'looks', 'just', 'like', 'his', 'mother.'], ['Cleaning', 'the', 'garage', "wasn't", 'much', 'fun.'], ['I', 'received', 'an', 'invitation.'], ['Why', 'do', 'you', 'keep', 'giving', 'him', 'money?'], ['I', 'wish', 'we', 'could', 'have', 'met', 'under', 'better', 'circumstances.'], ['He', 'came', 'back', 'after', 'dark.'], ['Please', 'be', 'quiet,', 'everybody.'], ["I've", 'changed', 'my', 'mind', 'again.'], ["We've", 'got', 'to', 'take', 'Tom', 'to', 'the', 'doctor.'], ['She', 'took', 'him', 'to', 'the', 'zoo.'], ['They', 'have', 'black', 'hair.'], ['There', 'is', 'a', 'bus', 'every', 'fifteen', 'minutes.'], ['I', 'want', 'them', 'all', 'shot.'], ['We', 'can', 'do', 'that', 'now.'], ['A', 'burnt', 'child', 'dreads', 'the', 'fire.'], ['I', 'admire', 'your', 'determination.'], ['You', 'look', 'upset.'], ['I', "didn't", 'ask', 'you', 'to', 'come', 'with', 'us.'], ['I', 'did', 'everything', 'in', 'my', 'power', 'to', 'protect', 'her', 'from', 'you.'], ['I', 'made', 'it', 'myself.'], ['I', 'want', 'you', 'to', 'find', 'out.'], ['This', 'bird', 'cannot', 'fly.'], ['I', 'did', 'everything', 'for', 'you.'], ['Why', 'did', 'you', 'decide', 'to', 'do', 'that?'], ['How', 'much', 'do', 'you', 'feed', 'your', 'dog?'], ['I', 'told', 'you', 'the', 'truth.'], ['Tom', 'wants', 'to', 'get', 'rich', 'quickly.'], ['Tom', 'can', 'be', 'relied', 'on.'], ['How', 'much', 'time', 'and', 'energy', 'do', 'you', 'spend', 'on', 'projects', 'that', "don't", 'make', 'you', 'any', 'money?'], ["He'll", 'arrive', 'within', 'an', 'hour.'], ['She', 'has', 'a', 'little', 'bread.'], ['We', "couldn't", 'open', 'the', 'door', 'because', 'it', 'was', 'locked', 'from', 'the', 'inside.'], ['I', 'made', 'cookies.'], ['I', 'think', 'I', 'might', 'have', 'a', 'drinking', 'problem.'], ["It's", 'okay', 'to', 'take', 'it', 'easy', 'sometimes.'], ["He's", 'here', 'trying', 'to', 'stir', 'up', 'trouble.'], ['Tom', 'seems', 'so', 'nice.'], ["I'm", 'not', 'an', 'idiot.'], ['Do', 'you', 'really', 'want', 'to', 'know?'], ['Where', 'did', 'you', 'buy', 'that', 'hat?'], ['I', 'want', 'to', 'do', 'it.'], ['Be', 'a', 'good', 'girl.'], ['I', 'saw', "Tom's", 'face.'], ['They', "shouldn't", 'let', 'children', 'swim', 'in', 'that', 'river.'], ["I'm", 'resourceful.'], ['Make', 'sure', 'the', 'door', 'is', 'locked.'], ['He', 'is', 'riding', 'a', 'bicycle.'], ['Tom', 'was', 'the', 'first', 'person', 'here.'], ['You', 'finally', 'succeeded', 'in', 'getting', 'a', 'job.'], ['Your', 'efforts', 'will', 'soon', 'pay', 'off.'], ['Who', 'broke', 'this', 'window?'], ["I've", 'always', 'wanted', 'to', 'be', 'a', 'mother.'], ['I', 'thought', 'it', 'was', 'a', 'fluke.'], ["That's", 'what', 'I', 'meant.'], ["We're", 'halfway', 'there.'], ['He', 'became', 'wiser', 'as', 'he', 'grew', 'older.'], ['He', 'owes', 'me', 'one.'], ['I', 'think', 'Tom', 'is', 'likely', 'to', 'go', 'to', 'Boston', 'in', 'the', 'near', 'future.'], ['It', 'is', 'imperative', 'that', 'we', 'find', 'another', 'way', 'out', 'of', 'this', 'situation.'], ['He', 'is', 'going', 'to', 'run', 'for', 'mayor.'], ['As', 'far', 'as', 'I', 'know,', 'he', 'is', 'honest.'], ["We'll", 'be', 'home', 'all', 'day', 'tomorrow.'], ['If', 'you', 'go', 'near', 'a', 'camel,', 'you', 'risk', 'being', 'bitten.'], ['I', 'know', 'what', 'they', 'mean.'], ['She', 'bought', 'the', 'dress', 'on', 'impulse.'], ['Please', 'call', 'the', 'fire', 'department.'], ['Is', 'Tom', 'studying', 'French?'], ['I', 'need', 'a', 'pen', 'and', 'paper.'], ['I', "won't", 'go', 'to', 'all', 'the', 'meetings,', 'but', "I'll", 'try', 'to', 'go', 'to', 'some', 'of', 'them.'], ['Tom', 'knows', 'the', 'police', 'suspect', 'him.'], ['Why', 'are', 'you', 'all', 'so', 'busy?'], ['A', 'fallen', 'leaf', 'floated', 'on', 'the', 'surface', 'of', 'the', 'water.'], ["I'm", 'glad', 'that', 'makes', 'you', 'happy.'], ['Tom', 'sees', 'this', 'in', 'a', 'different', 'way.'], ["Don't", 'tell', 'me.', 'Let', 'me', 'guess.'], ['How', 'come', 'you', "didn't", 'come', 'to', 'the', 'party?'], ['When', 'did', 'you', 'become', 'a', 'teacher?'], ['Tom', 'is', 'making', 'a', 'video.'], ['Can', 'you', 'save', 'enough', 'money', 'for', 'the', 'down', 'payment?'], ['I', 'am', 'human.'], ["I've", 'got', 'to', 'get', 'ready', 'for', 'school.'], ['I', 'have', 'to', 'explain', 'this', 'to', 'Tom.'], ['What', 'happened', 'to', 'my', 'bag?'], ['I', 'always', 'obey', 'the', 'rules.'], ['I', 'asked', 'you', 'if', 'you', 'wanted', 'some', 'help.'], ["She's", 'used', 'to', 'getting', 'up', 'early.'], ["You're", 'very', 'clever.'], ['He', 'has', 'a', 'headache.'], ['I', 'need', 'to', 'get', 'something.'], ['What', 'has', 'become', 'of', 'your', 'sister?'], ["You're", 'not', 'good', 'at', 'this.'], ['I', 'had', 'a', 'fantastic', 'time.'], ['I', 'get', 'paid', 'a', 'lot', 'to', 'do', 'what', 'I', 'do.'], ['I', 'got', 'to', 'Boston', 'yesterday', 'afternoon.'], ['I', 'can', 'prove', 'it', 'to', 'you.'], ['Both', 'he', 'and', 'I', 'were', 'members', 'of', 'that', 'club.'], ['Today', 'you', 'can', 'get', 'two', 'for', 'the', 'price', 'of', 'one.'], ["Can't", 'you', 'help', 'us?'], ['Your', 'son', 'is', 'dating', 'my', 'daughter.'], ['They', "don't", 'know', 'what', 'they', 'should', 'do', 'with', 'the', 'money.'], ['This', 'should', 'be', 'clear', 'to', 'everyone.'], ['Would', 'you', 'like', 'to', 'see', 'your', 'husband', 'grow', 'a', 'beard?'], ["Tom's", 'garage', 'is', 'filled', 'with', 'things', 'that', 'he', 'never', 'uses.'], ['My', 'opinion', 'is', 'the', 'same', 'as', 'yours.'], ["What's", 'the', 'tallest', 'mountain', "you've", 'climbed?'], ['Give', 'me', 'your', 'car', 'keys.'], ['Do', 'I', 'have', 'to', 'write', 'a', 'letter?'], ['OK.', 'I', 'agree.'], ['My', 'flight', 'was', 'delayed.'], ["That's", 'why', 'I', 'wanted', 'you', 'to', 'know.'], ["You're", 'too', 'loud.'], ['We', 'need', 'to', 'leave.'], ['We', 'travel', 'light.'], ['Why', "don't", 'you', 'get', 'a', 'job?'], ['I', 'am', 'going', 'to', 'America', 'by', 'plane.'], ['Why', 'do', 'you', 'laugh', 'so', 'hard', 'at', 'his', 'jokes?', "They're", 'not', 'even', 'funny.'], ['Please', 'say', 'hello', 'to', 'him', 'for', 'me.'], ['They', 'wear', 'very', 'little', 'clothing.'], ["That's", 'not', 'quite', 'what', 'I', 'wanted.'], ['She', 'writes', 'to', 'her', 'son', 'every', 'so', 'often.'], ["I've", 'read', 'your', 'book.', 'It', 'was', 'very', 'interesting.'], ['It', 'was', 'truly', 'a', 'miracle.'], ['Tom', 'is', 'getting', 'the', 'results', 'that', 'he', 'hoped', 'for.'], ["We're", 'starving.'], ['Are', 'there', 'many', 'animals', 'in', 'the', 'zoo?'], ['They', 'set', 'out', 'for', 'New', 'York.'], ['You', 'seem', 'a', 'little', 'depressed', 'today.'], ['I', 'guess', 'my', 'mind', 'just', 'wandered.'], ['The', 'same', 'holds', 'true', 'for', 'Germany.'], ['The', 'fire', 'destroyed', 'the', 'tall', 'building.'], ['What', 'do', 'you', 'want', 'to', 'do', 'after', 'you', 'graduate?'], ['I', 'have', 'lots', 'of', 'ideas.'], ['I', 'ruined', 'everything.'], ['Choose', 'between', 'these', 'two.'], ['You', "can't", 'dance,', 'can', 'you?'], ['Rest', 'in', 'peace.'], ["I'm", 'afraid', 'I', "can't", 'save', 'you', 'this', 'time.'], ['Life', 'is', 'boring', 'in', 'a', 'small', 'village.'], ['The', 'school', 'is', 'farther', 'away', 'than', 'the', 'station.'], ['Tom', 'has', 'a', 'very', 'easy', 'job.'], ['Stay', 'in', 'your', 'room.'], ["Don't", 'move', 'till', 'I', 'get', 'back.'], ["We've", 'refused.'], ['The', 'baby', 'kept', 'quiet.'], ["You're", 'in', 'danger.'], ['The', 'situation', 'calls', 'for', 'drastic', 'measures.'], ['I', 'made', 'dinner.'], ['We', "haven't", 'found', 'it.'], ['Cockroaches', 'hide', 'themselves', 'during', 'the', 'day.'], ["That's", 'a', 'tree.'], ['They', 'had', 'to', 'start', 'from', 'scratch.'], ['Are', 'you', 'a', 'singer?'], ["They're", 'all', 'waiting.'], ['I', 'know', "you're", 'busy,', 'but', 'I', 'could', 'use', 'some', 'help.'], ['We', 'have', 'the', 'same', 'group', 'of', 'friends.'], ['I', 'hear', 'from', 'my', 'mother', 'every', 'month.'], ['I', 'read', 'an', 'exciting', 'story.'], ['You', "shouldn't", 'depend', 'on', 'others', 'too', 'much.'], ['I', 'fell', 'in', 'the', 'pool.'], ['It', 'gets', 'worse.'], ['He', 'was', 'a', 'real', 'drunkard.'], ['You', 'need', 'to', 'be', 'careful.'], ["I'd", 'like', 'to', 'go', 'abroad', 'someday.'], ['I', 'know', 'him', 'better', 'than', 'anybody.'], ['A', 'jaywalker', 'exposes', 'himself', 'to', 'great', 'danger.'], ['What', 'did', 'you', 'do', 'on', 'your', 'vacation?'], ['You', 'need', 'to', 'find', 'another', 'way', 'out', 'of', 'this', 'situation.'], ['Tom', 'is', 'growing', 'up.'], ['It', 'seemed', 'likely.'], ["You're", 'wrong', 'again.'], ['We', "shouldn't", 'judge', 'people', 'by', 'how', 'they', 'look.'], ['He', 'is', 'fighting', 'with', 'his', 'back', 'against', 'the', 'wall.'], ['She', 'has', 'three', 'times', 'as', 'many', 'dictionaries', 'as', 'you', 'do.'], ["You're", 'precise.'], ['Do', 'you', 'want', 'to', 'come', 'eat', 'at', 'our', 'house?'], ['I', "don't", 'deserve', 'this.'], ['I', 'have', 'three', 'more', 'pages', 'to', 'go.'], ['The', 'crocodile', 'trapped', 'the', 'gnu', 'as', 'it', 'tried', 'to', 'cross', 'the', 'river.'], ['Staying', 'at', 'home', 'is', 'boring.'], ['She', 'has', 'a', 'hot', 'temper.'], ['Tom', 'is', 'a', 'gymnast.'], ["I'll", 'be', 'there', 'right', 'away.'], ['I', 'was', 'very', 'hungry.'], ['Who', 'notified', 'you?'], ['He', 'seems', 'very', 'pleasant.'], ['Come', 'and', 'see', 'this.'], ['Tell', 'me', "it's", 'not', 'true.'], ['When', 'it', 'rains,', 'it', 'pours.'], ['I', 'watch', 'TV', 'off', 'and', 'on.'], ['I', "can't", 'find', 'it', 'anywhere.'], ['Quito,', 'Ecuador,', 'is', 'a', 'little', 'south', 'of', 'the', 'equator.'], ["You've", 'been', 'selected.'], ['I', 'slept', 'lying', 'on', 'my', 'face.'], ['They', 'hurried', 'to', 'the', 'scene', 'of', 'the', 'accident.'], ['Everybody', 'expected', 'that', 'the', 'experiment', 'would', 'result', 'in', 'failure.'], ['I', 'just', 'miss', 'him.'], ['The', 'fire', 'started', 'immediately.'], ['You', 'ran', 'a', 'red', 'light.'], ['Are', 'they', 'Japanese', 'or', 'Chinese?'], ['Have', 'you', 'received', 'a', 'letter', 'from', 'him?'], ['I', 'have', 'been', 'working', 'for', 'this', 'newspaper', 'for', '4', 'years.'], ['I', 'will', 'go', 'there', 'even', 'if', 'it', 'rains.'], ['It', 'was', 'a', 'crime', 'of', 'passion.'], ['Do', 'I', 'have', 'to', 'pay', 'you?'], ['The', 'projector', "doesn't", 'work.'], ['I', 'exercised.'], ['She', 'got', 'very', 'angry', 'with', 'the', 'children.'], ['I', 'think', "it's", 'time', 'for', 'me', 'to', 'buy', 'a', 'house.'], ['I', 'do', 'apologize.'], ['Could', 'you', 'please', 'sharpen', 'these', 'knives?'], ['If', 'you', 'eat', 'so', 'much,', "you'll", 'get', 'sick.'], ['I', 'carried', 'the', 'box', 'on', 'my', 'shoulder.'], ['Happiness', 'in', 'marriage', 'is', 'entirely', 'a', 'matter', 'of', 'chance.'], ["I'm", 'going', 'to', 'stay', 'there', 'for', 'about', 'a', 'week.'], ['I', 'knew', 'you', "wouldn't", 'listen', 'to', 'me.'], ["What's", 'your', 'favorite', 'book?'], ['I', "didn't", 'think', 'this', 'would', 'happen.'], ['I', 'guess', 'I', "don't", 'have', 'a', 'choice.'], ['Thank', 'you.'], ['I', "should've", 'been', 'with', 'you.'], ['My', 'friend', 'called', 'me', 'a', 'coward.'], ['If', 'you', 'keep', 'harping', 'on', 'his', 'flaws,', "he'll", 'grow', 'to', 'resent', 'you.'], ["He's", 'behaving', 'oddly.'], ['While', "you're", 'young,', 'you', 'should', 'read', 'a', 'lot.'], ['You', 'are', 'telling', 'it', 'second', 'hand,', "aren't", 'you?'], ['I', "don't", 'know', 'how', 'to', 'describe', 'it.'], ['Dinner', 'will', 'be', 'ready', 'soon.'], ['He', 'often', 'reads', 'far', 'into', 'the', 'night.'], ["It's", 'been', 'my', 'dream', 'since', 'I', 'was', 'a', 'little', 'girl.'], ['Who', 'is', 'your', 'teacher?'], ["It's", 'almost', 'time', 'to', 'go', 'to', 'bed.'], ["I'd", 'like', 'a', 'little', 'bit', 'of', 'cake.'], ['Turn', 'it', 'off.'], ['You', "didn't", 'see', 'anyone', 'come', 'in,', 'did', 'you?'], ["I'll", 'go.'], ['Promises', 'are', 'made', 'to', 'be', 'broken.'], ["What's", 'that', 'bird', 'called?'], ['What', 'sort', 'of', 'father', 'do', 'you', 'think', "you'll", 'be?'], ['What', 'time', 'did', 'you', 'go', 'to', 'bed', 'yesterday?'], ['My', 'leg', 'is', 'still', 'hurting.'], ['I', 'guess', 'you', 'want', 'me', 'to', 'leave.'], ['I', 'thought', "you'd", 'be', 'interested', 'in', 'this.'], ['We', 'are', 'going', 'to', 'his', 'house.', 'Want', 'to', 'come', 'with?'], ['You', 'recognized', 'him,', "didn't", 'you?'], ['Tom', 'is', 'driving', 'too', 'fast.'], ["I'm", 'not', 'sure', 'that', "you're", 'ready.'], ['I', 'remember', 'having', 'seen', 'this', 'movie', 'before.'], ['If', "he'd", 'known', 'the', 'truth,', "he'd", 'have', 'told', 'me.'], ['I', 'asked', 'Tom', 'who', 'his', 'French', 'teacher', 'was.'], ['May', 'I', 'borrow', 'your', 'phone?'], ['Your', 'French', 'is', 'better', 'than', 'mine.'], ['He', 'showed', 'a', 'lot', 'of', 'skill.'], ['The', 'room', 'has', 'two', 'windows.'], ["I'd", 'like', 'to', 'buy', 'a', 'house.'], ["Tom's", 'car', 'has', 'tinted', 'windows.'], ['Where', 'do', 'you', 'think', 'we', 'came', 'from?'], ['It', 'was', 'difficult', 'for', 'us', 'to', 'decide', 'which', 'one', 'to', 'buy.'], ['The', 'police', 'searched', 'the', 'premises', 'thoroughly.'], ["You're", 'still', 'young.'], ['The', 'couple', 'broke', 'off', 'their', 'engagement.'], ['Do', 'you', 'know', 'the', 'man', 'staring', 'at', 'you?'], ['I', "didn't", 'understand', 'the', 'joke.'], ['He', 'dug', 'a', 'hole', 'in', 'the', 'garden.'], ["Won't", 'you', 'take', 'a', 'chair?'], ['You', "don't", 'have', 'to', 'apologize.'], ['A', 'problem', 'shared', 'is', 'a', 'problem', 'halved.'], ['The', 'streets', 'are', 'flooded.'], ['This', 'road', 'is', 'dangerous.'], ['Keep', 'on', 'smiling.'], ['Please', 'refrain', 'from', 'smoking', 'here.'], ['Your', 'mother', 'loves', 'me.'], ['Please', 'let', 'me', 'try', 'it', 'again.'], ["It's", 'not', 'a', 'computer', 'problem.'], ['I', "can't", 'go', 'any', 'farther.'], ['He', 'has', 'been', 'to', 'France.'], ['You', "don't", 'seem', 'to', 'understand.'], ['I', 'ate', 'a', 'hamburger', 'for', 'lunch.'], ['How', 'come', 'he', "didn't", 'show', 'up?'], ['He', 'fought', 'against', 'racial', 'discrimination.'], ['Tom', 'seems', 'to', 'have', 'disappeared.'], ['I', 'hope', 'I', "haven't", 'woken', 'you', 'up.'], ["We're", 'plastered.'], ['I', 'have', 'no', 'idea', 'what', "I'm", 'doing.'], ["She's", 'practicing', 'the', 'piano', 'day', 'and', 'night.'], ['We', "don't", 'have', 'a', 'problem.'], ["I've", 'already', 'written', 'to', 'Tom.'], ["Don't", 'ask', 'questions.', 'Just', 'follow', 'orders.'], ['He', 'was', 'very', 'puzzled.'], ["What's", 'your', 'favorite', 'smell?'], ['My', 'brother', 'gave', 'me', 'a', 'charming', 'baby', 'doll.'], ['The', 'show', 'was', 'very', 'interesting.', 'You', 'should', 'have', 'seen', 'it.'], ['I', "don't", 'know', 'how', 'much', 'money', "we've", 'got.'], ['I', 'saw', 'her', 'home.'], ['Tom', 'has', 'no', 'insurance.'], ['I', 'just', "can't", 'help', 'you', 'right', 'now.'], ['I', 'know', 'Tom', 'is', 'miserable.'], ['The', 'cat', 'scared', 'me.'], ['Is', 'Tom', 'still', 'interested?'], ['Tom', 'looks', 'proud', 'of', 'his', 'son.'], ['I', "can't", 'find', 'my', 'bag.'], ['Tom', 'said', 'that', 'he', 'wanted', 'to', 'go', 'visit', 'Santa', 'Claus', 'at', 'the', 'North', 'Pole.'], ['Do', 'you', 'think', "I'm", 'being', 'unreasonable?'], ["That's", 'totally', 'justified.'], ['He', 'is', 'photogenic.'], ['The', 'pamphlet', 'is', 'free', 'of', 'charge.'], ["It'll", 'take', 'some', 'time', 'to', 'get', 'used', 'to', 'living', 'here.'], ['What', 'do', 'you', 'learn', 'at', 'school?'], ['Do', 'you', 'have', 'any', 'imported', 'beer?'], ["It's", 'getting', 'there.'], ['I', 'do', 'think', "it's", 'possible.'], ['That', 'house', 'is', 'built', 'of', 'bricks.'], ['I', "didn't", 'expect', 'you', 'so', 'soon.'], ["There's", 'no', 'escape.'], ['Tom', "doesn't", 'know', 'you.'], ['What', 'are', 'you', 'reading?'], ['I', "can't", 'drink', 'coffee', 'without', 'sugar.'], ['I', "can't", 'give', 'up', 'on', 'my', 'dreams.'], ['Are', 'you', 'spending', 'enough', 'time', 'with', 'your', 'kids?'], ["Tom's", 'heart', 'suddenly', 'began', 'to', 'beat', 'faster.'], ['Open', 'your', 'eyes.'], ['I', "didn't", 'tell', 'him', 'everything.'], ['I', "don't", 'know', 'what', 'to', 'do.'], ["I'll", 'be', 'thinking', 'of', 'you', 'every', 'day', 'while', "I'm", 'away.'], ["It's", 'raining', 'hard', 'tonight.'], ['I', 'love', 'traveling.'], ['I', "wouldn't", 'do', 'that.'], ['I', 'need', 'you', 'here.'], ['There', 'are', 'a', 'lot', 'of', 'big', 'cities', 'in', 'Brazil.'], ['You', "can't", 'put', 'off', 'doing', 'that', 'any', 'longer.'], ['Let', 'me', 'buy', 'you', 'a', 'new', 'one.'], ['I', 'know', 'your', 'brother', 'very', 'well.'], ["Didn't", 'your', 'mother', 'teach', 'you', 'to', 'say', 'thank', 'you?'], ['We', 'finally', 'have', 'you', 'where', 'we', 'want', 'you.'], ["I'll", 'wait', 'here', 'for', 'you.'], ['I', "don't", 'want', 'to', 'get', 'involved.'], ["That's", 'going', 'to', 'take', 'a', 'while.'], ['You', 'know', 'very', 'well', 'how', 'it', 'happened.'], ['Do', 'you', 'know', 'where', 'he', 'went?'], ['Hand', 'over', 'your', 'weapons.'], ['What', 'size', 'are', 'these', 'shoes?'], ['Can', 'you', 'spare', 'me', 'a', 'few', 'minutes?', "I'd", 'like', 'to', 'have', 'a', 'word', 'with', 'you.'], ['Have', 'you', 'ever', 'kissed', 'another', 'girl?'], ['You', 'won', 'everything.'], ["Don't", 'tell', 'me', 'you', "didn't", 'see', 'it.'], ['I', 'knew', 'that', 'Tom', 'was', 'afraid.'], ['In', 'Japan', 'a', 'new', 'school', 'year', 'starts', 'in', 'April.'], ['Tom', 'has', 'a', 'problem', 'with', 'Mary.'], ['Everybody', 'cheered.'], ["What's", 'all', 'the', 'excitement', 'about?'], ['He', 'is', 'a', 'fishmonger.'], ["You're", 'depressed,', "aren't", 'you?'], ['I', 'never', 'thought', "I'd", 'get', 'that', 'lucky.'], ['Do', 'you', 'mind', 'if', 'I', 'smoke', 'here?'], ["You're", 'such', 'a', 'liar.'], ['She', 'is', 'as', 'young', 'as', 'I', 'am.'], ['My', 'uncle', 'gave', 'his', 'car', 'to', 'me.'], ['Please', 'speak', 'more', 'loudly.'], ['I', 'just', 'want', 'to', 'say', "I'm", 'glad', "you're", 'here.'], ['We', 'have', 'to', 'take', 'this', 'problem', 'into', 'consideration.'], ['He', 'put', 'on', 'clean', 'trousers.'], ['I', 'had', 'no', 'one', 'to', 'talk', 'to.'], ["I've", 'already', 'said', 'no.'], ['Do', 'you', 'want', 'to', 'go?'], ['Why', "don't", 'you', 'quit?'], ['He', 'said', 'that', 'he', 'had', 'told', 'you', 'to', 'speak', 'more', 'slowly.'], ['Do', 'you', 'watch', 'the', 'news', 'every', 'day?'], ['My', 'house', 'is', 'on', 'the', 'west', 'side', 'of', 'the', 'street.'], ['The', 'coffee', 'is', 'cold.'], ['Tom', 'has', 'until', 'Monday', 'to', 'decide.'], ['They', 'won.'], ['That', 'would', 'appear', 'to', 'be', 'correct.'], ['I', 'was', 'with', 'Tom', 'from', '8:30', 'to', '2:30.'], ['Tom', 'went', 'to', 'a', 'nearby', 'convenience', 'store', 'to', 'buy', 'something', 'to', 'eat.'], ['I', 'suffered', 'a', 'lot.'], ['We', 'had', 'an', 'unpleasant', 'experience', 'there.'], ['Mistakes', 'like', 'these', 'are', 'easily', 'overlooked.'], ['Tom', 'has', 'told', 'me', 'a', 'lot', 'about', 'you.'], ['Tom', 'has', 'a', 'funny', 'way', 'of', 'laughing,', "doesn't", 'he?'], ['No', 'one', 'was', 'in', 'the', 'swimming', 'pool.'], ["You'd", 'better', 'try', 'something', 'else.'], ['You', 'need', 'to', 'get', 'to', 'a', 'hospital.'], ['Tom', 'greeted', 'Mary', 'with', 'a', 'smile.'], ["They're", 'now', 'alone.'], ['I', 'want', 'you', 'to', 'know', 'how', 'sorry', 'I', 'am.'], ['Call', 'me.'], ['I', 'know', 'that', 'name.'], ['He', 'collected', 'a', 'lot', 'of', 'stamps.'], ['I', 'feel', 'like', 'such', 'a', 'fool.'], ['If', 'you', 'hurry,', 'you', 'can', 'make', 'it.'], ['Can', 'I', 'talk', 'to', 'you', 'privately?'], ['You', 'have', 'lipstick', 'on', 'your', 'cheek.'], ['How', 'many', 'times', 'have', 'you', 'lied', 'to', 'me?'], ['Let', 'me', 'ask', 'you', 'something,', 'Tom.'], ['I', 'want', 'you', 'to', 'take', 'a', 'good', 'look', 'around.'], ['Can', 'you', 'verify', 'that', 'this', 'message', 'came', 'from', 'Tom?'], ["You're", "Tom's", 'students,', 'right?'], ['Let', 'me', 'ask', 'you', 'a', 'stupid', 'question.'], ['Try', 'to', 'eat', 'a', 'little', 'more.'], ["He's", 'out', 'of', 'practice.'], ['I', 'hear', 'footsteps', 'outside.'], ['She', 'has', 'a', 'round', 'face.'], ['I', 'am', 'taking', 'French', 'next', 'year.'], ['Can', 'you', 'at', 'least', 'be', 'happy', 'for', 'me?'], ['"I', 'want', 'that', 'book,"', 'he', 'said', 'to', 'himself.'], ['He', 'attached', 'great', 'importance', 'to', 'the', 'event.'], ['I', 'thought', 'we', 'had', 'found', 'the', 'perfect', 'hiding', 'place,', 'but', 'the', 'police', 'found', 'us.'], ['We', 'studied', 'French.'], ['I', 'like', 'writing', 'with', 'a', 'fountain', 'pen.'], ["I'm", 'sorry', 'I', 'hurt', 'you.'], ['Tom', 'is', 'in', 'there', 'alone.'], ['As', 'a', 'matter', 'of', 'fact,', 'he', 'was', 'convinced.'], ['Did', 'you', 'talk', 'to', 'Tom', 'yesterday?'], ['He', 'makes', 'necessary', 'changes.'], ['How', 'many', 'audiobooks', 'do', 'you', 'have', 'on', 'your', 'iPod?'], ['We', 'gave', 'it', 'to', 'the', 'man.'], ['What', 'mileage', 'do', 'you', 'get', 'with', 'this', 'car?'], ['This', "hat's", 'too', 'small', 'for', 'you.'], ['Are', 'you', 'the', 'manager?'], ['He', 'died', 'before', 'the', 'ambulance', 'arrived.'], ['Tom', 'worries', 'too', 'much.'], ['You', 'are', 'entirely', 'correct.'], ['I', 'saw', 'a', 'dog', 'crossing', 'the', 'street.'], ['I', 'want', 'to', 'know', 'who', 'gave', 'that', 'to', 'you.'], ['I', 'was', 'concerned.'], ['I', 'know', 'Tom', 'does', 'that,', 'too.'], ['I', 'hope', "you're", 'not', 'offended.'], ['I', "don't", 'have', 'much', 'ready', 'money.'], ['Always', 'try', 'to', 'see', 'the', 'best', 'in', 'people.'], ['He', 'has', 'a', 'cat', 'and', 'two', 'dogs.'], ['I', 'got', 'sand', 'in', 'my', 'eye.'], ['You', 'know', 'too', 'much.'], ["I'm", 'busy,', 'so', 'I', "can't", 'go.'], ["There's", 'no', 'danger', 'of', 'this', 'lamp', 'setting', 'fire', 'to', 'the', 'curtains.'], ['It', 'was', 'a', 'fine', 'day', 'and', 'there', 'were', 'no', 'clouds', 'in', 'the', 'sky.'], ['Tom', 'forgot', 'to', 'salute.'], ['When', 'can', 'I', 'see', 'you', 'next', 'time?'], ['He', 'was', 'not', 'at', 'all', 'satisfied.'], ["It's", 'your', 'responsibility', 'to', 'do', 'that.'], ['The', 'house', 'has', 'been', 'empty', 'for', 'years.'], ['Everyone', 'did', 'it.'], ['It', 'might', 'prove', 'useful.'], ['Who', 'is', 'playing', 'the', 'guitar?'], ['I', 'had', 'a', 'job', 'when', 'I', 'was', 'your', 'age.'], ['Where', 'did', 'you', 'get', 'this', 'list?'], ['People', 'thought', 'that', 'she', 'was', 'dead.'], ['Why', "don't", 'you', 'love', 'me?'], ['Were', 'you', 'tired', 'last', 'night?'], ['She', 'was', 'allowed', 'to', 'go', 'to', 'the', 'disco', 'on', 'condition', 'that', 'she', 'was', 'back', 'by', 'ten.'], ['I', "don't", 'like', 'the', 'polluted', 'atmosphere', 'of', 'big', 'cities.'], ['She', 'was', 'watching', 'TV', 'when', 'I', 'came', 'home.'], ['I', "don't", 'mind', 'leaving', 'at', 'six', "o'clock."], ['I', 'let', 'my', 'sister', 'use', 'my', 'new', 'computer.'], ['She', 'forced', 'him', 'to', 'eat', 'his', 'vegetables.'], ["Don't", 'worry.', "I'm", 'not', 'going', 'anywhere.'], ["You'll", 'never', 'leave', 'this', 'town.'], ["You're", 'not', 'often', 'wrong.'], ['Tom', "wasn't", 'scared', 'of', 'the', 'police.'], ['I', "don't", 'drink', 'beer.'], ['This', 'is', 'the', 'last', 'time', "I'm", 'telling', 'you', 'to', 'do', 'that.'], ['She', 'pressed', 'her', 'nose', 'against', 'the', 'glass.'], ['I', 'only', 'have', 'one', 'so', 'far.'], ['I', 'know', 'Tom', 'is', 'about', 'to', 'cry.'], ['I', 'thought', 'we', 'could', 'get', 'together', 'later.'], ['This', 'is', 'a', 'very', 'interesting', 'question.'], ['Tom', 'is', 'throwing', 'stones', 'at', 'birds.'], ['I', 'have', 'no', 'idea', 'how', 'long', "it'll", 'take.'], ['A', 'dog', 'has', 'four', 'legs.'], ['The', 'wind', 'gradually', 'died', 'down.'], ['Time', 'is', 'up.'], ['I', 'like', 'geography', 'and', 'history.'], ['The', 'police', 'think', 'the', 'burglar', 'entered', 'through', 'a', 'basement', 'window.'], ["Let's", 'sit', 'up', 'front.'], ['This', "wasn't", 'cheap,', 'was', 'it?'], ['How', 'am', 'I', 'supposed', 'to', 'dress?'], ['We', 'made', 'it.'], ['Are', 'you', 'sure', 'you', "don't", 'know', 'Tom?'], ['I', 'believe', "that's", 'possible.'], ['Tom', 'is', 'going', 'nuts.'], ['If', 'for', 'some', 'reason', 'that', 'happened,', 'what', 'would', 'you', 'do?'], ["Won't", 'you', 'have', 'some', 'more', 'tea?'], ["You're", 'wasting', 'both', 'of', 'our', 'time.'], ['I', 'cleared', 'the', 'table.'], ["Who's", 'your', 'friend?'], ['I', 'hate', 'this', 'town.'], ["That's", 'not', 'what', 'I', 'hear.'], ['They', 'want', 'you', 'dead.'], ['His', 'daughter', 'is', 'sick.'], ['I', 'worked', 'all', 'this', 'week.'], ['I', 'run', 'every', 'day.'], ['This', 'is', 'really', 'delicious', 'soup,', "isn't", 'it?'], ['What', 'are', 'you', 'thinking', 'about?'], ["It's", 'a', 'whole', 'other', 'ball', 'game.'], ['I', 'refused', 'to', 'pay.'], ['What', 'does', 'that', 'even', 'mean?'], ['I', 'was', 'half', 'expecting', 'this', 'to', 'happen.'], ['Do', 'you', 'speak', 'Japanese?'], ['What', 'do', 'you', 'say', 'to', 'a', 'game', 'of', 'chess?'], ["It's", 'natural', 'to', 'be', 'nervous', 'when', 'the', 'plane', 'takes', 'off.'], ['I', 'had', 'no', 'idea.'], ['I', 'enjoy', 'your', 'company.'], ['Tom', 'wanted', 'to', 'see', 'Mary', 'happy.'], ['You', 'feel', 'lonesome,', "don't", 'you?'], ['He', 'never', 'touched', 'wine.'], ['Can', 'you', 'see', 'that', 'small', 'house?'], ['Tom', 'poured', 'a', 'cup', 'of', 'tea', 'for', 'Mary.'], ["I'm", 'alone', 'in', 'the', 'world.'], ['I', 'wish', 'I', 'could', 'prevent', 'that.'], ['How', 'do', 'you', 'know', "they're", 'looking', 'for', 'us?'], ['Tom', 'wants', 'to', 'stay', 'single.'], ['They', 'were', 'very', 'hungry.'], ['Everybody', "didn't", 'go', 'to', 'bed.'], ['We', 'only', 'have', 'three', 'bicycles.'], ['It', 'is', 'our', 'duty', 'to', 'help', 'them.'], ["You're", 'very', 'timid.'], ['Tom', 'shared', 'a', 'jail', 'cell', 'with', 'John.'], ['She', 'whispered', 'something', 'into', 'his', 'ear.'], ['The', 'old', 'man', 'looks', 'sad.'], ['It', 'has', 'a', 'leak.'], ['I', "don't", 'know', 'anything', 'yet.'], ["They're", 'stalling.'], ['The', 'bucket', 'was', 'full', 'of', 'water.'], ['I', 'knew', 'that', 'Tom', 'was', 'a', 'cook.'], ['Sit', 'beside', 'me.'], ['The', 'offer', 'is', 'too', 'good', 'to', 'be', 'turned', 'down.'], ['You', 'owe', 'me', 'one.'], ['Fish', 'and', 'red', 'wine', "don't", 'go', 'together.'], ['He', 'is', 'a', 'recognized', 'authority', 'on', 'the', 'subject.'], ['I', 'gave', 'him', 'a', 'few', 'books.'], ['Do', 'you', 'mind', 'if', 'I', 'take', 'off', 'my', 'sweater?'], ['As', 'soon', 'as', 'you', 'get', 'the', 'wall', 'painted,', 'you', 'can', 'go', 'home.'], ['Have', 'you', 'thought', 'about', 'what', 'we', 'talked', 'about', 'the', 'other', 'night?'], ['He', 'is', 'the', 'baby', 'of', 'the', 'family.'], ['I', 'think', 'you', 'look', 'hot.'], ['Could', 'you', 'lend', 'me', 'a', 'hand?'], ['He', 'has', 'worked', 'out', 'a', 'quicker', 'way', 'to', 'get', 'the', 'job', 'finished.'], ['Would', 'you', 'come', 'here', 'a', 'moment?'], ['I', "can't", 'believe', "I'm", 'agreeing', 'with', 'you.'], ['She', 'waved', 'her', 'hand', 'to', 'us.'], ["I'm", 'your', 'biggest', 'fan.'], ['We', 'have', 'a', 'dog,', 'a', 'cat', 'and', 'three', 'canaries.'], ['The', 'contestants', 'are', 'gearing', 'up', 'for', 'the', 'final', 'round', 'of', 'competition.'], ['Tom', 'agrees.'], ['I', 'feel', 'like', 'this', 'is', 'going', 'to', 'end', 'badly.'], ["There's", 'a', 'big', 'hole', 'in', 'your', 'sock.'], ['All', 'right,', 'give', 'me', 'a', 'kiss.'], ['I', 'look', 'after', 'my', 'grandfather.'], ['May', 'I', 'ask', 'what', 'you', 'are', 'working', 'on', 'now?'], ['It', 'is', 'a', 'curse.'], ['Everybody', 'at', 'school', 'hates', 'me.'], ["It's", 'been', 'a', 'long', 'time', 'since', "I've", 'seen', 'any', 'dragonflies', 'in', 'this', 'area.'], ["She's", 'open-minded.'], ['He', 'inserted', 'the', 'key', 'in', 'the', 'lock.'], ['I', 'just', 'think', 'you', 'should', 'be', 'careful,', "that's", 'all.'], ['I', 'usually', 'get', 'up', 'at', '6:00.'], ["He's", 'always', 'looking', 'at', 'you.'], ['Mass', 'production', 'reduced', 'the', 'price', 'of', 'many', 'goods.'], ["What's", 'your', 'best', 'price?'], ['I', 'hate', 'that', 'idea.'], ["There's", 'a', 'fire', 'in', 'the', 'building.', 'We', 'have', 'to', 'evacuate', 'immediately.'], ["What're", 'you', 'writing?'], ['I', 'think', 'that', "he's", 'probably', 'not', 'a', 'bad', 'boy.'], ['It', "hasn't", 'been', 'done', 'before.'], ['You', 'know', 'very', 'well', 'what', 'Tom', 'wants.'], ['There', 'were', 'no', 'radios', 'in', 'those', 'days.'], ['My', 'father', 'allowed', 'me', 'to', 'go', 'swimming.'], ['A', 'lot', 'of', 'my', 'classmates', 'think', 'that', "I'm", 'dumb.'], ['Did', 'you', 'see', 'the', 'show?'], ["I'm", 'getting', 'a', 'bit', 'confused.'], ['Is', 'he', 'American?'], ['You', 'raise', 'a', 'good', 'point.'], ["I'm", 'a', 'smart', 'guy.'], ['You', 'and', 'Tom', 'are', 'good', 'friends,', 'right?'], ['That', 'was', 'pretty', 'weird.'], ['Tom', 'drank', 'straight', 'from', 'the', 'bottle.'], ['We', 'would', 'like', 'to', 'leave.'], ['I', 'figured', 'you', 'might', 'change', 'your', 'mind.'], ['I', 'could', 'kiss', 'you.'], ['It', 'was', 'disgusting.'], ['Give', 'someone', 'else', 'a', 'chance.'], ['I', 'think', 'we', 'have', 'time', 'for', 'a', 'drink', 'or', 'two.'], ['Is', 'her', 'house', 'anywhere', 'near', 'the', 'station?'], ['They', 'were', 'afraid', 'of', 'the', 'big', 'dog.'], ['How', 'did', 'you', 'manage', 'to', 'win?'], ['I', 'think', 'maybe', 'Tom', 'was', 'right.'], ['What', 'do', 'you', 'want', 'to', 'see', 'while', "you're", 'here?'], ['Is', 'that', 'likely?'], ['My', 'friends', "don't", 'know', 'where', 'I', 'am.'], ['The', 'post', 'office', "isn't", 'too', 'far', 'from', 'here.'], ['Tom', 'already', 'knows', 'the', 'truth.'], ['We', 'are', 'fully', 'aware', 'of', 'the', 'importance', 'of', 'the', 'situation.'], ["I'll", 'do', 'my', 'best.'], ['This', 'data', 'is', 'outdated.'], ["I'm", 'doing', 'pretty', 'well.'], ['I', 'want', 'a', 'word', 'with', 'you.'], ['I', 'will', 'go', 'cycling', 'even', 'if', 'it', 'rains.'], ['You', 'had', 'plenty', 'of', 'opportunity.'], ['I', 'just', "didn't", 'want', 'you', 'to', 'think', 'I', 'was', 'stingy.'], ['Lightning', 'does', 'sometimes', 'strike', 'the', 'same', 'place', 'twice.'], ['It', 'took', 'us', 'two', 'hours', 'to', 'get', 'to', 'Tokyo.'], ['What', 'book', 'did', 'you', 'buy?'], ["They're", 'rich.'], ["It's", 'a', 'long', 'story.'], ['I', "don't", 'think', 'I', 'can', 'make', 'it', 'to', 'your', 'party.'], ['You', "don't", 'have', 'to', 'do', 'that', 'if', 'you', "don't", 'really', 'want', 'to.'], ['How', 'much', 'is', 'the', 'commission?'], ["We've", 'really', 'got', 'to', 'step', 'on', 'it.'], ['I', 'got', 'up', 'too', 'early.'], ['Can', 'you', 'put', 'up', 'with', 'the', 'way', 'he', 'behaves?'], ['From', 'this', 'point,', "we'll", 'go', 'on', 'by', 'car.'], ['You', 'lost', 'the', 'game.'], ['Speak', 'quietly.'], ['Nobody', 'will', 'say', 'it', 'so', 'bluntly,', 'but', 'that', 'is', 'the', 'gist', 'of', 'it.'], ['It', 'was', 'a', 'rumor.'], ['I', 'hope', 'you', 'stop', 'telling', 'me', 'lies.'], ["I'll", 'give', 'you', 'a', 'piece', 'of', 'advice.'], ['Please', 'give', 'my', 'regards', 'to', 'your', 'father.'], ['I', "can't", 'do', 'that', 'either.'], ['Why', 'do', 'you', 'have', 'that?'], ['How', 'often', 'do', 'you', 'take', 'a', 'shower?'], ['I', 'know', 'these', 'people.'], ["That's", 'not', 'completely', 'accurate.'], ['I', "can't", 'believe', 'you', 'did', 'that', 'by', 'yourself.'], ['Are', 'you', 'a', 'natural', 'blonde?'], ['I', "don't", 'like', 'being', 'controlled.'], ['Dating', 'is', 'exhausting.'], ['I', 'was', 'deeply', 'impressed', 'by', 'his', 'speech.'], ['Have', 'you', 'heard', 'this', 'story', 'already?'], ['You', 'better', 'hurry.'], ["I'd", 'like', 'to', 'visit', 'your', 'country', 'someday.'], ['I', 'wanted', 'you', 'to', 'do', 'that.'], ['He', 'asked', 'me', 'to', 'speak', 'more', 'slowly.'], ['I', 'expected', 'a', 'better', 'explanation.'], ['You', 'stay', 'there.'], ['Let', 'us', 'know', 'when', "you'll", 'arrive.'], ['I', 'had', 'to', 'finish', 'what', "I'd", 'started.'], ['Where', 'did', 'you', 'live?'], ['I', "don't", 'think', 'Tom', 'can', 'do', 'that.'], ['How', 'many', 'of', 'them', 'were', 'there?'], ['The', 'girls', 'won.'], ['There', 'is', 'only', 'one', 'bath', 'towel.'], ['You', 'are', 'drunk!'], ["He's", 'leaving', 'for', 'Tokyo', 'tomorrow.'], ['If', "I'd", 'had', 'the', 'money,', 'I', "would've", 'bought', 'that.'], ['We', 'rented', 'an', 'apartment', 'when', 'we', 'lived', 'in', 'New', 'York.'], ['Did', 'you', 'talk', 'about', 'me?'], ["He's", 'Swiss.'], ['Which', 'one', 'is', 'more', 'expensive?'], ['Do', 'you', 'study', 'every', 'day?'], ['It', 'was', 'harder', 'than', 'I', 'thought.'], ["It's", 'a', 'complex', 'issue.'], ['What', 'did', 'Tom', 'tell', 'you', 'he', 'wanted', 'to', 'drink?'], ['The', 'protesters', 'set', 'many', 'cars', 'on', 'fire.'], ['That', 'was', "Tom's", 'plan', 'all', 'along.'], ['Tom', 'taught', 'Mary', 'to', 'swim.'], ['You', 'look', 'like', 'you', "don't", 'want', 'to', 'be', 'here.'], ['He', 'found', 'it', 'difficult', 'to', 'solve', 'the', 'problem.'], ['Thank', 'you', 'in', 'advance', 'for', 'your', 'help.'], ['They', 'saw', 'little', 'need', 'for', 'labor', 'unions.'], ["That's", 'one', 'of', 'the', 'weirdest', 'things', "I've", 'ever', 'seen.'], ["I'm", 'out', 'of', 'breath.'], ['We', 'chartered', 'a', 'bus.'], ['How', 'big', 'is', 'this', 'park?'], ['Mary', 'hugged', 'her', 'doll.'], ['You', 'taught', 'me', 'a', 'lot.'], ['I', 'like', 'it', 'when', 'you', 'sing.'], ['My', 'house', 'is', 'a', 'long', 'way', 'from', 'here.'], ['No', 'one', 'respects', 'me.'], ["What's", 'the', 'spelling', 'of', 'your', 'family', 'name?'], ['Call', 'me', 'if', 'you', 'need', 'help.'], ['Can', 'I', 'get', 'you', 'anything', 'else?'], ['That', 'museum', 'is', 'worth', 'visiting.'], ['Tom', 'probably', 'thought', 'I', 'was', 'thirsty.'], ['I', 'beg', 'your', 'pardon.', 'I', "didn't", 'quite', 'catch', 'your', 'name.'], ['I', 'lost', 'my', 'wallet', 'on', 'the', 'way', 'to', 'school.'], ['I', 'thought', 'it', 'might', 'be', 'a', 'good', 'idea', 'for', 'us', 'to', 'get', 'together', 'and', 'talk', 'about', 'it.'], ['Given', 'only', 'thirty', 'minutes,', 'we', "couldn't", 'answer', 'all', 'the', 'questions.'], ['Something', 'might', 'fall', 'on', 'you,', 'so', 'be', 'careful.'], ['He', 'has', 'some', 'money', 'in', 'the', 'bank.'], ['Just', 'be', 'glad', "you're", 'OK.'], ['What', 'do', 'you', 'think', 'of', 'when', 'you', 'look', 'at', 'this', 'photo?'], ['He', 'is', 'not', 'at', 'all', 'a', 'gentleman.'], ['I', 'am', '24', 'years', 'old.'], ['You', 'should', 'learn', 'to', 'restrain', 'yourself.'], ['His', 'story', 'was', 'published', 'in', 'a', 'magazine.'], ['I', "don't", 'know', 'how', 'they', 'do', 'it.'], ["We'll", 'find', 'it.'], ['I', 'want', 'to', 'go', 'to', 'school', 'in', 'Australia.'], ['The', 'summit', 'nations', 'put', 'free', 'trade', 'at', 'the', 'top', 'of', 'the', 'agenda.'], ['Tom', 'will', 'probably', 'never', 'win.'], ['The', 'mayor', 'is', 'not', 'available', 'now.'], ['Water', 'expands', 'with', 'heat.'], ['Are', 'we', 'being', 'charged', 'with', 'something?'], ['See', 'you', 'soon!'], ['When', 'it', 'comes', 'to', 'fishing,', "he's", 'an', 'expert.'], ['He', 'was', 'proud', 'of', 'his', 'daughter.'], ['The', 'house', 'looked', 'very', 'dismal.'], ["I'm", 'not', 'a', 'drunk.'], ['All', 'of', 'a', 'sudden,', 'it', 'became', 'cloudy.'], ["There's", 'something', 'about', 'Tom', 'that', 'I', "don't", 'like.'], ['I', 'know', 'you', 'like', 'coffee.'], ['What', 'do', 'you', 'think', 'that', 'means?'], ['I', 'am', 'short', 'of', 'money.'], ['Who', 'came?'], ['I', 'flunked', 'out', 'of', 'school.'], ['You', 'have', 'to', 'pay', 'in', 'advance.'], ['Can', 'you', 'think', 'of', 'any', 'reason', 'why', 'that', 'might', 'be', 'the', 'case?'], ['A', 'party', 'of', 'scientists', 'were', 'on', 'board', 'with', 'them.'], ["I'm", 'not', 'even', 'sure', 'if', 'this', 'is', 'my', 'key.'], ['I', 'figured', 'I', 'might', 'find', 'you', 'here.'], ['Many', 'people', 'are', 'still', 'missing.'], ['Please', 'show', 'me', 'your', 'stamp', 'album.'], ['How', 'do', 'you', 'remember', 'that?'], ['It', 'smells', 'burnt.'], ["We'll", 'continue.'], ['Tom', 'carried', 'Mary', 'on', 'his', 'shoulders.'], ['Italy', 'invaded', 'Ethiopia', 'in', '1935.'], ['I', 'like', 'that', 'idea.'], ['Everyone', 'felt', 'safe.'], ['I', "don't", 'remember', 'it', 'at', 'all.'], ['How', 'does', 'one', 'become', 'rich?'], ['Do', 'you', 'talk', 'to', 'your', 'cats?'], ["I'm", 'glad', 'to', 'see', 'you', 'here.'], ["You'd", 'be', 'perfect', 'for', 'that.'], ['He', 'has', 'not', 'written', 'to', 'us', 'since', 'last', 'February.'], ['The', 'primary', 'cause', 'of', 'his', 'failure', 'is', 'laziness.'], ['Please', 'do', 'whatever', 'you', 'think', 'is', 'necessary.'], ['Tom', 'never', 'apologized.'], ["I'm", 'not', 'ready', 'for', 'this.'], ['I', "didn't", 'think', "you'd", 'be', 'so', 'late.'], ['I', "won't", 'say', 'it', 'again.'], ['Can', 'you', 'drive', 'me', 'home?'], ['I', 'want', 'to', 'send', 'this', 'letter', 'to', 'Japan.'], ['Did', 'you', 'go', 'to', 'the', 'restaurant', 'yesterday?'], ['You', "shouldn't", 'go', 'to', 'school.'], ['I', 'never', 'saw', 'him', 'again.'], ['We', 'overslept.'], ['I', 'would', 'like', 'to', 'chat', 'with', 'you', 'by', 'e-mail.'], ['Why', 'are', 'you', 'in', 'such', 'a', 'bad', 'mood?'], ["I've", 'learned', 'to', 'expect', 'the', 'unexpected.'], ["It's", 'impossible', 'to', 'reason', 'with', 'a', 'drunk.'], ["She's", 'wearing', 'a', 'cool', 'hat.'], ['Tom', 'seems', 'to', 'be', 'seasick.'], ['Tom', 'stutters.'], ['Thank', 'you', 'for', 'your', 'patience.'], ['Trade', 'between', 'two', 'countries', 'can', 'be', 'complex.'], ['The', 'movie', 'received', 'mixed', 'reviews.'], ['The', 'place', 'is', 'apparently', 'deserted.'], ["Here's", 'your', 'beer.'], ["There's", 'something', "I'd", 'like', 'you', 'to', 'take', 'a', 'look', 'at.'], ['I', 'only', 'wish', 'I', 'were', 'able', 'to', 'help.'], ["I'll", 'do', 'the', 'work', 'tomorrow.'], ['He', 'believed', 'that', 'blacks', 'could', 'win', 'their', 'fight', 'for', 'equal', 'rights', 'without', 'violence.'], ['I', 'am', 'proud', 'to', 'work', 'with', 'you.'], ['I', 'plan', 'to', 'go', 'to', 'France', 'next', 'year.'], ['I', 'know', "you're", 'busy,', 'but', 'can', 'I', 'talk', 'to', 'you', 'for', 'a', 'minute?'], ['What', 'are', 'you', 'interested', 'in?'], ['My', 'daughter', 'is', 'to', 'get', 'married', 'in', 'June.'], ['Show', 'me', 'the', 'photos,', 'please.'], ['I', 'have', 'an', 'appointment', 'I', "don't", 'want', 'to', 'be', 'late', 'for.'], ['I', 'wonder', 'if', 'you', 'could', 'tell', 'me', 'if', 'there', 'is', 'a', 'post', 'office', 'in', 'this', 'area.'], ['Fur', 'coats', 'are', 'on', 'sale.'], ['I', "can't", 'just', 'walk', 'away.'], ['All', 'eyes', 'were', 'glued', 'on', 'the', 'TV', 'set', 'as', 'the', 'election', 'results', 'came', 'in.'], ['God', 'created', 'the', 'heaven', 'and', 'the', 'earth.'], ['I', 'love', 'you', 'and', 'I', 'will', 'always', 'love', 'you.'], ['We', 'want', 'more', 'food.'], ['She', 'is', 'always', 'kind', 'to', 'everyone.'], ['I', 'think', "he's", 'right.'], ['What', 'do', 'they', 'call', 'this?'], ['Close', 'the', 'door,', 'please.'], ['Can', 'you', 'still', 'remember', 'where', 'we', 'first', 'met?'], ['Did', 'you', 'start', 'the', 'dishwasher?'], ['He', 'laid', 'himself', 'on', 'the', 'bed.'], ['I', "don't", 'think', 'either', 'of', 'us', 'wants', 'that', 'to', 'happen.'], ['She', 'has', 'an', 'agreeable', 'voice.'], ["I'd", 'like', 'to', 'eat.'], ["I've", 'lived', 'here', 'for', 'more', 'than', 'three', 'years.'], ['I', 'am', 'only', 'joking.'], ["I'm", 'sorry.', 'I', "didn't", 'mean', 'to', 'make', 'you', 'cry.'], ["Don't", 'forget', 'to', 'let', 'me', 'know', 'when', "it's", 'time.'], ['He', 'promised', 'me', 'that', 'he', "won't", 'tell', 'anybody.'], ['Do', 'you', 'want', 'more', 'milk', 'in', 'your', 'coffee?'], ["It's", 'in', 'the', 'garage.'], ['I', 'fell', 'in', 'love.'], ['Are', 'you', 'sure', 'you', 'can', 'handle', 'this?'], ['A', 'priest', 'was', 'called', 'in', 'to', 'give', 'last', 'rites', 'to', 'the', 'dying', 'man.'], ['Can', 'you', 'supply', 'me', 'with', 'everything', 'I', 'need?'], ["You're", 'worried,', "aren't", 'you?'], ['You', 'scared', 'the', 'living', 'day', 'lights', 'out', 'of', 'me!'], ["You're", 'the', 'oldest.'], ['I', 'urgently', 'need', 'a', 'job.'], ['Oh', 'no!'], ['The', 'nurses', 'were', 'very', 'nice', 'to', 'me.'], ['We', 'talked', 'in', 'low', 'voices', 'so', 'we', "wouldn't", 'wake', 'the', 'baby.'], ['He', 'found', 'the', 'door', 'closed.'], ['I', 'wear', 'white', 'shirts', 'on', 'weekdays.'], ['I', 'have', 'to', 'keep', 'my', 'mind', 'on', 'this', 'important', 'question.'], ['Leave', 'this', 'to', 'me.'], ["I'd", 'like', 'you', 'to', 'meet', 'a', 'friend', 'of', 'mine.'], ['Tom', 'ate', 'a', 'chicken', 'sandwich.'], ["He's", 'rich.'], ['I', 'had', 'fun', 'last', 'night.'], ['Neither', 'of', 'them', 'looks', 'busy.'], ['I', "can't", 'see', 'him', 'either.'], ['You', 'have', 'a', 'lot', 'of', 'work', 'to', 'do.'], ['Have', 'you', 'already', 'spent', 'the', 'money', 'Tom', 'gave', 'you?'], ['They', 'do', 'not', 'know', 'how', 'to', 'do', 'it.'], ['As', 'we', 'ate', 'our', 'meal,', 'we', 'talked', 'about', 'what', 'we', 'had', 'done', 'that', 'day.'], ['Father', "doesn't", 'allow', 'me', 'to', 'drive.'], ["I'll", 'give', 'it', 'a', 'try.'], ["I'm", 'getting', 'a', 'lot', 'of', 'complaints.'], ["Don't", 'be', 'so', 'outraged.'], ['I', 'pretended', 'that', 'I', 'was', 'working.'], ['He', 'is', 'not', 'himself', 'today.'], ['How', 'far', 'do', 'you', 'live', 'from', 'here?'], ['I', 'know', 'that', 'I', 'can', 'go', 'faster.'], ['They', 'were', 'not', 'listening', 'to', 'music.'], ['I', "can't", 'believe', "I'm", 'talking', 'to', 'you', 'about', 'this.'], ["You're", 'going', 'to', 'pay', 'for', 'this.'], ['He', 'bought', 'his', 'daughter', 'a', 'dress.'], ['She', 'did', 'a', 'good', 'job.'], ['You', "don't", 'have', 'to', 'buy', 'water,', 'do', 'you?'], ['The', 'moment', 'I', 'held', 'the', 'baby', 'in', 'my', 'arms,', 'it', 'began', 'to', 'cry.'], ['This', 'fact', 'proves', 'her', 'innocence.'], ['The', 'person', 'who', 'donated', 'this', 'money', 'wishes', 'to', 'remain', 'anonymous.'], ['I', "can't", 'stop', 'you', 'from', 'revealing', 'my', 'secrets.', 'However,', 'I', 'beg', 'you', 'not', 'to.'], ['She', 'insulted', 'him.'], ["Don't", 'waste', 'your', 'time.'], ['This', 'is', 'a', 'funny', 'sentence.'], ['Remove', 'your', 'hat.'], ['I', "wasn't", 'told', 'where', 'we', 'were', 'going.'], ['Were', 'you', 'one', 'of', 'them?'], ['The', 'situation', 'became', 'chaotic.'], ['I', "don't", 'speak', 'fast.'], ['May', 'I', 'move', 'to', 'the', 'other', 'side', 'now?'], ['This', 'book', 'sold', 'well', 'in', 'Japan.'], ["That's", 'really', 'not', 'funny.'], ['I', 'admit', 'I', 'was', 'surprised.'], ['Bread', 'is', 'made', 'from', 'wheat.'], ['You', "won't", 'die', 'today.'], ['Lunch', 'is', 'on.'], ['I', 'have', 'won.'], ["You're", 'out', 'of', 'luck.'], ["I'm", 'not', 'home.'], ['Come', 'in,', 'the', "door's", 'open.'], ['I', "don't", 'see', 'the', 'relevance.'], ["Don't", 'worry', 'about', 'me.'], ['Look,', "I'm", 'really', 'busy.'], ['Tom', 'is', 'always', 'sleeping.'], ["Don't", 'make', 'me', 'say', 'it', 'again.'], ['Where', 'did', 'you', 'get', 'on', 'this', 'bus?'], ['I', "don't", 'know', 'my', 'neighbors.'], ['You', 'must', 'treat', 'them', 'with', 'more', 'consideration.'], ['What', 'foods', 'are', 'you', 'allergic', 'to?'], ['I', 'spend', 'a', 'few', 'hours', 'a', 'day', 'maintaining', 'my', 'website.'], ['Will', 'you', 'drink', 'another', 'cup', 'of', 'coffee?'], ['Yesterday', 'Mary', 'stayed', 'home', 'all', 'day.'], ['You', 'and', 'Tom', 'are', 'made', 'to', 'be', 'together.'], ['If', 'you', 'are', 'a', 'parent,', "don't", 'allow', 'yourself', 'to', 'set', 'your', 'heart', 'on', 'any', 'particular', 'line', 'of', 'work', 'for', 'your', 'children.'], ["You're", 'really', 'annoying.'], ['Tom', 'came', 'here', 'last', 'night.'], ['We', 'have', 'to', 'be', 'careful.'], ['It', 'did', 'not', 'come', 'off.'], ['No', 'one', 'gave', 'up', 'hope.'], ["We're", 'the', 'best', 'at', 'what', 'we', 'do.'], ['In', 'a', 'sense,', 'it', 'is', 'true.'], ['The', 'man', 'you', 'met', 'at', 'the', 'station', 'is', 'my', 'father.'], ['He', 'turned', 'to', 'his', 'friend', 'for', 'help.'], ['Try', 'putting', 'yourself', 'in', 'your', "mother's", 'shoes.'], ['If', 'it', 'were', 'not', 'for', 'his', 'idleness,', 'he', 'would', 'be', 'a', 'nice', 'fellow.'], ['Would', 'you', 'care', 'to', 'join', 'us?'], ["I'd", 'like', 'you', 'to', 'come', 'with', 'us.'], ['Please', 'tell', 'me', 'what', 'you', 'heard.'], ['My', 'son', 'is', 'too', 'skinny.'], ['She', 'asked', 'him', 'to', 'call', 'her', 'later,', 'but', 'he', 'forgot', 'to.'], ['In', 'Australia,', 'they', 'speak', 'English.'], ['I', 'killed', 'two', 'birds', 'with', 'one', 'stone.'], ['Many', 'countries', 'have', 'abolished', 'capital', 'punishment.'], ['This', 'is', 'not', 'my', 'specialty.'], ["That's", 'where', "you're", 'mistaken.'], ['I', 'feel', 'a', 'little', 'responsible.'], ['I', "should've", 'been', 'a', 'little', 'more', 'patient.'], ['How', 'are', 'you?'], ['Tom', 'and', 'Mary', 'claim', 'that', 'they', 'never', 'lie', 'to', 'each', 'other.'], ['Tom', 'took', 'all', 'my', 'stuff.'], ['A', 'heavy', 'snow', 'kept', 'us', 'from', 'going', 'to', 'school.'], ['I', 'am', 'taller.'], ['I', 'sleep', 'with', 'two', 'quilts', 'in', 'the', 'winter.'], ['We', 'have', 'to', 'get', 'away', 'from', 'here.'], ['Come', 'on.'], ['I', 'want', 'to', 'travel', 'with', 'you.'], ['We', 'count', 'on', 'you.'], ['I', 'wanted', 'to', 'do', 'that', 'before', '2:30.'], ["We're", 'buying.'], ['We', 'hardly', 'ever', 'talk', 'to', 'each', 'other', 'anymore.'], ['I', 'just', 'wanted', 'to', 'drop', 'by', 'to', 'say', 'hi.'], ['Tom', 'says', "you've", 'never', 'been', 'to', 'Boston.'], ['Please', 'come', 'around', 'someday', 'when', 'you', "aren't", 'busy.'], ['I', 'can', 'feel', 'it.'], ['He', 'has', 'a', 'good', 'record', 'as', 'a', 'businessman.'], ["I'm", 'fine', 'with', 'it.'], ['How', 'much', 'money', 'did', 'you', 'win?'], ['What', 'a', 'beautiful', 'scene!'], ["I'd", 'appreciate', 'it', 'if', "you'd", 'come', 'with', 'me.'], ['We', 'promised', 'to', 'stand', 'by', 'him', 'in', 'case', 'of', 'trouble.'], ['I', 'was', 'not', 'pleased.'], ['I', 'feel', 'a', 'little', 'better', 'now.'], ['Tom', "doesn't", 'often', 'eat', 'lunch', 'with', 'his', 'wife.'], ["Who's", 'the', 'boy', 'swimming', 'over', 'there?'], ['She', 'is', 'a', 'student', 'who', 'studies', 'very', 'hard.'], ['I', 'love', 'this', 'part.'], ["He's", 'an', 'excellent', 'kisser.'], ['You', 'better', 'get', 'some', 'sleep.'], ['They', 'left', 'without', 'me.'], ['Am', 'I', 'under', 'suspicion?'], ["He's", 'very', 'honest,', 'so', 'we', 'can', 'rely', 'on', 'him.'], ['Have', 'you', 'chosen', 'a', 'topic?'], ['I', 'was', 'just', 'wondering', 'how', 'you', 'guys', 'ever', 'got', 'talking', 'about', 'this', 'topic.'], ['I', 'saw', 'a', 'stranger', 'enter', 'that', 'house.'], ['Meat,', 'please.'], ['Do', 'you', 'ever', 'think', 'about', 'that', 'guy?'], ['I', "didn't", 'know', 'he', 'drank', 'so', 'much.'], ['You', 'were', 'afraid,', "weren't", 'you?'], ["I'm", 'contagious.'], ["You're", 'on', 'the', 'right', 'track.'], ['The', 'party', 'is', 'just', 'getting', 'started.'], ['I', 'see', 'a', 'light.'], ['This', "isn't", 'possible.'], ['I', 'want', 'you', 'to', 'be', 'here.'], ['I', 'never', 'imagined', 'meeting', 'you', 'here.'], ['This', 'is', 'my', 'dictionary.'], ["She's", 'smarter', 'than', 'me.'], ['I', 'thought', 'you', 'were', 'older', 'than', 'me.'], ['Gas', 'was', 'escaping', 'from', 'a', 'crack', 'in', 'the', 'pipe.'], ['Tom', "doesn't", 'need', 'it.'], ['You', 'worry', 'about', 'your', 'weight', 'too', 'much.'], ['You', "can't", 'both', 'be', 'telling', 'the', 'truth.'], ['I', 'know', "it's", 'going', 'to', 'be', 'unpleasant', 'to', 'talk', 'about', 'the', 'accident.'], ['Seriously?'], ['She', 'is', 'a', 'little', 'shy.'], ['She', 'advised', 'him', 'to', 'take', 'better', 'care', 'of', 'himself.'], ['I', "wouldn't", 'want', 'to', 'be', 'a', 'brain', 'surgeon.'], ['It', 'looks', 'like', "it's", 'going', 'to', 'be', 'sunny.'], ['His', 'wife', 'has', 'started', 'to', 'work', 'out', 'of', 'necessity.'], ['Tom', 'asked', 'us', 'several', 'questions.'], ['Red-haired', 'people', 'tend', 'to', 'have', 'freckles.'], ["She's", 'busy', 'with', 'her', 'work.'], ["I'd", 'like', 'to', 'know', 'where', 'Tom', 'hid', 'his', 'key.'], ['Do', 'you', 'smell', 'something?'], ['Tom', 'refused', 'to', 'sign', 'the', 'document.'], ['I', "don't", 'know', 'if', "that's", 'a', 'good', 'idea.'], ['Are', 'you', 'sure', "you're", 'not', 'tired?'], ['Tom', "hasn't", 'given', 'us', 'anything.'], ['I', 'received', 'an', 'invitation', 'from', 'him,', 'but', "didn't", 'accept', 'it.'], ['The', 'stars', 'are', 'shining', 'in', 'the', 'sky.'], ["Where's", 'your', 'drink?'], ['Stop', 'deluding', 'yourselves.'], ['The', 'sky', 'was', 'full', 'of', 'stars.'], ["They're", 'outside.'], ['The', 'plane', 'will', 'take', 'off', 'in', 'one', 'hour.'], ["I'll", 'call', 'you', 'back', 'when', 'I', 'get', 'to', 'the', 'bus', 'stop.'], ['Do', 'you', 'know', 'why', 'spring', 'rolls', 'are', 'called', 'spring', 'rolls?'], ['Speech', 'is', 'silver,', 'silence', 'is', 'golden.'], ['We', 'wandered', 'aimlessly', 'around', 'the', 'shopping', 'district.'], ['I', 'ran', 'away.'], ["I'm", 'studying', 'at', 'the', 'University', 'of', 'Hyogo.'], ["You'd", 'better', 'change', 'your', 'eating', 'habits.'], ["That's", 'not', 'surprising.'], ['I', "wouldn't", 'want', 'to', 'be', 'a', 'judge.'], ['I', 'raise', 'orchids.'], ['She', 'may', 'be', 'cute,', 'but', 'I', "don't", 'like', 'her.'], ['He', 'was', 'the', 'envy', 'of', 'his', 'friends.'], ['Who', 'told', 'you', 'to', 'bring', 'me', 'here?'], ['I', "won't", 'let', 'you', 'boss', 'me', 'around', 'anymore.'], ["I'm", 'not', 'done', 'with', 'you', 'yet.'], ["It's", 'a', 'rough', 'neighborhood.'], ['They', "won't", 'get', 'the', 'chance.'], ["Here's", 'a', 'towel', 'you', 'can', 'use.'], ["You've", 'got', 'your', 'permit,', 'right?'], ['When', 'the', 'results', 'are', 'made', 'public,', "I'll", 'let', 'you', 'know.'], ['I', 'was', 'right', 'on', 'the', 'spot', 'when', 'it', 'happened.'], ['When', 'I', 'grow', 'up', 'I', 'want', 'to', 'be', 'just', 'like', 'you.'], ['The', 'more', 'you', 'look,', 'the', 'more', 'you', 'will', 'see,', 'and', 'the', 'more', 'interesting', 'they', 'will', 'become.'], ["I'm", 'still', 'not', 'sure', 'I', 'can', 'do', 'that.'], ['What', 'would', 'you', 'do', 'in', 'this', 'situation?'], ['It', "shouldn't", 'be', 'like', 'that.'], ['The', 'syntax', 'of', 'Python', 'scripts', 'is', 'very', 'simple.'], ['Do', 'you', 'like', 'French', 'wines?'], ['He', 'was', 'very', 'fun.'], ['Tom', 'pulled', 'the', 'rope.'], ['Students', 'generally', 'like', 'a', 'teacher', 'who', 'understands', 'their', 'problems.'], ['I', 'looked', 'down.'], ['Would', 'you', 'be', 'willing', 'to', 'show', 'me', 'how', 'to', 'do', 'that?'], ["You've", 'got', 'to', 'take', 'care', 'of', 'yourself.'], ['He', 'seemed', 'to', 'like', 'that.'], ['They', 'plan', 'to', 'have', 'a', 'party.'], ['I', 'really', 'like', 'being', 'with', 'you.'], ['I', 'found', 'a', 'French-Hebrew', 'dictionary', 'at', 'a', 'small', 'bookstore.'], ["I'll", 'be', 'going.'], ['Tom', 'wants', 'me', 'to', 'take', 'his', 'place.'], ['Everybody', 'looked', 'sick.'], ['They', 'died', 'one', 'after', 'another.'], ['The', 'early', 'bird', 'catches', 'the', 'worm.'], ['I', 'listened.'], ['Music', 'is', 'important', 'to', 'me.'], ['She', 'suddenly', 'lost', 'consciousness.'], ['If', 'you', 'want', 'to', 'stay', 'here,', 'you', 'are', 'welcome', 'to.'], ['Correct', 'the', 'following', 'sentences.'], ['Why', 'are', 'you', 'so', 'tired', 'today?'], ['You', 'made', 'this', 'all', 'possible.'], ['I', 'heard', 'someone', 'shouting.'], ['I', 'know', 'Tom', 'is', 'a', 'bit', 'stingy.'], ['You', 'have', 'my', 'number.', 'Call', 'me', 'sometime.'], ['He', 'refused', 'to', 'shake', 'hands.'], ['You', "don't", 'have', 'to', 'come.'], ['Hypnotism', 'works.'], ['Help', 'Tom.'], ['Is', 'that', 'what', 'you', 'want?'], ['For', 'my', 'part,', 'I', 'have', 'no', 'objection.'], ['Who', 'all', 'knows', 'about', 'this?'], ['His', 'short', 'stature', 'makes', 'him', 'feel', 'insecure.'], ['Tom', "didn't", 'give', 'me', 'what', 'I', 'needed.'], ['Keep', 'the', 'meter', 'running.'], ["I'm", 'almost', 'always', 'at', 'home', 'on', 'Mondays.'], ["You'll", 'have', 'to', 'drive.'], ['I', 'have', 'errands', 'to', 'run.'], ['I', "didn't", 'tell', 'Tom', 'everything', 'Mary', 'asked', 'me', 'to', 'tell', 'him.'], ['Corporate', 'borrowing', 'from', 'financial', 'institutions', 'is', 'rising', 'due', 'to', 'the', 'low', 'interest', 'rate.'], ['I', 'seldom', 'hear', 'from', 'him.'], ['The', 'administration', 'makes', 'important', 'decisions.'], ['I', "don't", 'usually', 'eat', 'at', 'places', 'like', 'this.'], ['I', 'quit', 'smoking', 'six', 'months', 'ago.'], ['I', 'want', 'to', 'discuss', 'this', 'with', 'your', 'manager.'], ['How', 'much', 'further', 'do', 'we', 'have', 'to', 'go?'], ['I', 'was', 'convicted.'], ['It', 'was', 'a', 'tradition.'], ['How', 'did', 'Tom', 'pay', 'the', 'rent?'], ['What', 'is', 'the', 'name', 'of', 'that', 'bird?'], ['Why', 'are', 'you', 'so', 'secretive?'], ['He', 'touched', 'my', 'hand.'], ['I', 'am', 'pretty', 'sure.'], ['What', 'do', 'you', 'do', 'for', 'a', 'living?'], ['I', 'am', 'studying', 'to', 'be', 'a', 'translator', 'or', 'interpreter.'], ['I', 'figured', 'you', "wouldn't", 'want', 'to', 'go', 'there', 'without', 'me.'], ['The', 'cat', 'is', 'playing', 'with', 'the', 'children.'], ['Are', 'you', 'saying', 'that', "I'm", 'a', 'liar?'], ['The', 'coffee', 'was', 'so', 'hot', 'that', 'I', "couldn't", 'drink', 'it.'], ['This', 'is', 'the', 'important', 'part.'], ['How', 'come', 'you', "didn't", 'call', 'me', 'last', 'night?'], ['May', 'I', 'take', 'a', 'rest?'], ["I'm", 'really', 'happy', 'for', 'you.'], ['I', "didn't", 'vote.'], ['The', 'road', 'turns', 'a', 'bit', 'to', 'the', 'west.'], ['Tom', 'thinks', "I'm", 'his', 'enemy.'], ['Do', 'you', 'have', 'any', 'French', 'newspapers?'], ['How', 'strong', 'he', 'is!'], ['I', 'want', 'to', 'find', 'a', 'way', 'for', 'us', 'to', 'be', 'happy.'], ['This', 'is', 'a', 'lot', 'more', 'fun', 'than', 'studying.'], ['Each', 'of', 'them', 'has', 'to', 'write', 'a', 'report', 'about', 'what', 'he', 'saw.'], ['I', 'want', 'one!'], ['She', 'suddenly', 'kissed', 'me.'], ['It', 'was', 'extremely', 'hot,', 'so', 'I', 'took', 'my', 'coat', 'off.'], ['I', "couldn't", 'see', "Tom's", 'face.'], ['The', 'crops', 'need', 'rain.'], ['I', 'want', 'your', 'opinion.'], ['He', 'chuckled.'], ['He', 'was', 'scolded', 'by', 'his', 'teacher', 'for', 'being', 'lazy.'], ['How', 'was', 'the', 'museum?'], ['I', 'think', 'I', 'know', 'what', 'this', 'is.'], ['You', 'must', 'be', 'careful.'], ['I', "shouldn't", 'have', 'kissed', 'Tom.'], ['Could', 'you', 'tell', 'me', 'which', 'bus', 'or', 'train', 'goes', 'to', 'the', 'center', 'of', 'the', 'town?'], ['I', 'was', 'speechless.'], ['I', 'told', 'you', 'it', "wouldn't", 'work,', "didn't", 'I?'], ['I', 'just', 'feel', 'awful.'], ["Don't", 'touch', 'this!'], ["I'm", 'a', 'good', 'taxi', 'driver.'], ['I', 'hope', "you're", 'happy.'], ['I', 'apologize', 'to', 'all', 'of', 'you.'], ['We', 'want', 'revenge.'], ['I', 'was', 'completely', 'shocked.'], ['Is', 'anything', 'missing?'], ["You've", 'gone', 'too', 'far', 'this', 'time.'], ['I', "don't", 'want', 'Tom', 'to', 'be', 'unhappy.'], ['The', 'only', 'reason', 'Tom', 'went', 'to', 'the', 'party', 'was', 'that', 'he', 'expected', 'Mary', 'to', 'be', 'there.'], ['Thank', 'you', 'for', 'all', 'your', 'help.'], ['I', 'need', 'to', 'do', 'something', 'else', 'first.'], ['You', 'have', 'only', 'to', 'push', 'this', 'button.'], ['He', 'was', 'anxious', 'to', 'meet', 'you.'], ['Tom', "doesn't", 'know', 'his', 'neighbors.'], ['The', 'flame', 'flickered', 'for', 'a', 'moment,', 'then', 'died', 'out.'], ['My', 'girlfriend', 'is', 'a', 'good', 'dancer.'], ['He', 'won', 'the', 'prize', 'last', 'week.'], ['He', 'gave', 'it', 'a', 'new', 'name.'], ['My', 'sister', 'has', 'traced', 'our', 'family', 'tree', 'back', 'to', 'the', '16th', 'century.'], ['I', 'thought', 'I', 'was', 'about', 'to', 'be', 'captured', 'so', 'I', 'ran', 'as', 'fast', 'as', 'I', 'could.'], ["He's", 'a', 'meth', 'addict.'], ["I'm", 'not', 'coming', 'back', 'here.'], ['My', 'mother', 'is', 'busy', 'in', 'the', 'kitchen.'], ['Tom', 'kissed', 'Mary', 'and', 'then', 'went', 'to', 'work.'], ['She', 'has', 'some', 'literary', 'talent.'], ["What're", 'you', 'all', 'doing', 'in', 'the', 'library?'], ["I'm", 'sorry', 'you', 'got', 'dragged', 'into', 'this.'], ['I', 'can', 'rip', 'you', 'apart', 'with', 'my', 'bare', 'hands.'], ['I', "didn't", 'expect', 'you.'], ['Put', 'the', 'baby', 'to', 'sleep.'], ['There', 'were', 'about', 'one', 'thousand', 'people.'], ['If', 'you', 'want', 'to', 'stay', 'here,', 'you', 'are', 'welcome', 'to.'], ['I', 'think', 'we', 'should', 'call', 'Tom.'], ['Can', 'you', 'juggle?'], ["That's", 'not', 'yours.'], ['He', 'tried', 'to', 'open', 'the', 'door.'], ['Did', 'I', 'say', 'that?'], ["I'm", 'being', 'serious.'], ["You're", 'wrong.', "That's", 'not', 'what', 'I', 'said.'], ['Did', 'you', 'watch', 'the', 'Winter', 'Olympics?'], ["We're", 'ready', 'now.'], ['Am', 'I', 'first?'], ['He', 'reached', 'for', 'the', 'book.'], ['I', 'messed', 'up.'], ['Would', 'you', 'mind', 'if', 'I', 'smoke?'], ['In', 'the', 'summer,', 'people', 'go', 'to', 'the', 'seaside.'], ['How', 'many', 'people', 'were', 'killed', 'in', 'the', 'store?'], ['Do', 'you', 'think', 'Tom', 'is', 'conceited?'], ['Finally,', 'I', 'have', 'my', 'own', 'car.'], ['Tom', 'was', 'in', 'the', 'shower.'], ['I', "don't", 'want', 'any', 'money.'], ['The', 'girl', 'resembles', 'her', 'mother', 'very', 'much.'], ['A', 'policeman', 'is', 'outside.'], ['I', "couldn't", 'tell', 'Tom', 'what', 'was', 'going', 'to', 'happen.'], ['We', "don't", 'need', 'it', 'anymore.'], ["Don't", 'do', 'it!', "It's", 'stupid', 'and', 'dangerous.'], ['She', 'left', 'France', 'for', 'America.'], ['"When', 'will', 'you', 'be', 'back?"', '"It', 'all', 'depends', 'on', 'the', 'weather."'], ['I', "can't", 'believe', 'everything', 'that', 'just', 'happened.'], ['Which', 'program', 'did', 'you', 'watch', 'yesterday?'], ['I', 'bought', 'this', 'book', 'the', 'other', 'day.'], ['Tom', 'told', 'me', 'he', 'was', 'interested.'], ['She', 'is', 'two', 'years', 'older', 'than', 'you.'], ['I', "couldn't", 'help', 'yawning.'], ['We', 'were', 'winning.'], ['Your', 'wish', 'will', 'come', 'true', 'in', 'the', 'near', 'future.'], ['What', 'can', 'I', 'do', 'you', 'for?'], ["I'd", 'like', 'the', 'bill,', 'please.'], ['I', "don't", 'know', 'whether', 'he', 'is', 'dead', 'or', 'alive.'], ['Was', 'there', 'anyone', 'else', 'around?'], ['He', 'was', 'born', 'in', 'this', 'very', 'room.'], ['Is', 'that', 'what', 'you', 'said?'], ['The', 'tragedy', 'of', 'war', 'must', 'not', 'be', 'forgotten.'], ["You're", 'thin.'], ['Does', 'anyone', 'have', 'a', 'tissue?'], ['Were', 'you', 'successful?'], ["I'll", 'be', 'checking', 'on', 'you.'], ["I'm", 'dizzy.'], ["I'm", 'used', 'to', 'driving', 'a', 'truck.'], ["Let's", 'sit', 'here', 'until', 'the', 'sun', 'sets.'], ['I', 'was', 'really', 'surprised.'], ['You', 'scare', 'me.'], ['Do', 'you', 'think', 'Tom', 'is', 'still', 'up?'], ['I', "don't", 'even', 'want', 'you', 'there.'], ['Is', 'that', 'yours?'], ['She', 'has', 'been', 'to', 'Paris.'], ['The', 'tsunami', 'alert', 'was', 'cancelled.'], ['She', 'suggested', 'that', 'I', 'give', 'it', 'to', 'him', 'right', 'away.'], ['Speak', 'louder,', 'please.'], ['I', 'forgot', 'to', 'tell', 'you', 'something.'], ['Anybody', 'knows', 'it.'], ['Why', "don't", 'we', 'share', 'a', 'room?'], ['Could', 'you', 'please', 'take', 'the', 'dog', 'out', 'for', 'a', 'walk?'], ['I', "can't", 'believe', 'how', 'much', 'things', 'have', 'changed', 'since', 'we', 'were', 'kids.'], ['I', 'was', 'very', 'satisfied', 'with', 'this.'], ['Why', "don't", 'you', 'talk', 'to', 'us', 'now?'], ['Do', 'you', 'have', 'something', 'to', 'say', 'to', 'me?'], ["I'm", 'certain', 'that', "he'll", 'come.'], ['President', 'Lincoln', 'was', 'what', 'we', 'call', 'a', 'self-made', 'man.'], ['Before', 'you', 'can', 'love', 'others,', 'you', 'need', 'to', 'be', 'able', 'to', 'love', 'yourself.'], ['You', 'must', 'stop', 'him.'], ['Tom', 'knows', 'this', 'is', 'the', 'truth.'], ["It's", 'quite', 'difficult', 'to', 'master', 'French', 'in', '2', 'or', '3', 'years.'], ['The', 'dog', 'barked.'], ['Are', 'you', 'proud', 'of', 'me?'], ['Those', 'were', 'his', 'actual', 'words.'], ['This', 'product', 'is', 'intended', 'for', 'private', 'use', 'only.'], ['He', 'is', 'good', 'at', 'cooking.'], ["I'm", 'sure', 'I', "don't", 'need', 'to', 'do', 'that.'], ['Let', 'Tom', 'decide.'], ["Don't", 'worry.', "We'll", 'find', 'it.'], ["You'd", 'better', 'check', 'this', 'out.'], ['His', 'laziness', 'is', 'a', 'bad', 'sign', 'for', 'the', 'future.'], ['This', 'booklet', 'is', 'free', 'of', 'charge.'], ["How're", 'you', 'doing?'], ['I', 'love', 'to', 'hear', 'a', 'grandfather', 'clock', 'chime.'], ['Tom', 'is', 'very', 'handsome.'], ['Tom', 'bought', 'me', 'this', 'book.'], ["He'll", 'lend', 'you', 'his', 'book.'], ['What', 'will', 'you', 'do', 'with', 'your', 'first', 'paycheck?'], ["I've", 'got', 'a', 'toothache.'], ['This', 'computer', 'runs', 'on', 'batteries.'], ['I', 'did', 'that', 'ages', 'ago.'], ['Everyone', 'screamed.'], ['Are', 'you', 'lonely?'], ['He', 'opened', 'the', 'door.'], ['He', 'does', 'nothing', 'but', 'watch', 'TV', 'all', 'day', 'long.'], ['These', 'houses', 'were', 'burnt', 'down', 'to', 'the', 'ground', 'by', 'the', 'enemy.'], ['This', 'room', 'is', 'large', 'enough.'], ['She', 'is', 'not', 'anything', 'like', 'her', 'mother.'], ['The', 'queen', 'shook', 'hands', 'with', 'each', 'player', 'after', 'the', 'game.'], ['I', 'have', 'fewer', 'books', 'than', 'you.'], ['It', 'is', 'terrible', 'weather', 'today.'], ['Have', 'you', 'been', 'told', 'when', 'you', 'are', 'expected', 'to', 'be', 'here?'], ['Is', 'French', 'a', 'difficult', 'language', 'to', 'learn?'], ['Just', 'forget', 'it.'], ['Tom', 'likes', 'basketball.'], ['My', 'shoulder', 'hurts.'], ['I', 'saved', 'you.'], ['He', 'has', 'no', 'hat', 'on.'], ['He', 'knows', 'that', 'you', 'know.'], ['I', 'used', 'to', 'play', 'tennis.'], ["It's", 'time', 'to', 'plan', 'ahead.'], ['I', 'just', 'want', 'to', 'look', 'at', 'it,', "that's", 'all.'], ['Tom', "isn't", 'afraid', 'to', 'die.'], ['Your', 'life', 'may', 'be', 'in', 'danger.'], ['Why', 'do', 'you', 'hate', 'me?'], ['The', 'old', 'man', 'tripped', 'over', 'his', 'own', 'feet.'], ['Could', 'you', 'please', 'tell', 'me', 'why', 'you', 'love', 'her?'], ['It', 'was', 'the', 'best', 'thing', 'that', 'ever', 'happened', 'to', 'me.'], ['This', 'is', 'legal.'], ['Have', 'you', 'ever', 'ridden', 'a', 'mule?'], ['He', 'lives', 'in', 'a', 'gated', 'community.'], ['I', 'have', 'no', 'choice', 'but', 'to', 'eat', 'what', 'they', 'serve', 'me.'], ['I', 'like', 'things', 'done', 'properly.'], ['Bring', 'me', 'some', 'water.'], ['That', "didn't", 'even', 'occur', 'to', 'me.'], ['I', 'immediately', 'built', 'a', 'fire.'], ['We', 'still', 'have', 'a', 'lot', 'to', 'do.'], ['Cats', 'are', 'cute.'], ['It', 'pains', 'me', 'to', 'disagree', 'with', 'your', 'opinion.'], ['I', 'really', 'like', 'you', 'a', 'lot.'], ['Half', 'of', 'the', 'people', 'in', 'the', 'office', 'took', 'a', 'day', 'off.'], ['It', 'is', 'a', 'pity', 'you', 'cannot', 'come.'], ['I', 'think', 'about', 'them', 'often.'], ['I', 'must', 'have', 'my', 'work', 'finished', 'by', 'tomorrow.'], ['I', "didn't", 'know', 'that', 'you', 'needed', 'to', 'do', 'that.'], ['She', 'will', 'give', 'you', 'what', 'money', 'she', 'has.'], ['I', 'got', 'busy.'], ['We', 'all', 'helped', 'with', 'the', 'harvest.'], ['Tom', 'can', 'ski', 'just', 'as', 'well', 'as', 'Mary.'], ['Tom', 'would', 'say', 'yes.'], ['She', "can't", 'play', 'piano', 'very', 'well.'], ['The', 'idea', 'is', 'typical', 'of', 'him.'], ["It's", 'not', 'here.'], ['The', 'concert', 'was', 'incredible.'], ['I', 'have', 'no', 'further', 'questions.'], ['Tom', 'poured', 'more', 'wine', 'into', 'his', 'glass.'], ['She', 'filled', 'the', 'vase', 'with', 'water.'], ['You', 'must', 'quit', 'drinking.'], ['The', 'door', 'is', 'now', 'closed.'], ["That's", 'enough.'], ['I', "didn't", 'break', 'it.'], ['I', 'can', 'survive.'], ['A', 'man', 'came', 'up', 'to', 'me', 'and', 'asked', 'for', 'a', 'match.'], ['I', "didn't", 'expect', 'so', 'many', 'people', 'to', 'be', 'here.'], ['Kansas', 'is', 'smack', 'dab', 'in', 'the', 'middle', 'of', 'the', 'US.'], ['I', 'only', 'hope', "I'm", 'not', 'too', 'late.'], ["It's", 'not', 'what', 'he', 'said,', 'but', 'the', 'way', 'he', 'said', 'it.'], ['I', 'agree', 'with', 'everyone.'], ['They', "don't", 'know', 'that', "I'm", 'Japanese.'], ['Would', 'you', 'like', 'to', 'have', 'dinner', 'at', 'my', 'place', 'tonight?'], ["It's", 'not', 'the', 'answer.'], ['Day', 'will', 'break', 'soon.'], ['Is', 'that', 'normal?'], ['Can', 'you', 'imagine', 'him', 'driving', 'such', 'a', 'splendid', 'car?'], ["That's", 'my', 'story', 'and', "I'm", 'sticking', 'to', 'it.'], ["You're", 'not', 'looking', 'at', 'the', 'whole', 'picture.'], ['Are', 'your', 'hands', 'clean?'], ['I', "don't", 'have', 'as', 'much', 'money', 'as', 'you', 'think.'], ['To', 'tell', 'the', 'truth,', 'I', "didn't", 'go', 'there.'], ['I', 'know', 'Tom', 'is', 'a', 'light', 'eater.'], ['Please', 'pardon', 'me', 'for', 'coming', 'late.'], ['Tom', 'talked', 'all', 'night.'], ['Can', 'I', 'see', 'your', "driver's", 'license?'], ['Did', 'you', 'notice', 'her', 'new', 'dress?'], ['I', 'have', 'to', 'tighten', 'these', 'bolts.'], ['We', 'asked', 'him', 'what', 'he', 'was', 'called.'], ['Any', 'chance', 'of', 'us', 'getting', 'approved?'], ['I', "haven't", 'met', 'with', 'Tom', 'recently.'], ['Bad', 'weather', 'prevented', 'them', 'from', 'sailing.'], ['I', 'live', 'and', 'work', 'in', 'France.'], ['Tom', 'speaks', 'French', 'as', 'well', 'as', 'I', 'do.'], ['Tom', 'is', 'now', 'in', 'jail.'], ['Winter', 'is', 'right', 'around', 'the', 'corner.'], ['When', 'did', 'you', 'start', 'writing', 'songs?'], ["I'd", 'love', 'to', 'know', 'if', 'my', 'luggage', 'is', 'arriving', 'soon.'], ['Tom', 'went', 'home', 'with', 'Mary.'], ['What', 'exactly', "don't", 'you', 'get?'], ['I', 'met', 'her', 'by', 'chance.'], ['I', 'think', "it's", 'time', 'for', 'me', 'to', 'go.'], ['I', 'had', 'the', 'chance', 'to', 'buy', 'that,', 'but', 'I', 'decided', 'not', 'to.'], ['They', "didn't", 'pay', 'attention.'], ['I', "don't", 'believe', 'Tom', 'is', 'a', 'racist.'], ['When', 'do', 'owls', 'sleep?'], ['You', 'can', 'trust', 'them.'], ["Tom's", 'window', 'was', 'open.'], ['This', "one's", 'on', 'me.'], ['The', 'weather', 'forecast', 'is', 'not', 'necessarily', 'reliable.'], ['What', 'happened', 'in', 'the', 'meeting?'], ["I'm", 'sure', "I'll", 'regret', 'this.'], ['Do', 'you', 'like', 'to', 'study?'], ['Tom', 'threw', 'away', 'all', 'the', 'old', 'newspapers', 'that', 'were', 'in', 'the', 'attic.'], ['I', 'thought', 'you', 'might', 'want', 'to', 'come', 'along.'], ['Why', "don't", 'you', 'just', 'back', 'off?'], ["You're", 'grown', 'up', 'now.'], ['Let', 'me', 'try', 'again.'], ['Is', 'that', 'so?'], ['Are', 'they', 'friends', 'of', 'yours?'], ['I', "can't", 'see.'], ['I', 'let', 'you', 'down.'], ['We', 'associate', 'the', 'name', 'of', 'Einstein', 'with', 'the', 'theory', 'of', 'relativity.'], ['I', 'miss', 'you', 'badly.'], ['I', 'know', 'that', 'Tom', "won't", 'tell', 'Mary.'], ["I'd", 'be', 'happy', 'to', 'show', 'it', 'to', 'you.'], ['Did', 'you', 'enjoy', 'your', 'winter', 'holidays?'], ['You', "can't", 'get', 'both.'], ['I', 'think', "we've", 'wasted', 'enough', 'of', 'your', 'time.'], ['I', 'want', 'you', 'to', 'want', 'me.'], ['He', 'never', 'told', 'anyone.'], ['Everybody', 'seems', 'to', 'be', 'having', 'a', 'good', 'time.'], ['I', 'suggest', 'that', 'you', 'not', 'wait', 'any', 'longer.'], ['Obviously,', 'you', 'volunteered.'], ['I', 'thought', 'you', 'might', 'want', 'this', 'back.'], ["Let's", 'try', 'it', 'with', 'this', 'one.'], ["I'm", 'dying', 'to', 'see', 'you.'], ['The', 'report', 'is', 'being', 'prepared', 'by', 'the', 'committee.'], ['I', 'assume', 'so.'], ["He's", 'afraid', 'of', 'snakes.'], ['I', 'know', "you're", 'not', 'comfortable.'], ['He', 'was', 'always', 'annoyed', 'in', 'the', 'city', 'by', 'noises', 'of', 'one', 'sort', 'or', 'another.'], ["It's", 'not', 'what', 'I', 'wanted', 'to', 'say.'], ["That'll", 'be', 'a', 'lot', 'of', 'fun.'], ['Can', 'you', 'answer', 'this', 'question?'], ['You', 'are', 'not', 'permitted', 'to', 'bring', 'dogs', 'into', 'this', 'building.'], ['Tom', 'stopped', 'it.'], ['They', 'clung', 'together', 'for', 'warmth.'], ['Tom', "doesn't", 'know', 'what', 'this', 'is.', 'Do', 'you?'], ['I', "don't", 'think', 'Tom', 'likes', 'to', 'ski.'], ['The', 'dogs', 'barked', 'all', 'night.'], ['How', 'long', 'will', 'this', 'rain', 'go', 'on?'], ['Tom', 'was', 'busy', 'all', 'day', 'yesterday.'], ["Isn't", 'that', 'enough', 'for', 'you?'], ["It's", 'here.'], ['I', 'thought', "I'd", 'never', 'see', 'you', 'alive', 'again.'], ['My', 'dog', 'is', 'dreaming', 'of', 'a', 'cat.'], ['Fight', 'like', 'a', 'man.'], ['You', "won't", 'go,', 'will', 'you?'], ['He', 'was', 'robbed', 'of', 'all', 'his', 'money.'], ['When', 'do', 'you', 'want', 'to', 'eat?'], ['What', 'did', 'it', 'look', 'like?'], ['I', "haven't", 'seen', 'you', 'in', 'weeks.'], ["I'm", 'not', 'going', 'to', 'stop', 'working.'], ['Look', 'into', 'the', 'box.'], ["Wouldn't", 'that', 'be', 'something?'], ['I', 'will', 'wait', 'here', 'until', 'he', 'comes', 'back.'], ['Come', 'help', 'me.'], ['Bring', 'me', 'the', 'phone,', 'Tom.'], ['Tom', 'told', 'me', 'you', 'needed', 'some', 'money.'], ["We're", 'going', 'to', 'have', 'to', 'work', 'together.'], ['I', 'attended', 'his', 'funeral.'], ['What', 'else', 'can', 'you', 'do?'], ['Jobs', 'are', 'scarce.'], ['The', 'buildings', 'look', 'so', 'tiny.'], ['Since', 'the', 'bus', 'was', 'late,', 'I', 'took', 'a', 'taxi.'], ['I', 'love', 'being', 'alone.'], ['What', 'would', 'you', 'do', 'without', 'me?'], ["I'm", 'sick', 'of', 'hearing', 'it.'], ['You', 'must', 'not', 'touch', 'the', 'paintings.'], ['Tom,', 'this', 'is', 'my', 'cousin.'], ['I', 'heard', 'that', 'Tom', "doesn't", 'speak', 'French.'], ['Tom', "didn't", 'show', 'up', 'for', 'work', 'yesterday.'], ['I', 'cannot', 'possibly', 'do', 'it.'], ["I'm", 'not', 'paying', 'for', 'this.'], ['I', 'thought', "you'd", 'never', 'get', 'here.'], ['He', 'is', 'not', 'always', 'late.'], ["I'm", 'really', 'feeling', 'kind', 'of', 'strange.'], ['Please', 'step', 'inside.'], ["I'm", 'glad', 'you', 'could', 'come', 'to', 'the', 'party.'], ['What', 'are', 'we', 'afraid', 'of?'], ['Do', 'you', 'have', 'any', 'light', 'beer?'], ['This', 'lid', 'is', 'too', 'tight', 'for', 'me', 'to', 'open.'], ['He', 'plays', 'very', 'well.'], ["I'm", 'going', 'to', 'go', 'wash', 'my', 'hands.'], ["It's", 'a', 'good', 'camera.'], ["I'm", 'not', 'in', 'trouble.'], ['The', 'library', 'is', 'on', 'the', 'second', 'floor.'], ['I', 'know', 'how', 'old', 'you', 'are.'], ['Tom', 'ignored', "Mary's", 'advice.'], ['Everyone', 'looked', 'relieved.'], ['I', 'agree', 'with', 'him.'], ['What', 'country', 'is', 'Boston', 'in?'], ['I', 'think', 'that', 'that', 'book', 'is', 'not', 'so', 'interesting.'], ['He', 'is', 'the', 'fastest', 'runner', 'in', 'our', 'class.'], ['We', 'both', 'want', 'it.'], ['Do', 'you', 'have', 'anything', 'to', 'eat?'], ['They', 'looked', 'up', 'at', 'the', 'sky.'], ['Where', 'are', 'the', 'toilets?'], ['I', 'frequently', 'recall', 'my', 'happy', 'childhood.'], ['When', 'did', 'it', 'begin', 'to', 'rain?'], ['I', "haven't", 'gotten', 'any', 'letters', 'from', 'Tom', 'yet.'], ['Please', 'be', 'careful.'], ["Where's", 'the', 'nearest', 'train', 'station?'], ['The', 'doctor', 'informed', 'his', 'patient', 'of', 'the', 'name', 'of', 'his', 'disease.'], ['Do', 'you', 'want', 'to', 'know', 'what', 'I', 'think?'], ['I', 'like', 'chocolate', 'cake.'], ['Where', 'can', 'I', 'try', 'this', 'on?'], ['I', 'have', 'a', 'table.'], ['Try', 'to', 'have', 'fun.'], ['He', 'did', 'his', 'best', 'only', 'to', 'fail', 'again.'], ['A', 'good', 'many', 'people', 'were', 'there.'], ["It's", 'for', 'my', 'science', 'project.'], ['I', 'accept,', 'but', 'only', 'under', 'one', 'condition.'], ['A', 'conservative', 'tie', 'is', 'preferable', 'to', 'a', 'loud', 'one', 'for', 'a', 'job', 'interview.'], ['This', 'problem', 'is', 'hard', 'to', 'solve.'], ['How', 'many', 'idioms', 'have', 'we', 'studied', 'so', 'far?'], ['I', 'know', "they're", 'in', 'love', 'with', 'each', 'other.'], ["Where's", 'the', 'nearest', 'restroom?'], ['After', 'that', 'incident,', 'he', 'never', 'drank', 'again.'], ['You', 'must', 'have', 'lost', 'them.'], ['I', 'like', 'listening', 'to', 'classical', 'music', 'a', 'lot.'], ['I', 'agreed', 'to', 'split', 'the', 'money', 'with', 'Tom.'], ['Quit', 'acting', 'like', 'a', 'baby.'], ["What's", 'wrong', 'with', 'parading', 'around', 'your', 'own', 'house', 'naked?'], ["They're", 'painting', 'the', 'cemetery', 'wall.'], ['Do', 'you', 'see', 'what', 'I', 'mean?'], ['I', 'told', 'you', 'I', 'have', 'a', 'girlfriend.'], ['She', 'kept', 'on', 'crying.'], ['I', 'was', 'hurt', 'and', 'upset.'], ['This', 'should', 'be', 'fun.'], ['I', 'guess', 'I', 'could', 'wait', 'a', 'little', 'bit', 'longer.'], ['Please', "don't", 'enter', 'the', 'room', 'without', 'knocking.'], ['The', 'world', 'is', 'dangerous.'], ['I', 'hope', 'the', 'weather', 'will', 'be', 'fine', 'tomorrow.'], ["I'd", 'like', 'to', 'forget', 'the', 'whole', 'thing', 'ever', 'happened.'], ["Here's", 'what', 'I', 'learned.'], ["I'd", 'like', 'you', 'to', 'answer', 'my', 'question.'], ['Tom', 'tried', 'his', 'best', 'to', 'look', 'busy.'], ['It', 'is', 'impossible', 'to', 'substitute', 'machines', 'for', 'people.'], ['I', 'want', 'to', 'hear', 'your', 'opinion.'], ['She', "isn't", 'afraid', 'of', 'snakes.'], ['I', 'want', 'your', 'name', 'and', 'badge', 'number.'], ['I', 'gave', 'him', 'a', 'call.'], ['Tom', 'is', 'mentally', 'handicapped.'], ['What', 'are', 'you', 'all', 'doing?'], ['Where', 'do', 'you', 'want', 'these', 'suitcases?'], ["Don't", 'look', 'so', 'suspicious.'], ['Why', 'do', 'you', 'wear', 'a', 'watch?'], ['Please', 'say', 'yes.'], ['Tom', 'asked', 'Mary', 'to', 'sweep', 'the', 'floor.'], ['He', 'told', 'me', 'that', 'he', 'would', 'leave', 'before', 'long.'], ['At', 'last,', 'he', 'came.'], ['Air', 'is', 'to', 'us', 'what', 'water', 'is', 'to', 'fish.'], ['You', 'have', 'to', 'overcome', 'the', 'difficulties.'], ['He', 'bought', 'a', 'bottle', 'of', 'cheap', 'wine.'], ['Have', 'you', 'heard', 'of', 'me?'], ['Do', 'you', 'want', 'to', 'eat', 'this?'], ['They', 'were', 'all', 'friends.'], ['I', "can't", 'afford', 'to', 'play', 'tennis.'], ['That', 'is', 'the', 'sort', 'of', 'job', 'I', 'am', 'cut', 'out', 'for.'], ['Do', 'you', 'offer', 'any', 'day', 'trips?'], ['That', 'sounded', 'like', 'a', 'gunshot.'], ['Are', 'you', 'still', 'at', 'home?'], ["He's", 'a', 'loose', 'cannon.'], ["We're", 'lost.'], ["I'm", 'not', 'surprised', 'you', "don't", 'know', 'the', 'answer.'], ["He's", 'one', 'of', 'a', 'kind.'], ['Do', 'you', 'have', 'a', 'bottle', 'opener', 'I', 'could', 'use?'], ["I've", 'taken', 'care', 'of', 'that.'], ['I', "don't", 'know', 'why', 'I', 'have', 'to', 'do', 'this.'], ['I', 'subscribe', 'to', 'two', 'newspapers.'], ["It's", 'great', 'to', 'have', 'you', 'back.'], ['I', 'hope', "you're", 'not', 'planning', 'to', 'do', 'that', 'today.'], ['Get', 'some', 'help,', 'will', 'you?'], ['The', 'baby', 'was', 'shaking', 'the', 'rattle.'], ['Look', 'up', 'this', 'word', 'in', 'the', 'dictionary.'], ['All', 'the', 'English', 'teachers', 'at', 'my', "son's", 'school', 'are', 'native', 'speakers.'], ['I', "won't", 'go', 'with', 'you', 'unless', 'you', 'tell', 'me', 'where', "we're", 'going.'], ['The', 'trouble', 'is', 'that', 'my', 'son', 'does', 'not', 'want', 'to', 'go', 'to', 'school.'], ['The', 'earth', 'is', 'far', 'bigger', 'than', 'the', 'moon.'], ['Stop', 'badgering', 'me.'], ['Some', 'people', 'read', 'books', 'to', 'kill', 'time.'], ['You', 'must', 'be', 'at', 'the', 'station', 'by', '5', "o'clock."], ['I', 'will', 'tell', 'him', 'about', 'it', 'when', 'he', 'comes', 'next', 'time.'], ['Tom', 'tried', 'to', 'sound', 'uninterested.'], ['You', 'have', 'good', 'reason', 'to', 'be', 'angry.'], ['I', "didn't", 'win,', 'but', 'at', 'least', 'I', 'got', 'a', 'consolation', 'prize.'], ['He', 'was', 'distracted', 'by', 'the', 'beautiful', 'girl.'], ['I', "can't", 'imagine', 'a', 'world', 'without', 'electricity.'], ['Tom', 'wanted', 'to', 'stop', 'and', 'think.'], ['It', 'is', 'getting', 'warmer', 'day', 'by', 'day.'], ['I', "don't", 'want', 'to', 'let', 'you', 'go.'], ["I'm", 'glad', 'you', 'brought', 'that', 'up.'], ['Do', 'you', 'mind', 'if', 'I', 'get', 'started?'], ['What', 'do', 'you', 'know', 'about', 'him?'], ['I', 'stayed', 'at', 'a', 'cheap', 'hotel.'], ['You', 'probably', "wouldn't", 'understand', 'this.'], ["You're", 'not', 'allowed', 'to', 'swim', 'here.'], ['Tom', 'went', 'home', 'with', 'Mary.'], ['I', 'think', 'you', 'need', 'to', 'buy', 'a', 'new', 'pair', 'of', 'hiking', 'boots.'], ['This', 'is', 'the', 'strangest', 'thing', "I've", 'ever', 'done.'], ['People', 'say', 'that', 'I', 'dream', 'every', 'night,', 'but', 'if', 'I', 'do,', 'I', "can't", 'ever', 'remember', 'any', 'of', 'my', 'dreams.'], ["I'll", 'scold', 'him.'], ["We're", 'not', 'killers.'], ["Let's", 'use', 'it', 'while', 'we', 'can.'], ['Ecology', 'is', 'the', 'study', 'of', 'living', 'things', 'all', 'around', 'us.'], ['The', 'lion', 'is', 'the', 'king', 'of', 'beasts.'], ["We're", 'all', 'impressed.'], ['Dry', 'the', 'pants', 'on', 'the', 'radiator.'], ['I', 'see', 'what', "you're", 'doing.'], ['I', "don't", 'work', 'for', 'anyone.'], ["I've", 'been', 'saving', 'up', 'to', 'buy', 'a', 'new', 'saxophone.'], ['He', 'muttered', 'a', 'curse.'], ['This', 'is', 'my', 'favorite.'], ['His', 'pictures', 'are', 'very', 'famous.'], ['I', "can't", 'wait', 'to', 'meet', 'him.'], ['I', "don't", 'think', 'Tom', 'knows', 'how', 'to', 'dance.'], ['My', 'mother', 'made', 'a', 'sweater', 'for', 'me.'], ['I', "didn't", 'say', 'you', 'were', 'crazy.'], ['Tom', 'is', 'trying', 'to', 'sell', 'his', 'old', 'car.'], ['Take', 'the', 'wheel.'], ["I'm", 'looking', 'for', 'my', 'key.'], ['Come', 'on', 'in!'], ['I', 'never', 'really', 'knew', 'my', 'dad.'], ['There', 'were', 'only', 'six', 'people', 'at', 'the', 'meeting.'], ['Tom', 'likes', 'to', 'travel', 'alone.'], ['I', "can't", 'tell', 'you', 'how', 'happy', 'I', 'am', 'that', "you've", 'come', 'to', 'visit', 'us.'], ['He', 'can', 'also', 'speak', 'Russian.'], ['I', "didn't", 'mean', 'to', 'insult', 'you.'], ['Would', 'you', 'like', 'to', 'have', 'another', 'beer?'], ['I', 'feel', 'awful', 'about', 'that.'], ['We', 'have', 'to', 'make', 'a', 'decision.'], ['She', 'wept', 'bitterly.'], ['Every', 'student', 'was', 'asked', 'one', 'question.'], ["I've", 'promised', 'to', 'go', 'to', 'Boston', 'with', 'Tom.'], ['We', 'have', 'to', 'make', 'sure', 'that', 'we', 'never', 'do', 'this', 'again.'], ["I'd", 'like', 'to', 'ask', 'you', 'some', 'questions', 'now.'], ['I', 'feel', 'bad', 'about', 'that.'], ['Promise', 'me', 'you', "won't", 'tell', 'Mom.'], ['Why', 'are', 'you', 'so', 'grouchy?'], ['Eat', 'your', 'spinach.'], ['I', 'worked', 'hard', 'all', 'day,', 'so', 'I', 'was', 'very', 'tired.'], ['He', 'counts', 'fast.'], ["I've", 'got', 'plans', 'for', 'you.'], ['Please', 'turn', 'off', 'the', 'TV.'], ['My', 'parents', 'met', 'each', 'other', 'in', 'the', 'mountains.'], ['Let', 'me', 'rephrase', 'it.'], ['Suddenly', 'it', 'began', 'to', 'rain.'], ['My', 'grandpa', 'lived', 'to', 'the', 'ripe', 'old', 'age', 'of', '97.'], ['This', 'applies', 'to', 'your', 'case', 'as', 'well.'], ['She', 'went', 'to', 'Mexico', 'by', 'herself.'], ['Can', 'I', 'ask', 'why?'], ['Where', 'did', 'they', 'learn', 'this?'], ["I'll", 'go', 'ahead.'], ['No', "one's", 'working.'], ['Actually,', 'I', 'did', 'want', 'to', 'ask', 'you', 'one', 'thing.'], ['They', 'tried', 'a', 'third', 'time.'], ['Tom', 'was', 'fired.'], ["I'm", 'not', 'your', 'maid.'], ['Draw', 'a', 'picture', 'of', 'yourself.'], ["It's", 'the', 'best', 'we', 'have.'], ['Where', 'did', 'you', 'get', 'that', 'scar?'], ["Let's", 'put', 'a', 'stop', 'to', 'this', 'discussion.'], ["It's", 'really', 'very', 'good.'], ['Do', 'you', 'have', 'any', 'idea', 'what', 'happened?'], ['The', 'night', 'was', 'cool.'], ['How', 'do', 'I', 'know', 'that', "you're", 'not', 'going', 'to', 'try', 'to', 'kill', 'me?'], ["They're", 'really', 'tight.'], ['I', 'wonder', 'who', 'started', 'that', 'rumor.'], ['Bring', 'me', 'my', 'hat.'], ['Human', 'greed', 'is', 'threatening', 'the', 'existence', 'of', 'many', 'species.'], ['I', 'am', 'surprised', 'that', 'your', 'family', 'has', 'a', 'Japanese', 'car.'], ['I', "can't", 'win.'], ['I', 'made', 'a', 'careless', 'mistake.'], ["That's", 'what', 'Tom', 'told', 'me.'], ['I', 'hope', 'he', 'sees', 'this.'], ['You', 'speak', 'French', 'very', 'well.'], ['Why', "don't", 'you', 'understand?'], ['Tom', 'is', 'working', 'hard', 'to', 'improve', 'his', 'French.'], ['This', 'just', "isn't", 'like', 'you.'], ['She', 'advised', 'him', 'to', 'give', 'up', 'smoking.'], ['Compared', 'to', 'our', 'house,', 'yours', 'is', 'a', 'mansion.'], ['She', 'came', 'into', 'the', 'room', 'with', 'her', 'hat', 'on.'], ['Will', 'you', 'show', 'me', 'your', 'passport,', 'please?'], ['If', 'you', 'want', 'to', 'do', 'good', 'work,', 'you', 'should', 'use', 'the', 'proper', 'tools.'], ['The', 'laborers', 'formed', 'a', 'human', 'barricade.'], ["I'm", 'sure', "you'll", 'find', 'a', 'good', 'job.'], ['This', 'suitcase', 'is', 'too', 'heavy', 'for', 'you.'], ['Of', 'us', 'all,', 'Tom', 'was', 'by', 'far', 'the', 'best', 'swimmer.'], ['You', 'are', 'seriously', 'ill.'], ['The', 'police', 'took', 'some', 'pictures', 'of', 'the', 'scene', 'of', 'the', 'accident.'], ['It', 'was', 'broken.'], ['Money', "doesn't", 'grow', 'on', 'trees.'], ['It', 'looks', 'like', "they're", 'satisfied', 'with', 'the', 'result.'], ['I', "don't", 'go', 'to', 'school', 'by', 'bus.'], ['Can', 'we', 'speak', 'now?'], ['I', 'think', "he's", 'coming,', 'but', "I'm", 'not', 'quite', 'sure.'], ["Don't", 'get', 'a', 'stomachache', 'by', 'eating', 'too', 'much.'], ['They', 'were', 'so', 'frightened', 'that', 'they', "couldn't", 'move', 'an', 'inch.'], ['Her', 'husband', 'has', 'been', 'in', 'prison', 'for', 'three', 'years.'], ['I', 'might', 'be', 'a', 'few', 'minutes', 'late.'], ['Belgium', 'is', 'not', 'as', 'big', 'as', 'France.'], ['He', 'sold', 'his', 'own', 'car', 'without', 'hesitation.'], ['Tom', "doesn't", 'know', 'anything', 'about', "Mary's", 'family.'], ['Tom', 'propped', 'his', 'bicycle', 'against', 'the', 'wall.'], ['I', 'suggest', 'we', 'put', 'on', 'some', 'clean', 'clothes.'], ['They', 'combined', 'forces', 'to', 'fight', 'the', 'enemy.'], ['I', 'think', 'Tom', 'can', 'do', 'that.'], ['He', 'demanded', 'that', 'his', 'salary', 'be', 'increased.'], ["It's", 'phony.'], ['A', 'nod', 'is', 'as', 'good', 'as', 'a', 'wink', 'to', 'a', 'blind', 'horse.'], ['I', 'missed', 'you', 'so', 'much.'], ['Why', 'did', 'you', 'stop?'], ['Do', 'you', 'have', 'a', 'crowbar', 'in', 'your', 'toolbox?'], ['Where', 'would', 'you', 'most', 'like', 'to', 'go?'], ['This', 'is', 'a', 'real', 'popular', 'item.'], ['On', 'a', 'clear', 'day,', 'you', 'can', 'see', 'Mt.', 'Fuji', 'from', 'here.'], ['She', 'bought', 'him', 'a', 'sweater.'], ['I', 'look', 'forward', 'to', 'hearing', 'you', 'sing', 'tonight.'], ['Tell', 'me', 'the', 'reason', 'you', 'were', 'absent', 'from', 'school', 'yesterday.'], ['There', 'is', 'an', 'urgent', 'need', 'for', 'experienced', 'pilots.'], ['I', 'hate', 'her', 'now.'], ['I', "don't", 'believe', "I'm", 'even', 'standing', 'here.'], ['He', 'made', 'up', 'his', 'mind', 'to', 'go', 'there.'], ['Plants', 'grow.'], ["We're", 'married.'], ['You', 'should', 'listen', 'to', 'me.'], ['The', 'others', 'need', 'to', 'be', 'warned.'], ['All', 'you', 'need', 'to', 'do', 'is', 'trust', 'each', 'other.'], ['Their', 'sales', 'are', 'growing.'], ['She', "couldn't", 'convince', 'him', 'to', 'accept', 'a', 'personal', 'check.'], ['You', 'would', 'be', 'safe', 'there.'], ['Our', 'boat', 'approached', 'the', 'small', 'island.'], ['Is', 'college', 'worth', 'it?'], ['You', 'screwed', 'up.'], ["You're", 'very', 'forward.'], ['Your', 'room', 'is', 'really', 'clean.'], ['They', 'work', 'for', 'me.'], ['These', 'are', 'the', 'shoes', 'I', 'bought', 'last', 'week.'], ['It', 'is', 'already', 'dark.'], ['I', "won't", 'go', 'to', 'school', 'tomorrow.'], ['I', 'did', 'none', 'of', 'those', 'things.'], ['I', "haven't", 'yet', 'made', 'amends', 'with', 'all', 'the', 'people', "I've", 'hurt.'], ['I', 'was', 'married', 'at', 'that', 'time.'], ['Can', 'you', 'save', 'enough', 'money', 'for', 'the', 'down', 'payment?'], ['How', 'long', 'are', 'they?'], ['You', 'could', 'stop', 'this.'], ["You're", 'working', 'hard.'], ['I', 'could', 'tell', 'you', 'who', 'did', 'it.'], ['The', 'fuse', 'has', 'blown.'], ['He', 'loves', 'traveling.'], ['Give', 'me', 'some', 'water,', 'please.'], ['Could', 'you', 'go', 'to', 'the', 'store', 'and', 'grab', 'some', 'eggs?'], ['All', 'of', 'them', 'are', 'connected.'], ['You', 'have', 'got', 'a', 'lot', 'of', 'nerve.'], ['I', 'really', 'wish', 'I', 'knew', 'who', 'painted', 'this', 'picture.'], ["You're", 'not', 'upset,', 'are', 'you?'], ['It', 'is', '5', 'miles', 'from', 'here', 'to', 'Tokyo.'], ['Mary', 'had', 'been', 'knitting', 'for', 'an', 'hour', 'when', 'I', 'called.'], ['I', 'still', "couldn't", 'believe', 'it.'], ['The', 'quality', 'of', 'their', 'products', 'has', 'gone', 'down', 'over', 'the', 'years.'], ['They', 'agreed', 'to', 'elect', 'him', 'as', 'president.'], ['You', "haven't", 'been', 'a', 'teacher', 'very', 'long,', 'have', 'you?'], ['Is', 'there', 'a', 'similar', 'proverb', 'in', 'Japan?'], ['Her', 'idea', 'is', 'better', 'than', 'yours.'], ["They'll", 'have', 'a', 'blast.'], ['I', 'think', 'this', 'translation', 'is', 'incorrect.'], ['I', 'may', 'need', 'to', 'move', 'on.'], ['He', 'has', 'only', 'a', 'superficial', 'knowledge', 'of', 'Japanese.'], ['He', 'acts', 'quickly.'], ['She', 'worked', 'from', 'morning', 'till', 'night.'], ['She', 'has', 'about', '2,000', 'books.'], ['Everybody', 'makes', 'mistakes.'], ["Let's", 'take', 'a', 'walk', 'for', 'a', 'change.'], ['Will', 'you', 'please', 'go', 'there?'], ['I', 'swear', 'I', "won't", 'tell', 'anyone.'], ['I', 'got', 'an', 'A', 'on', 'my', 'essay.'], ['I', 'just', 'got', 'a', 'promotion.'], ['How', 'long', 'have', 'you', 'known', 'about', 'this?'], ['It', 'was', 'only', 'a', 'joke.'], ['Tomorrow,', 'he', 'will', 'land', 'on', 'the', 'moon.'], ['I', "can't", 'believe', "I'm", 'telling', 'you', 'this.'], ['I', 'just', 'wanted', 'to', 'tell', 'you', 'how', 'pleased', 'I', 'am.'], ['You', "shouldn't", 'be', 'in', 'here.'], ['What', 'do', 'you', 'need?'], ['Just', "don't", 'drop', 'it.'], ['Do', 'you', 'know', 'how', 'dangerous', 'that', 'is?'], ['It', 'makes', 'sense', 'now.'], ['Do', 'you', 'think', "I'm", 'that', 'stupid?'], ['Does', 'she', 'have', 'a', 'boyfriend?'], ["Don't", 'look', 'at', 'me.'], ['Stand', 'up', 'straight.'], ['Have', 'you', 'finished', 'dressing?'], ['Perhaps', 'Tom', 'can', 'win.'], ['Can', 'anybody', 'else', 'answer?'], ["I'm", 'going', 'to', 'protect', 'you,', 'Tom.'], ['I', 'think', 'that', "it's", 'too', 'big.'], ["They're", 'different.'], ['The', 'police', 'officer', 'put', 'handcuffs', 'on', 'the', 'suspect.'], ['Eat', 'your', 'soup', 'before', 'it', 'gets', 'cold.'], ['Tell', 'them', 'what', 'happened.'], ["I'm", 'the', 'one', 'who', 'met', 'him.'], ["We'll", 'see', 'you', 'again.'], ['Is', 'it', 'all', 'paid', 'for?'], ["Tom's", 'eating.'], ['He', 'did', 'what', 'I', 'told', 'him', 'to', 'do.'], ['Women', 'are', 'all', 'the', 'same.'], ['Even', 'Tom', "wouldn't", 'be', 'stupid', 'enough', 'to', 'say', 'something', 'like', 'that.'], ['How', 'did', 'you', 'answer', 'Tom?'], ["I'm", 'glad', "you're", 'here', 'with', 'me.'], ['When', 'did', 'you', 'learn', 'how', 'to', 'swim?'], ["Aren't", 'you', 'hot?'], ['Do', 'you', 'have', 'a', 'passport?'], ['Tom', 'put', 'on', 'his', 'backpack.'], ["I'd", 'like', 'to', 'treat', 'you', 'to', 'lunch', 'to', 'thank', 'you', 'for', 'all', 'your', 'help.'], ['"I', "don't", 'like', 'carrots."', '"Neither', 'do', 'I."'], ['Tom', 'kept', 'the', 'window', 'closed.'], ['Everybody', 'is', 'equal', 'before', 'the', 'law.'], ['I', 'thought', "you'd", 'gone', 'and', 'left', 'me.'], ['I', 'know', 'who', 'that', 'is', 'now.'], ['I', "don't", 'have', 'many', 'friends.'], ['I', 'took', 'a', 'taxi', 'because', 'the', 'bus', 'was', 'late.'], ["Don't", 'go', 'without', 'a', 'hat.'], ['You', 'are', 'the', 'chosen', 'one.'], ['I', "don't", 'intend', 'to', 'get', 'mixed', 'up', 'in', 'your', 'business.'], ['I', 'considered', 'not', 'going.'], ["You've", 'seen', 'enough.'], ['I', 'just', 'wish', 'I', 'could', 'contribute', 'more', 'money.'], ['Come', 'at', 'once.'], ["It's", 'not', 'going', 'to', 'take', 'long.'], ['I', "don't", 'think', 'I', 'can', 'help', 'you.'], ['I', 'had', 'to', 'walk', 'here', 'because', 'my', 'car', 'broke', 'down.'], ['I', "can't", 'believe', "you're", 'talking', 'to', 'me', 'like', 'this.'], ['He', 'was', 'not', 'happy', 'about', 'it.'], ['I', 'need', 'a', 'job.'], ['Do', 'you', 'want', 'to', 'watch', 'a', 'movie?'], ["I'll", 'never', 'leave', 'you.'], ['Would', 'you', 'accept', 'those', 'terms?'], ['How', 'old', 'were', 'you', 'when', 'you', 'moved', 'to', 'Boston?'], ["Can't", 'you', 'understand', 'that', "it's", 'impossible?'], ["You're", 'just', 'like', 'your', 'mother.'], ['Kindly', 'refrain', 'from', 'smoking.'], ['They', 'kept', 'their', 'relationship', 'a', 'secret.'], ['After', 'I', 'graduated', 'from', 'college,', 'I', 'moved', 'back', 'home', 'and', 'lived', 'with', 'my', 'parents', 'for', 'three', 'years.'], ['I', 'just', "don't", 'want', 'you', 'making', 'any', 'mistakes.'], ['How', 'long', 'did', 'you', 'stay', 'at', 'the', 'party?'], ['Pick', 'a', 'card.'], ['You', "shouldn't", 'have', 'gone', 'to', 'such', 'a', 'dangerous', 'place.'], ['I', 'pretended', 'it', "didn't", 'happen.'], ['Tom', "doesn't", 'know', 'how', 'strong', 'you', 'are.'], ['Her', 'daughter', 'is', 'bad', 'at', 'cooking.'], ['I', 'must', 'be', 'going', 'now.'], ["I've", 'got', 'a', 'lot', 'to', 'tell.'], ['You', 'know', 'I', "can't", 'wait', 'for', 'you', 'if', "you're", 'late.'], ["You're", 'the', 'leader.'], ['"Thanks."', '"You\'re', 'welcome."'], ['I', 'have', 'to', 'sleep.'], ["Aren't", 'you', 'a', 'banker?'], ['Our', 'train', 'arrived', 'on', 'time.'], ['I', 'ran', 'into', 'a', 'friend', 'on', 'the', 'bus.'], ['Could', 'you', 'please', 'translate', 'this', 'for', 'me?'], ['You', "don't", 'have', 'to', 'go.'], ["I'm", 'getting', 'married', 'in', 'October.'], ["Tom's", 'name', 'was', 'on', 'the', 'box.'], ["Don't", 'be', 'afraid', 'of', 'making', 'mistakes.'], ['Do', 'you', 'like', 'mine?'], ['There', 'were', 'no', 'clouds', 'today.'], ["We'd", 'better', 'do', 'that.'], ['I', 'hope', "you're", 'not', 'offended.'], ['It', "doesn't", 'count.'], ['We', "don't", 'know', 'her.'], ['It', 'just', "doesn't", 'look', 'right.'], ['Unfortunately', 'he', 'refused', 'to', 'come.'], ['Stay', 'away', 'from', 'my', 'daughter.'], ['Are', 'you', 'wearing', 'that', 'dress', 'for', 'the', 'first', 'time?'], ['His', 'horse', 'jumped', 'over', 'the', 'fence.'], ["I'm", 'pretty', 'sure', 'Tom', 'lives', 'on', 'Park', 'Street.'], ['She', 'gave', 'it', 'to', 'him.'], ['We', 'ate', 'fresh', 'fruit', 'after', 'dinner.'], ['What', 'time', 'did', 'you', 'wake', 'up?'], ['The', 'movie', 'is', 'now', 'showing', 'at', 'a', 'theater', 'near', 'you.'], ['You', "can't", 'trust', 'Tom.'], ['Is', 'lunch', 'included', 'in', 'this', 'price?'], ['I', 'will', 'be', 'very', 'careful.'], ['Economic', 'development', 'is', 'important', 'for', 'Africa.'], ['We', 'need', 'to', 'take', 'this', 'into', 'account.'], ['He', "doesn't", 'want', 'you', 'to', 'know.'], ["They're", 'anxious', 'for', 'peace.'], ['Everyone', 'is', 'outraged.'], ['I', 'think', 'you', 'like', 'me.'], ['If', 'there', 'were', 'no', 'telephones,', 'it', 'would', 'be', 'inconvenient.'], ['Where', 'were', 'you', 'when', 'the', 'fire', 'occurred?'], ['Was', 'it', 'you', 'that', 'left', 'the', 'door', 'open', 'last', 'night?'], ['All', 'the', 'flowers', 'in', 'the', 'garden', 'withered.'], ['Can', 'you', 'honestly', 'imagine', 'that', 'happening?'], ['I', 'know', 'that', 'Tom', 'did', 'that', 'once.'], ['She', 'advised', 'him', 'to', 'go', 'home', 'early.'], ["I'm", 'on', 'death', 'row.'], ["You're", 'a', 'liar.'], ['I', 'really', 'like', 'this', 'wine', 'a', 'lot.'], ['I', 'figured', 'you', "weren't", 'coming.'], ['There', 'is', 'little', 'hope', 'that', 'she', 'will', 'come', 'on', 'time.'], ['Tom', 'spent', 'most', 'of', 'the', 'morning', 'straightening', 'up', 'his', 'office.'], ["I'd", 'like', 'to', 'write', 'a', 'book.'], ['I', 'have', 'hives.'], ['Tom', "wasn't", 'the', 'first', 'person', 'here.'], ['There', 'was', 'not', 'enough', 'fuel.'], ['What', 'time', 'do', 'you', 'usually', 'eat', 'breakfast?'], ['Could', 'I', 'have', 'the', 'bill,', 'please?'], ['Is', 'it', 'still', 'raining?'], ['You', 'were', 'a', 'kid', 'once,', 'right?'], ['All', 'the', 'stores', 'are', 'closed.'], ['You', 'may', 'meet', 'him.'], ['Smiling', 'sadly,', 'she', 'began', 'to', 'talk.'], ['Did', 'I', 'do', 'something', 'stupid?'], ['I', 'know', "I'll", 'be', 'able', 'to', 'do', 'it.'], ['I', 'need', 'a', 'week.'], ['That', "isn't", 'big', 'enough.'], ['We', 'had', 'to', 'abandon', 'our', 'plan.'], ["I'm", 'bored', 'to', 'death.'], ['He', 'nudged', 'me', 'to', 'go', 'ahead.'], ['I', 'doubt', 'this', 'is', 'anything', "you'd", 'be', 'interested', 'in.'], ['You', 'seem', 'very', 'nervous', 'this', 'morning.'], ['We', 'have', 'a', 'good', 'team', 'and', 'everyone', 'knows', 'it.'], ["That's", 'the', 'choice', 'I', 'made.'], ['He', 'took', 'a', 'quick', 'look', 'at', 'the', 'magazine.'], ['Do', 'you', 'have', 'a', 'boyfriend?'], ['That', 'movie', 'stinks!'], ['Put', 'the', 'book', 'where', 'you', 'found', 'it.'], ['There', 'is', 'much', 'more', 'water', 'in', 'this', 'lake', 'now', 'than', 'in', 'the', 'past.'], ["Don't", 'you', 'think', "we'd", 'better', 'stay', 'here?'], ['My', 'sister', 'plays', 'the', 'piano', 'every', 'day.'], ["She's", 'most', 'happy', 'when', "she's", 'at', 'home.'], ['My', 'mother', 'put', 'a', 'large', 'vase', 'on', 'the', 'shelf.'], ['Do', 'we', 'have', 'to', 'do', 'all', 'that?'], ['Tom', 'stole', "Mary's", 'money.'], ['Tom', 'forced', 'himself', 'to', 'speak.'], ['I', 'felt', 'like', 'my', 'life', 'was', 'over.'], ['They', 'live', 'in', 'a', 'house.'], ['The', 'mountains', 'in', 'the', 'Himalayas', 'are', 'higher', 'than', 'those', 'in', 'the', 'Andes.'], ['I', 'like', 'puzzles.'], ['The', 'antiques', 'my', 'father', 'left', 'when', 'he', 'died', 'turned', 'out', 'to', 'be', 'nothing', 'but', 'worthless', 'junk.'], ['Tom', 'gave', 'a', 'banana', 'to', 'Mary.'], ["Don't", 'read', 'in', 'this', 'room.'], ['He', 'liked', 'that.'], ['They', 'are', 'talking', 'about', 'what', 'they', 'will', 'sing.'], ['Tom', 'moves', 'quickly.'], ["Don't", 'you', 'think', 'you', 'deserve', 'that?'], ['He', 'knows', 'a', 'lot', 'about', 'wild', 'animals.'], ['All', 'the', 'desk', 'drawers', 'were', 'empty.'], ['Can', 'we', 'have', 'a', 'moment', 'alone?'], ['He', 'is', 'not', 'what', 'he', 'used', 'to', 'be.'], ['I', 'want', 'everybody', 'to', 'go', 'home.'], ["What's", 'your', 'favorite', 'candy?'], ['Please', 'make', 'a', 'right', 'turn.'], ['Ethics', 'is', 'a', 'branch', 'of', 'philosophy.'], ['I', 'think', 'I', 'agree.'], ['Do', 'you', 'think', "I'm", 'qualified', 'for', 'that', 'job?'], ['If', 'I', 'were', 'you,', 'I', 'would', 'paint', 'it', 'blue.'], ['Even', 'monkeys', 'fall', 'from', 'trees.'], ['They', 'renewed', 'their', 'vows', 'on', 'their', '25th', 'wedding', 'anniversary.'], ['I', 'know', 'Tom', 'is', 'a', 'specialist.'], ['They', 'arrived', 'at', 'the', 'foot', 'of', 'the', 'mountain.'], ['I', "can't", 'decide', 'which', 'car', 'to', 'buy.'], ['I', "don't", 'take', 'orders', 'from', 'you.'], ['He', 'was', 'sitting', 'with', 'his', 'arms', 'folded.'], ['You', 'are', 'a', 'good', 'person.'], ['Have', 'you', 'already', 'finished?'], ['We', 'have', 'problems', 'that', 'need', 'to', 'be', 'dealt', 'with.'], ['They', 'found', 'out.'], ['Are', 'you', 'going', 'to', 'leave', 'tomorrow?'], ["I'm", 'sorry', 'my', 'father', 'is', 'out.'], ['He', 'would', 'sooner', 'die', 'than', 'get', 'up', 'early', 'every', 'morning.'], ['This', 'is', 'an', 'unusual', 'situation.'], ['Most', 'employees', 'expect', 'a', 'pay', 'raise', 'once', 'a', 'year.'], ['He', 'graduated', 'from', 'some', 'rinky-dink', 'college', 'in', 'Oklahoma.'], ['You', 'look', 'a', 'little', 'young', 'to', 'be', 'a', 'teacher.'], ["What's", 'all', 'the', 'hubbub', 'about?'], ['You', 'never', 'told', 'me', 'about', 'this', 'before.'], ['Can', 'we', 'go?'], ['Tom', 'tore', 'the', 'paper', 'in', 'half.'], ['He', 'is', 'tired', 'from', 'overwork.'], ['I', 'wish', "you'd", 'stop', 'doing', 'that.'], ['Please', 'go', 'to', 'the', 'bank.'], ['Do', 'you', 'think', 'this', 'rope', 'is', 'strong', 'enough?'], ["I'm", 'training', 'for', 'the', 'triathlon.'], ['I', 'almost', 'feel', 'sorry', 'for', 'you.'], ['Apart', 'from', 'that,', 'I', "don't", 'know', 'anything.'], ['Cockfighting', 'is', 'banned', 'in', 'many', 'countries.'], ['This', 'is', 'hilarious.'], ["That's", 'not', 'cool.'], ['How', 'would', 'you', 'like', 'us', 'to', 'proceed?'], ["What's", 'inside?'], ['You', 'probably', 'just', 'want', 'to', 'be', 'alone.'], ['My', 'brother', 'is', 'stronger', 'than', 'me.'], ['Shall', 'I', 'draw', 'a', 'map', 'for', 'you?'], ['He', 'has', 'a', 'few', 'friends.'], ['Try', 'these', 'shoes', 'on', 'and', 'see', 'if', 'they', 'fit', 'you.'], ['Tom', 'grabbed', 'his', 'coat.'], ['I', 'jumped.'], ["What's", 'your', 'plan?'], ['This', 'train', 'runs', 'between', 'Tokyo', 'and', 'Osaka.'], ['The', 'cops', 'are', 'looking', 'for', 'the', "gang's", 'hideout.'], ['You', 'can', 'go', 'there', 'in', 'a', 'boat.'], ['Tom', 'asked', 'Mary', 'what', 'she', 'wanted.'], ['Some', 'were', 'unwilling', 'to', 'fight.'], ['I', 'wish', 'they', 'would', 'stop', 'fighting.'], ['You', 'should', 'assume', 'that', 'Tom', "won't", 'help', 'us', 'at', 'all.'], ['I', 'fell', 'sound', 'asleep', 'before', 'I', 'knew', 'it.'], ["You're", 'very', 'brave.'], ['The', 'boy', 'caught', 'a', 'large', 'fish.'], ['Children', 'need', 'loving.'], ['We', 'saw', 'a', 'stranger', 'enter', 'the', 'house.'], ["It's", 'not', 'about', 'them.'], ['I', 'spent', 'the', 'whole', 'day', 'in', 'reading', 'the', 'novel.'], ['I', 'had', 'to', 'choose', 'between', 'A', 'and', 'B.'], ['We', 'all', 'have', 'choices.'], ['It', 'was', 'a', 'warm,', 'friendly', 'meeting.'], ['Most', 'snakes', 'on', 'this', 'island', 'are', 'harmless.'], ['Spring', 'is', 'coming', 'soon.'], ['I', 'was', 'nearly', 'ten', 'when', 'my', 'parents', 'gave', 'me', 'a', 'chemistry', 'set', 'for', 'Christmas.'], ['How', 'did', 'you', 'pass', 'the', 'time?'], ['I', 'always', 'wanted', 'to', 'be', 'a', 'teacher.'], ["I'm", 'supporting', 'you.'], ["Where's", 'that', 'coming', 'from?'], ['I', 'broke', 'up', 'with', 'Tom.'], ['I', "don't", 'think', 'she', 'would', 'understand', 'it.'], ['Oh,', "I'm", 'sorry.'], ['All', 'future', 'meetings', 'will', 'be', 'held', 'in', 'this', 'room.'], ['It', 'was', 'personal.'], ['Hurry', 'or', "you'll", 'miss', 'the', 'train.'], ['Would', 'you', 'say', 'that', 'again?'], ["I've", 'already', 'told', 'everybody', 'to', 'go', 'home.'], ['I', "can't", 'stand', 'the', 'noise.'], ["I'm", 'really', 'cold.'], ["I'm", 'not', 'very', 'organized.'], ['An', 'olive', 'branch', 'symbolizes', 'peace.'], ['He', 'should', 'be', 'put', 'in', 'prison.'], ['Do', 'you', 'know', 'what', 'time', 'they', 'came?'], ["You're", 'late.'], ['Tom', 'is', 'someone', 'I', 'really', 'look', 'up', 'to.'], ['Why', "don't", 'we', 'go', 'together?'], ['He', 'lost', 'everything', 'he', 'owned.'], ['The', 'frame', 'of', 'the', 'house', 'should', 'be', 'finished', 'in', 'a', 'day', 'or', 'two.'], ["It's", 'really', 'impressive.'], ['Thank', 'you', 'very', 'much.'], ['A', 'marathon', 'is', 'pretty', 'exhausting.'], ['She', 'was', 'tired.', 'However,', 'she', 'tried', 'to', 'finish', 'the', 'work.'], ['Bill', 'Gates', 'is', 'the', "world's", 'richest', 'man.'], ['There', "wasn't", 'much', 'traffic.'], ['Why', 'does', 'Tom', 'want', 'my', 'help?'], ['Go', 'back', 'to', 'your', 'seat.'], ['Please', 'be', 'careful.'], ['She', 'writes', 'to', 'her', 'son', 'from', 'time', 'to', 'time.'], ['The', 'king', 'and', 'his', 'family', 'live', 'in', 'the', 'royal', 'palace.'], ['They', 'told', 'me', 'that', 'I', 'was', 'overqualified', 'for', 'this', 'job.'], ['Her', 'daughter', 'has', 'what', 'it', 'takes', 'to', 'be', 'a', 'good', 'teacher.'], ['Accidents', 'often', 'result', 'from', 'carelessness.'], ['This', 'is', 'my', 'notebook.'], ["It's", 'so', 'simple', 'that', 'even', 'a', 'child', 'can', 'do', 'it.'], ['Learn', 'to', 'walk', 'before', 'you', 'run.'], ['She', 'advised', 'him', 'to', 'catch', 'the', 'first', 'train', 'in', 'the', 'morning.'], ['I', 'think', 'about', 'them', 'often.'], ['Tom', 'helped', 'the', 'old', 'lady', 'cross', 'the', 'street.'], ['What', 'time', 'is', 'your', 'appointment?'], ['The', 'black', 'one', 'is', 'mine.'], ["You're", 'very', 'good', 'at', 'this.'], ['Tom', 'bandaged', "Mary's", 'arm.'], ['Turn', 'around.'], ["You're", 'right,', 'of', 'course.'], ['I', 'thought', 'you', 'should', 'see', 'this', 'contract.'], ['We', 'still', 'have', 'a', 'few', 'options.'], ['He', 'may', 'have', 'told', 'a', 'lie.'], ['You', 'look', 'a', 'little', 'shaken.'], ['Have', 'you', 'been', 'told', 'when', 'you', 'are', 'expected', 'to', 'be', 'here?'], ["I'm", 'open', 'to', 'suggestions.'], ['Please', "don't", 'waste', 'water.'], ['Please', 'stand', 'face', 'to', 'face.'], ['I', "didn't", 'enjoy', 'the', 'party', 'at', 'all.'], ['I', "don't", 'have', 'an', 'opinion', 'either', 'way.'], ['I', "couldn't", 'help', 'Tom.'], ['You', 'should', 'be', 'real', 'proud', 'of', 'yourself.'], ['His', 'blood', 'is', 'boiling.'], ["I'm", 'sure', 'you', 'did', 'what', 'you', 'thought', 'was', 'the', 'right', 'thing', 'to', 'do.'], ['Please', 'sign', 'on', 'the', 'dotted', 'line.'], ['I', 'knew', 'it', 'would', 'happen.'], ['We', 'bought', 'some', 'new', 'furniture.'], ['That', 'makes', 'no', 'sense.'], ['If', "there's", 'something', 'you', "don't", 'understand,', 'let', 'me', 'know.'], ['Where', 'have', 'you', 'been', 'all', 'this', 'time?'], ['Mary', 'looked', 'at', 'herself', 'in', 'the', 'mirror.'], ['We', 'walked', 'around', 'the', 'pond.'], ['Which', 'way', 'are', 'you', 'going?'], ["I'll", 'show', 'you', 'around', 'town.'], ['Excuse', 'me', 'for', 'interrupting', 'you.'], ['The', 'dog', 'barks', 'at', 'all', 'strangers.'], ['Who', 'yelled?'], ['I', 'need', 'a', 'new', 'broom.', 'This', "one's", 'shot.'], ['She', 'acted', 'as', 'if', 'she', "didn't", 'care', 'what', 'happened.'], ['I', 'handled', 'it.'], ['Do', 'you', 'need', 'a', 'bag?'], ['It', 'was', 'a', 'bitter', 'pill', 'to', 'swallow.'], ['Look', 'at', 'that', 'building.'], ['You', "can't", 'take', 'that', 'with', 'you.'], ['The', "company's", 'insolvency', 'forced', 'it', 'to', 'file', 'for', 'bankruptcy.'], ['I', 'drank', 'a', 'glass', 'of', 'red', 'wine', 'after', 'dinner.'], ['Are', 'you', 'having', 'fun?'], ['Tom', 'is', 'heavily', 'armed.'], ['This', 'river', 'is', 'shallow', 'enough', 'to', 'wade', 'to', 'the', 'other', 'side.'], ['Tom', 'has', 'an', 'incredible', 'vocabulary.'], ['I', 'really', 'am', 'busy.'], ['Where', 'did', 'you', 'get', 'it?'], ["I'm", 'as', 'tall', 'as', 'you.'], ['You', 'can', 'smoke', 'in', 'this', 'room.'], ['Tom', "doesn't", 'seem', 'to', 'be', 'very', 'interested.'], ['This', 'is', 'the', 'fastest', 'car', 'in', 'our', 'showroom.'], ['I', 'feel', 'my', 'age.'], ['You', 'really', 'want', 'to', 'do', 'this,', "don't", 'you?'], ["You've", 'got', 'a', 'lot', 'of', 'nerve', 'bringing', 'me', 'here', 'under', 'false', 'pretenses.'], ['The', 'hailstones', 'were', 'as', 'big', 'as', 'tennis', 'balls.'], ['You', 'may', 'stay', 'here', 'if', 'you', 'like,', 'as', 'long', 'as', 'you', 'keep', 'quiet.'], ['Have', 'you', 'ever', 'eaten', 'alone', 'in', 'a', 'restaurant?'], ['This', 'newspaper', 'article', 'is', 'more', 'interesting', 'than', 'the', 'previous', 'one.'], ["You're", 'correct.'], ["I'd", 'rather', 'walk.'], ['I', "don't", 'need', 'a', 'lecture.'], ['Mary', 'had', 'some', 'weird', 'food', 'cravings', 'when', 'she', 'was', 'pregnant.'], ['I', 'will', 'ask', 'him', 'tomorrow.'], ["You're", 'stuck.'], ['He', 'has', 'no', 'friends', 'to', 'advise', 'him.'], ["Tom's", 'working.'], ['I', 'called', 'your', 'office', 'today,', 'but', 'you', "weren't", 'in.'], ['Read', 'this', 'book.'], ['Have', 'you', 'already', 'tried', 'not', 'thinking', 'of', 'anything?'], ['I', "don't", 'know', "what's", 'going', 'on', 'around', 'here,', 'but', 'I', 'intend', 'to', 'find', 'out.'], ['I', "shouldn't", 'have', 'done', 'that.'], ["Don't", 'leave', 'your', 'dog', 'inside', 'all', 'day.'], ["I'll", 'keep', 'my', 'promise.'], ["You're", 'the', 'reason', 'I', 'came.'], ['Those', 'who', "don't", 'want', 'to', 'go,', "don't", 'need', 'to', 'go.'], ['He', 'came', 'home', 'at', 'ten.'], ['The', 'problem', 'is', 'that', 'we', 'have', 'no', 'money.'], ['I', 'am', 'acting', 'for', 'my', 'father.'], ['I', 'thought', 'I', 'recognized', 'you.'], ['There', 'were', '30', 'survivors.'], ['I', "don't", 'like', 'this', 'tie.', 'Show', 'me', 'a', 'better', 'one.'], ['He', 'handed', 'in', 'his', 'paper.'], ['Is', 'there', 'something', 'in', 'particular', 'that', 'you', 'want', 'to', 'study?'], ['You', 'must', 'be', 'very', 'busy', 'now.'], ['I', 'really', 'misjudged', 'you.'], ["I'd", 'prefer', 'a', 'brown', 'one.'], ['Getting', 'lost', 'is', 'the', 'least', 'of', 'my', 'worries.'], ['Tom', 'was', 'caught', 'selling', 'drugs', 'to', 'kids.'], ['Did', 'you', 'notice', 'that', 'Tom', "wasn't", 'wearing', 'his', 'wedding', 'ring', 'today?'], ['What', 'can', 'you', 'see', 'from', 'your', 'window?'], ['Today', 'is', 'very', 'cold.'], ['Please', 'follow', 'me.'], ['Tom', 'worked', 'three', 'years', 'for', 'me.'], ['I', 'can', 'fix', 'it.'], ['I', 'live', 'near', 'the', 'sea', 'so', 'I', 'often', 'get', 'to', 'go', 'to', 'the', 'beach.'], ['Take', 'notes.'], ['Even', 'if', 'you', 'go', 'far', 'away,', "let's", 'keep', 'in', 'touch', 'with', 'each', 'other', 'over', 'the', 'phone.'], ['Do', 'you', 'want', 'more', 'milk', 'in', 'your', 'coffee?'], ["Don't", 'make', 'the', 'same', 'mistake', 'again.'], ['I', 'have', 'a', 'lot', 'of', 'responsibilities.'], ['My', 'car', 'is', 'a', 'Toyota.'], ['Do', 'you', 'like', 'singing?'], ['I', 'had', 'nothing', 'to', 'do', 'with', 'that', 'problem.'], ['If', "you're", 'happy,', "I'm", 'glad.'], ['Whose', 'son', 'are', 'you?'], ['He', 'was', 'the', 'only', 'man.'], ['Do', 'you', 'know', 'what', "it's", 'called?'], ['I', 'thought', 'you', 'were', 'injured.'], ['I', 'had', 'a', 'feeling', "you'd", 'say', 'that.'], ["Don't", 'handle', 'my', 'books', 'with', 'dirty', 'hands.'], ['I', 'trust', 'him.'], ["I'd", 'like', 'to', 'file', 'a', 'complaint.'], ['Are', 'you', 'vegetarian?'], ["I'm", 'thinking', 'of', 'learning', 'Korean', 'next', 'semester.'], ['Are', 'you', 'here', 'voluntarily?'], ['What', 'a', 'big', 'dog!'], ['When', 'did', 'you', 'get', 'married?'], ['It', 'was', 'a', 'good', 'answer.'], ['When', 'was', 'the', 'last', 'time', 'you', 'saw', 'the', 'cat?'], ['Does', 'she', 'like', 'oranges?'], ["I've", 'always', 'been', 'here', 'for', 'you.'], ["I've", 'been', 'wanting', 'to', 'ask', 'you', 'a', 'question.'], ['Tom', 'has', 'secrets.'], ['I', 'like', 'pink', 'grapefruit.'], ['I', 'had', 'difficulty', 'getting', 'a', 'ticket', 'for', 'the', 'concert.'], ['As', 'strange', 'as', 'it', 'may', 'sound,', 'what', 'Tom', 'said', 'is', 'true.'], ['A', 'dolphin', 'is', 'no', 'more', 'a', 'fish', 'than', 'a', 'dog', 'is.'], ['He', 'was', 'unconscious', 'of', 'his', 'guilt.'], ['Is', 'this', 'seat', 'open?'], ['Chocolate', 'is', 'toxic', 'to', 'many', 'animals.'], ["You'd", 'better', 'consult', 'the', 'doctor.'], ["I'll", 'take', 'care', 'of', 'the', 'cat.'], ['My', 'father', 'caught', 'three', 'fish', 'yesterday.'], ["I'm", 'afraid', "I'm", 'a', 'bit', 'out', 'of', 'shape.'], ['Have', 'you', 'ever', 'seen', 'Tokyo', 'Tower?'], ['Are', 'we', 'all', 'here?'], ["I'm", 'not', 'the', 'one', 'who', 'makes', 'the', 'rules.'], ['Why', 'would', 'they', 'do', 'that?'], ["You're", 'sleepy.'], ['Tom', 'can', 'do', 'it,', "can't", 'he?'], ['No', 'matter', 'how', 'fast', 'you', 'run,', 'you', "won't", 'catch', 'up', 'with', 'him.'], ['He', "didn't", 'like', 'school.'], ['We', 'arrived', 'to', 'find', 'a', 'huge', 'meal', 'ready', 'for', 'us.'], ['I', 'made', 'the', 'deal.'], ['I', 'could', 'barely', 'speak.'], ['You', "couldn't", 'possibly', 'understand.'], ['Is', 'there', 'something', 'in', 'particular', 'that', "you're", 'looking', 'for?'], ['Tom', 'is', 'a', 'good', 'teacher,', "isn't", 'he?'], ["They're", 'similar.'], ["I'm", 'afraid', "it's", 'going', 'to', 'rain.'], ["I'm", 'not', 'here', 'to', 'fight.'], ['Stay', 'in', 'bed.'], ['You', "can't", 'blame', 'me.'], ["We'll", 'attack.'], ['I', 'just', 'followed', 'the', 'recipe.'], ['I', "don't", 'really', 'care', 'how', 'you', 'do', 'it.'], ['Stock', 'prices', 'fell', 'sharply.'], ['Do', 'you', 'think', 'the', 'accused', 'is', 'really', 'guilty', 'of', 'the', 'crime?'], ['There', 'have', 'been', 'a', 'lot', 'of', 'complaints', 'about', 'the', 'way', 'Tom', 'behaves.'], ['Let', 'him', 'go.'], ['Tom', 'visited', "Mary's", 'grave.'], ['Grab', 'a', 'seat.'], ['Can', 'you', 'excuse', 'me', 'a', 'moment?'], ['All', 'of', 'us', 'stared', 'at', 'her.'], ['She', 'needs', 'you.'], ["I'm", 'hitting', 'the', 'road.'], ["Let's", 'do', 'this', 'again.', "It's", 'been', 'a', 'lot', 'of', 'fun.'], ["That's", 'not', 'what', 'I', 'said.'], ['This', 'is', 'an', 'apple,', 'too.'], ['I', 'was', 'often', 'seized', 'by', 'despair.'], ['I', 'need', 'to', 'find', 'a', 'restroom.'], ['Smoking', 'is', 'a', 'bad', 'habit.'], ['I', 'had', 'a', 'bad', 'stomachache.'], ["There's", 'a', 'gas', 'leak.'], ["It's", 'stealing.'], ['Why', "didn't", 'you', 'say', 'that', 'before?'], ['I', 'skipped', 'out', 'on', 'my', 'appointment', 'with', 'my', 'boss.'], ['I', 'could', 'see', 'that', 'Tom', 'was', 'grinning.'], ['A', 'traffic', 'accident', 'deprived', 'him', 'of', 'the', 'use', 'of', 'his', 'left', 'hand.'], ['No', 'matter', 'how', 'sneaky', 'you', 'are,', 'you', 'can', 'never', 'surprise', 'yourself.'], ['Tom', 'says', 'he', 'needs', 'to', 'talk', 'with', 'you.'], ["It's", 'their', 'choice.'], ['I', 'hated', 'school.'], ['I', "don't", 'think', 'that', 'changes', 'anything.'], ['You', 'should', 'face', 'up', 'to', 'the', 'reality.'], ['Were', 'you', 'happy?'], ['It', 'rained', 'all', 'day', 'long', 'yesterday,', 'so', 'I', 'stayed', 'home.'], ['We', 'have', 'no', 'money.'], ['When', 'did', 'you', 'say', 'that?'], ['Living', 'in', 'the', 'town', 'is', 'quite', 'different', 'from', 'living', 'in', 'the', 'country.'], ['Tom', 'knows', "he's", 'wrong,', 'but', 'he', "won't", 'admit', 'it.'], ['There', 'are', 'plenty', 'of', 'fresh', 'eggs', 'on', 'the', 'table.'], ['This', 'better', 'not', 'happen', 'again.'], ['I', 'appreciate', 'how', 'you', 'feel.'], ["We'll", 'discuss', 'that', 'later.'], ['We', 'finally', 'have', 'you', 'where', 'we', 'want', 'you.'], ['I', 'am', 'thinking', 'of', 'going', 'abroad', 'next', 'year.'], ['My', 'uncle', 'took', 'me', 'for', 'a', 'ride', 'in', 'the', 'countryside.'], ['Mary', 'is', 'charming.'], ['Would', 'you', 'please', 'open', 'the', 'window?'], ['He', 'has', 'only', 'a', 'superficial', 'knowledge', 'of', 'the', 'subject.'], ["I've", 'never', 'seen', 'you', 'so', 'happy.'], ['I', 'asked', 'Tom', 'to', 'lend', 'me', 'some', 'money,', 'but', 'he', 'refused.'], ['Every', 'movement', 'is', 'painful.'], ['I', 'am', 'very', 'sad.'], ['He', 'demanded', 'that', 'we', 'leave', 'at', 'once.'], ['The', 'house', 'is', 'small,', 'but', "it's", 'enough', 'for', 'us.'], ['If', 'you', 'hear', 'the', 'alarm,', 'walk,', "don't", 'run.'], ['Maybe', 'it', 'really', 'was', 'an', 'accident.'], ['Tom', 'is', 'the', 'youngest', 'of', 'the', 'three', 'boys.'], ['Everyone', 'knows', 'that', 'it', "wasn't", 'your', 'fault.'], ['This', 'is', 'all', "that's", 'left.'], ['The', 'leaves', 'of', 'the', 'trees', 'have', 'turned', 'red.'], ['Sorry,', 'I', "couldn't", 'catch', 'what', 'you', 'said.'], ['I', "don't", 'want', 'Tom', 'in', 'my', 'car.'], ['I', "don't", 'feel', 'like', 'talking.'], ['His', 'words', 'hurt', 'her', 'feelings.'], ['Have', 'you', 'sold', 'it', 'yet?'], ['The', 'elevator', 'stopped', 'on', 'the', 'second', 'floor.'], ["I'd", 'like', 'to', 'speak', 'with', 'you.'], ['You', 'look', 'familiar.', 'Do', 'I', 'know', 'you?'], ['We', 'are', 'liable', 'for', 'the', 'damage.'], ["That's", 'not', 'bad.'], ['There', 'is', 'an', 'urgent', 'need', 'for', 'them', 'to', 'update', 'their', 'system.'], ['I', 'wish', 'I', 'could', 'have', 'spoken', 'Spanish.'], ["We're", 'still', 'underage.'], ['Do', 'you', 'want', 'me', 'to', 'call', 'the', 'police?'], ['They', 'climbed', 'to', 'the', 'top', 'of', 'a', 'cliff.'], ['It', 'has', 'a', 'flaw.'], ['Take', 'as', 'much', 'as', 'you', 'like.'], ['They', 'adopted', 'the', 'orphan.'], ['When', 'is', 'school', 'over?'], ["That's", 'not', 'our', 'job.'], ['Are', 'you', 'all', 'doing', 'well?'], ['It', 'was', 'a', 'case', 'of', 'mistaken', 'identity.'], ['Can', 'you', 'answer', 'this?'], ["I'm", 'not', 'nervous.'], ['This', 'is', 'irrelevant.'], ['Would', 'you', 'like', 'one?'], ['Grab', 'as', 'much', 'as', 'you', 'need.'], ['The', 'matter', 'is', 'really', 'pressing.'], ["You've", 'come', 'too', 'early.'], ['The', 'statue', 'has', 'no', 'head.'], ['I', 'often', 'have', 'bad', 'dreams.'], ['She', 'wants', 'a', 'fourth', 'generation', 'iPad.'], ['He', 'was', 'impatient', 'to', 'see', 'his', 'son.'], ['The', 'sample', 'is', 'not', 'pure', 'enough.'], ['There', 'is', 'too', 'much', 'furniture', 'in', 'this', 'room.'], ['I', 'feed', 'meat', 'to', 'my', 'dog.'], ["I'll", 'go', 'home.'], ["I'll", 'mow', 'the', 'lawn', 'tomorrow,', 'unless', 'it', 'rains.'], ["That's", 'a', 'lame', 'excuse.'], ['I', 'am', 'sorry', 'to', 'have', 'kept', 'you', 'waiting.'], ['I', 'have', 'a', 'sore', 'throat.', 'Do', 'you', 'have', 'a', 'cough', 'drop?'], ['This', 'hat', 'is', 'too', 'big', 'for', 'you.'], ['Is', 'this', 'jasmine', 'tea?'], ['Does', 'it', 'matter?'], ['I', 'just', 'want', 'to', 'get', 'a', 'little', 'fresh', 'air.'], ['"Tom\'s', 'death', 'was', 'an', 'accident."', '"Are', 'you', 'sure?"'], ['You', "can't", 'just', 'go.'], ["Don't", 'drink', 'and', 'drive.'], ['They', 'are', 'both', 'good.'], ['I', 'wish', "you'd", 'talk', 'to', 'me.'], ["I'm", 'too', 'old', 'to', 'go', 'to', 'Germany.'], ['Tom', "doesn't", 'have', 'a', 'date', 'for', 'the', 'Saturday', 'night.'], ['Tom', 'is', 'falling', 'asleep.'], ['Keep', 'your', 'room', 'clean.'], ['Does', 'anyone', 'care?'], ["Haven't", 'you', 'had', 'your', 'dinner?'], ['Tom', 'is', 'intolerant.'], ["That's", 'not', 'nice.'], ['We', 'abandoned', 'the', 'plan', 'to', 'go', 'on', 'a', 'picnic.'], ['If', 'you', 'see', 'a', 'mistake,', 'then', 'please', 'correct', 'it.'], ['I', "don't", 'wear', 'glasses', 'anymore.'], ['Tom', "doesn't", 'have', 'enough', 'money', 'to', 'buy', 'what', 'he', 'wants.'], ["You're", 'not', 'a', 'morning', 'person,', 'are', 'you?'], ['Eat', 'up', 'all', 'your', 'spinach!'], ["It's", 'starting', 'now.'], ["It's", 'a', 'really', 'bad', 'situation.'], ["There's", 'only', 'one', 'way', 'to', 'find', 'out', 'how', 'to', 'do', 'that.', 'Ask', 'Tom.'], ["That's", 'very', 'handy.'], ['Could', 'I', 'have', 'one', 'more', 'coffee,', 'please?'], ['No', 'one', 'is', 'amused.'], ['Are', 'you', 'seriously', 'thinking', 'about', 'going?'], ['He', 'missed', 'the', 'deadline.'], ['There', "isn't", 'much', 'wind', 'today.'], ['That', 'was', 'nice.'], ['Tom', 'has', 'a', 'lot', 'of', 'gray', 'hair.'], ['I', 'never', 'thought', 'about', 'it', 'before.'], ['They', 'just', 'want', 'someone', 'to', 'blame.'], ['I', 'missed', 'going', 'out', 'with', 'her', 'and', 'eating', 'at', 'our', 'favorite', 'restaurant.'], ['Where', 'did', 'you', 'buy', 'these', 'cherries?'], ['I', "don't", 'know', 'what', "I'm", 'going', 'to', 'do', 'yet.'], ["We'll", 'give', 'you', 'a', 'call.'], ['He', 'had', 'no', 'money.'], ['I', 'joined', 'the', 'navy.'], ['We', 'must', 'do', 'away', 'with', 'these', 'old', 'rules.'], ['The', 'day', 'is', 'almost', 'over.'], ['They', 'say', 'that', 'he', 'knows', 'the', 'secret.'], ['I', 'am', 'quite', 'all', 'right', 'now.'], ['I', "don't", 'know', 'if', "we're", 'going', 'to', 'be', 'able', 'to', 'do', 'that.'], ['This', 'bracelet', 'is', 'very', 'inexpensive.'], ['A', 'party', 'will', 'be', 'held', 'next', 'Saturday,', 'that', 'is', 'to', 'say,', 'on', 'August', '25th.'], ["I'll", 'give', 'you', 'this', 'camera.'], ['He', 'called', 'out', 'the', 'name', 'of', 'the', 'winner.'], ['This', 'textbook', 'is', 'written', 'in', 'simple', 'English.'], ['Do', 'you', 'have', 'a', 'cell', 'phone?'], ['Once', 'again,', 'I', 'was', 'able', 'to', 'escape', 'death.'], ['Do', 'you', 'know', 'if', 'Tom', 'can', 'speak', 'French?'], ["I'm", 'not', 'your', 'father.'], ['He', 'likes', 'new', 'experiences.'], ['I', 'need', 'your', 'full', 'attention', 'now.'], ['I', 'really', 'like', 'being', 'with', 'you.'], ['Take', 'mine.'], ['Does', 'that', 'mean', "you'll", 'have', 'to', 'stay?'], ["I'm", 'surprised', 'no', 'one', 'else', 'heard', 'the', 'gunshots.'], ['You', 'look', 'so', 'beautiful.'], ["Tom's", 'funny.'], ['She', 'asked', 'us', 'several', 'questions.'], ['Have', 'you', 'ever', 'been', 'arrested?'], ['Tom', 'is', 'still', 'in', 'shock.'], ['He', 'came', 'out', 'on', 'top.'], ['I', 'am', 'not', 'a', 'doctor,', 'but', 'a', 'teacher.'], ['I', 'think', "we're", 'going', 'to', 'regret', 'this.'], ['Your', 'singing', 'puts', 'professional', 'singers', 'to', 'shame.'], ['He', 'will', 'soon', 'come', 'back.'], ['It', 'was', 'a', 'bold', 'decision.'], ['Tom', 'and', 'I', 'work', 'at', 'the', 'same', 'hospital.'], ['You', "don't", 'have', 'to', 'be', 'so', 'formal.'], ['Are', 'you', 'busy?'], ['I', 'want', 'to', 'do', 'it', 'for', 'you.'], ['Finally', 'she', 'gave', 'in', 'to', 'temptation', 'and', 'ate', 'the', 'whole', 'cake.'], ['Forget', 'your', 'sorrows.'], ['The', 'expansion', 'of', 'the', 'Roman', 'empire', 'wiped', 'out', 'a', 'great', 'number', 'of', 'the', 'original', 'European', 'languages.'], ['Why', 'are', 'you', 'insulting', 'me?'], ['You', 'are', 'no', 'longer', 'a', 'baby.'], ['You', 'were', 'always', 'very', 'kind.'], ['We', 'are', 'teachers.'], ['I', 'know', 'what', 'those', 'situations', 'are', 'like.'], ['I', 'share', 'a', 'house', 'with', 'two', 'of', 'my', 'friends.'], ["Don't", 'stay', 'in', 'the', 'sun', 'too', 'long.'], ['She', 'ate', 'her', 'dinner.'], ['It', "doesn't", 'matter', 'to', 'us', 'if', 'you', 'take', 'a', 'photo', 'from', 'the', 'outside.'], ['I', 'really', 'do', 'miss', 'my', 'parents', 'a', 'lot.'], ['I', 'want', 'to', 'hear', 'what', 'everyone', 'has', 'to', 'say.'], ['All', 'the', 'girls', 'love', 'Tom.'], ['I', 'still', 'enjoy', 'that.'], ['At', 'our', 'high', 'school,', 'French', 'is', 'an', 'elective.'], ["I'm", 'scared', 'to', 'death.'], ["Don't", 'just', 'stand', 'there.'], ['You', "can't", 'do', 'both', 'at', 'the', 'same', 'time.'], ['Stop', 'making', 'a', 'fuss.'], ['As', 'soon', 'as', 'I', 'can', 'afford', 'it,', 'I', 'plan', 'to', 'travel', 'around', 'the', 'world.'], ['Please', "don't", 'touch', 'this.'], ['The', 'post', 'office', 'is', 'closed.'], ['There', 'was', 'nothing', 'to', 'burn.'], ["What's", 'the', 'name', 'of', 'the', 'mountain', 'range?'], ['Yesterday', 'he', 'came', 'back', 'late.'], ['I', 'want', 'something', 'to', 'drink.'], ['Keep', 'an', 'eye', 'on', 'him.'], ['Tom', 'slapped', 'Mary', 'on', 'the', 'back.'], ['Tom', 'is', 'here,', 'right?'], ['You', 'know', 'the', 'drill.'], ['Hold', 'the', 'door.'], ['This', 'lesson', 'should', 'be', 'kept', 'in', 'mind.'], ['What', 'are', 'you', 'working', 'on?'], ['He', "isn't", 'back', 'yet.', 'He', 'may', 'have', 'had', 'an', 'accident.'], ['That', 'was', 'a', 'close', 'one.'], ['I', 'bet', 'you', 'know', 'French.'], ['Give', 'me', 'your', 'keys.'], ['Is', 'that', 'rule', 'applicable', 'to', 'us', 'foreigners?'], ['I', 'want', 'ice', 'cream.'], ['I', "don't", 'have', 'the', 'energy.'], ['Children', 'need', 'a', 'lot', 'of', 'sleep.'], ['I', 'just', 'want', 'to', 'talk', 'with', 'you', 'a', 'little', 'while.'], ['Certain', 'teachers', 'do', 'not', 'understand', 'this', 'problem.'], ['I', 'was', 'invited', 'to', "Tom's", 'party.'], ["You're", 'the', 'oldest.'], ["They're", 'not', 'my', 'prisoners.'], ['Is', 'the', 'plane', 'on', 'schedule?'], ["You're", 'supposed', 'to', 'help', 'your', 'friends', 'when', "they're", 'in', 'trouble.'], ['I', 'had', 'nowhere', 'else', 'to', 'go.'], ['Why', 'are', 'you', 'so', 'arrogant?'], ["I'll", 'study', 'French', 'next', 'year.'], ['I', 'need', 'some', 'hangers.'], ['Is', 'this', 'the', 'only', 'picture', 'of', 'her', 'you', 'have?'], ['It', 'looked', 'awful.'], ['Thanks', 'anyway.'], ['That', 'only', 'makes', 'the', 'problem', 'worse.'], ['You', 'have', 'to', 'take', 'off', 'your', 'shoes', 'before', 'you', 'can', 'come', 'in.'], ['I', "didn't", 'do', 'it.'], ["There's", 'a', 'cat', 'there.'], ['The', 'door', 'will', 'be', 'painted', 'tomorrow.'], ['I', 'had', 'dinner', 'with', 'a', 'friend', 'last', 'night.'], ['I', "don't", 'think', 'we', 'should', 'be', 'talking', 'to', 'each', 'other.'], ['You', 'must', 'run.'], ['I', 'brought', 'you', 'this.'], ['Our', 'house', 'faces', 'the', 'beach.'], ['I', 'need', 'paint.'], ['I', 'have', 'to', 'show', 'you', 'something.'], ['I', 'lost', 'my', 'way', 'in', 'New', 'York.'], ['Was', 'it', 'all', 'worth', 'it?'], ['I', "didn't", 'want', 'to', 'waste', 'so', 'much', 'time.'], ["We're", 'at', 'war.'], ['Buying', 'a', 'new', 'TV', "won't", 'make', 'you', 'happy.'], ['She', 'skimmed', 'through', 'the', 'register', 'to', 'see', 'if', 'her', 'name', 'was', 'in', 'it.'], ['The', 'meat', 'is', 'expensive.'], ['Where', 'can', 'I', 'buy', 'silk?'], ["I'm", 'used', 'to', 'the', 'pain', 'now.'], ['I', 'was', 'naive.'], ['Are', 'you', 'saying', 'that', 'you', "don't", 'want', 'to', 'see', 'me', 'anymore?'], ['I', 'was', 'feeling', 'blue', 'all', 'day.'], ['You', 'must', 'not', 'be', 'afraid', 'of', 'making', 'mistakes', 'when', 'learning', 'a', 'language.'], ['He', 'was', 'fully', 'clothed.'], ['Was', 'he,', 'in', 'fact,', 'guilty', 'of', 'wrongdoing?'], ['My', 'legs', 'are', 'hurting.'], ["That's", 'a', 'ridiculous', 'idea.'], ['This', 'is', 'taking', 'forever.'], ['If', 'you', 'have', 'something', 'to', 'say,', 'say', 'it', 'now', 'or', 'pipe', 'down.'], ['He', 'went', 'over', 'to', 'the', 'other', 'side.'], ['Are', 'you', 'here', 'voluntarily?'], ['We', 'still', 'have', 'more', 'than', 'halfway', 'to', 'go', 'to', 'get', 'to', 'the', 'top', 'of', 'the', 'mountain.', 'Are', 'you', 'really', 'already', 'exhausted?'], ['I', 'think', "you're", 'drunk.'], ['Try', 'to', 'be', 'more', 'punctual', 'from', 'now', 'on.'], ['I', "can't", 'move', 'my', 'legs.'], ['How', 'does', 'this', 'remote', 'work?'], ['Did', 'anybody', 'see', 'anything?'], ["I'm", 'leaving', 'tonight.'], ['She', 'is', 'helping', 'him.'], ['When', 'did', 'you', 'change', 'your', 'address?'], ['Do', 'you', 'have', 'the', 'keys?'], ['Let', 'me', 'go.'], ['I', 'know', 'just', 'what', 'you', 'need.'], ['Please', 'add', 'my', 'name', 'to', 'the', 'list.'], ['I', 'think', 'Tom', 'is', 'still', 'in', 'love', 'with', 'Mary.'], ['Everybody', 'in', 'the', 'room', 'let', 'out', 'a', 'sigh', 'of', 'relief.'], ['She', "didn't", 'feel', 'like', 'eating', 'lunch.'], ['The', 'girl', 'was', 'afraid', 'to', 'jump', 'down', 'from', 'the', 'roof.'], ['He', 'must', 'have', 'missed', 'his', 'usual', 'train.'], ['I', "can't", 'control', 'what', 'happens.'], ['He', 'took', 'us', 'to', 'the', 'zoo.'], ['He', 'is', 'the', 'president', 'of', 'the', 'company', 'in', 'fact.'], ['Thanks', 'for', 'saving', 'my', 'life.'], ['Do', 'you', 'need', 'the', 'keys?'], ['Tom', 'ran', 'at', 'full', 'speed.'], ['What', 'have', 'you', 'done', 'with', 'my', 'bag?'], ["It'll", 'take', 'me', 'at', 'least', 'three', 'hours', 'to', 'do', 'my', 'homework', 'tonight.'], ['Is', 'that', 'supposed', 'to', 'cheer', 'me', 'up?'], ['Tom', "didn't", 'have', 'time', 'to', 'finish', 'his', 'report.'], ['She', 'saw', 'him', 'break', 'the', 'window.'], ['I', 'thought', 'you', 'might', 'like', 'to', 'know', "who's", 'coming', 'over', 'for', 'dinner.'], ['School', 'violence', 'is', 'a', 'big', 'problem.'], ['Can', 'you', 'walk?'], ['What', 'makes', 'you', 'think', 'that', "I'm", 'against', 'that?'], ['Since', 'it', 'was', 'raining,', 'we', 'stayed', 'at', 'home.'], ['Call', 'me', 'if', 'anything', 'happens.'], ['I', 'really', "don't", 'know', 'where', 'to', 'start.'], ["I'll", 'try', 'to', 'contact', 'Tom.'], ['Please', "don't", 'speak', 'so', 'fast.'], ["I'm", 'three', 'years', 'older', 'than', 'my', 'brother.'], ["That's", 'not', 'something', 'I', 'want', 'to', 'do.'], ['It', 'rained', 'heavily.'], ['You', 'seem', 'to', 'have', 'thought', 'of', 'something', 'else.'], ['You', "didn't", 'warn', 'me.'], ["I'd", 'like', 'to', 'ask', 'a', 'question.'], ['The', 'house', 'is', 'vacant.'], ['I', 'knew', 'Tom', "wasn't", 'a', 'bully.'], ['How', 'is', 'the', 'weather?'], ['I', "don't", 'believe', 'a', 'word', 'you', 'say.'], ['I', "haven't", 'yet', 'met', "Tom's", 'parents.'], ['Tom', 'has', 'a', 'soft', 'spot', 'for', 'Mary.'], ["It'll", 'break.'], ['Who', 'did', 'this?'], ['The', 'police', 'told', 'the', 'demonstrators', 'that', "they'd", 'be', 'arrested', 'if', 'they', "didn't", 'move', 'immediately.'], ['How', 'thin', 'is', 'too', 'thin?'], ['That', 'would', 'be', 'a', 'really', 'good', 'idea.'], ['I', 'made', 'them', 'myself.'], ['I', 'just', 'want', 'to', 'get', 'my', 'work', 'done.'], ['She', 'introduced', 'the', 'lady', 'to', 'me.'], ['I', 'have', 'to', 'ask', 'you', 'something.'], ['We', 'have', 'to', 'do', 'something', 'to', 'help', 'Tom.'], ['You', 'must', 'be', 'a', 'good', 'cook.'], ["That's", 'what', 'I', 'got.']] BLEU score on Test set:0.33935582422126104